* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: #000;
    color: #e8e8e8;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Subtle animated background particles */
body::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.015) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.01) 0%, transparent 50%);
    animation: drift 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 20px) scale(1.1); }
}

.container {
    text-align: center;
    z-index: 1;
    position: relative;
    animation: fadeIn 2s ease-in;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 3rem;
    opacity: 0.95;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
    animation: logoGlow 4s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 1;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
}

@keyframes logoGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
    }
    50% { 
        filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.15));
    }
}

.coming-soon {
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #c8c8c8;
    font-weight: 300;
    position: relative;
    display: block;
    padding-bottom: 1rem;
    text-align: center;
    width: 100%;
}

.coming-soon::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c8c8c8, transparent);
    animation: lineExpand 3s ease-in-out infinite;
}

@keyframes lineExpand {
    0%, 100% {
        width: 0;
        opacity: 0;
    }
    50% {
        width: 200px;
        opacity: 0.6;
    }
}

.dots {
    display: inline-block;
    margin-left: 0.5em;
}

.dots span {
    display: inline-block;
    animation: dotPulse 1.5s ease-in-out infinite;
    opacity: 0.4;
}

.dots span:nth-child(1) {
    animation-delay: 0s;
}

.dots span:nth-child(2) {
    animation-delay: 0.3s;
}

.dots span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Subtle vignette effect */
body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        max-width: 200px;
        margin-bottom: 2rem;
    }

    .coming-soon {
        font-size: 0.9rem;
        letter-spacing: 0.2em;
    }
}

