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

body {
    background: #0a0a0a;
    color: #c4c4c4;
    font-family: 'Cormorant Garamond', serif;
    overflow: hidden;
    position: relative;
    width: 100vw;
    height: 100vh;
}

/* Subtle film grain texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,.02) 2px, rgba(255,255,255,.02) 4px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
    animation: grain 8s steps(10) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 15%); }
    80% { transform: translate(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
}

/* Vignette effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
    z-index: 2;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.logo-container {
    position: relative;
    width: 420px;
    height: 420px;
    margin-bottom: 4rem;
    animation: fadeIn 2.5s ease-out;
}

/* Glow layers behind the owl */
.glow-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
}

.glow-layer-1 {
    background: radial-gradient(circle, rgba(138, 101, 168, 0.25) 0%, transparent 70%);
    filter: blur(20px);
}

.glow-layer-2 {
    background: radial-gradient(circle, rgba(108, 82, 136, 0.20) 0%, transparent 70%);
    filter: blur(30px);
}

.glow-layer-3 {
    background: radial-gradient(circle, rgba(88, 66, 112, 0.15) 0%, transparent 70%);
    filter: blur(40px);
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #8a8a8a;
    text-align: center;
    opacity: 0;
    animation: fadeInText 2s ease-out 1s forwards;
    margin-bottom: 0.5rem;
}

.secondary-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: #6a6a6a;
    text-align: center;
    opacity: 0;
    animation: fadeInText 2s ease-out 1.8s forwards;
    font-style: italic;
}

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

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

footer {
    position: fixed;
    bottom: 2rem;
    width: 100%;
    text-align: center;
    z-index: 3;
    opacity: 0;
    animation: fadeInText 2s ease-out 2.5s forwards;
}

.footer-content {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: #4a4a4a;
    text-transform: uppercase;
}

.symbol {
    display: block;
    margin: 1.5rem auto 0;
    font-size: 0.5rem;
    color: #3a3a3a;
    letter-spacing: 0.5em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-container {
        width: 280px;
        height: 280px;
        margin-bottom: 3rem;
    }

    .tagline {
        font-size: 0.75rem;
        letter-spacing: 0.25em;
        padding: 0 1rem;
    }

    .secondary-text {
        font-size: 0.95rem;
        padding: 0 2rem;
    }

    footer {
        bottom: 1.5rem;
    }

    .footer-content {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .logo-container {
        width: 220px;
        height: 220px;
    }

    .tagline {
        font-size: 0.65rem;
        letter-spacing: 0.2em;
    }

    .secondary-text {
        font-size: 0.85rem;
    }
}