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

body {
    font-family: 'Georgia', serif;
    background: #0a0a0a;
    color: #c0a080;
    overflow-x: hidden;
    line-height: 1.8;
}

/* Background elements */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at 50% 50%, #1a1410 0%, #0a0a0a 70%);
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 10% 90%, white, transparent),
        radial-gradient(1px 1px at 40% 80%, white, transparent),
        radial-gradient(2px 2px at 70% 40%, white, transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    opacity: 0.4;
    animation: twinkle 8s ease-in-out infinite;
}

.mist-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(100, 80, 120, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(80, 100, 120, 0.05) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(200, 160, 100, 0.02) 2px,
            rgba(200, 160, 100, 0.02) 4px
        );
    animation: drift 15s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.6; }
}

@keyframes drift {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(20px); }
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 60px 0;
    position: relative;
    margin-bottom: 40px;
}

.void {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background:
        radial-gradient(circle at 35% 35%, rgba(150, 120, 150, 0.2) 0%, transparent 40%),
        radial-gradient(circle, rgba(100, 80, 120, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    box-shadow:
        0 0 40px rgba(100, 80, 120, 0.2),
        inset 0 0 30px rgba(100, 80, 120, 0.15);
    position: relative;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.title {
    font-size: 4em;
    font-weight: normal;
    letter-spacing: 4px;
    color: #9d8b6a;
    text-shadow:
        0 0 20px rgba(100, 80, 120, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(100, 80, 120, 0.2);
    margin: 20px 0;
    font-style: italic;
    animation: fadeInDown 2s ease-out;
    position: relative;
}

.title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, #c49060, transparent);
    animation: expandLine 3s ease-out;
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 60px;
        opacity: 1;
    }
}

.subtitle {
    font-size: 1.3em;
    color: #8b7355;
    font-style: italic;
    letter-spacing: 2px;
    animation: fadeInUp 2.5s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Whispers section */
.whispers {
    padding: 60px 0;
    text-align: center;
}

.whisper {
    margin: 30px 0;
    font-size: 1.2em;
    color: #a89968;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    padding-bottom: 8px;
}

.whisper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.3), transparent);
    animation: slideIn 2s ease-out forwards;
}

.fade-in-slow {
    animation: fadeInSlow 3s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInSlow {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

.shimmer {
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        color: #d4af37;
    }
    50% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
        color: #e8c547;
    }
}

/* Depths section */
.depths {
    padding: 60px 0;
    text-align: center;
}

.depth-text {
    font-size: 1.1em;
    color: #9d8b6a;
    line-height: 2;
    position: relative;
}

.depth-text::before {
    content: '';
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at 50% 50%, rgba(100, 80, 120, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

.depth-text p {
    margin: 15px 0;
    opacity: 0;
    animation: fadeInSlow 2s ease-out forwards;
}

.depth-text p:nth-child(1) { animation-delay: 0.5s; }
.depth-text p:nth-child(2) { animation-delay: 1.5s; }
.depth-text p:nth-child(3) { animation-delay: 2.5s; }
.depth-text p:nth-child(4) { animation-delay: 3.5s; }

.glow {
    color: #c49060;
    text-shadow:
        0 0 15px rgba(196, 144, 96, 0.6),
        0 0 30px rgba(196, 144, 96, 0.3),
        0 0 45px rgba(100, 80, 120, 0.2),
        inset 0 0 10px rgba(255, 255, 255, 0.1);
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        text-shadow:
            0 0 15px rgba(196, 144, 96, 0.6),
            0 0 30px rgba(196, 144, 96, 0.3),
            0 0 45px rgba(100, 80, 120, 0.2);
    }
    50% {
        text-shadow:
            0 0 25px rgba(196, 144, 96, 0.9),
            0 0 45px rgba(196, 144, 96, 0.5),
            0 0 65px rgba(100, 80, 120, 0.3);
    }
}

/* Veil section */
.veil {
    padding: 60px 0;
    text-align: center;
}

.whisper-soft {
    font-size: 1.1em;
    color: #7a6b55;
    font-style: italic;
    letter-spacing: 1px;
    animation: fadeInSlow 4s ease-out;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(157, 139, 106, 0.2);
    margin-top: 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, #9d8b6a, transparent);
}

.footer p {
    font-size: 0.95em;
    color: #6b5d4f;
    letter-spacing: 2px;
    text-transform: lowercase;
    animation: fadeInSlow 5s ease-out;
}

/* Responsive */
@media (max-width: 600px) {
    .title {
        font-size: 2.5em;
        letter-spacing: 2px;
    }

    .subtitle {
        font-size: 1em;
    }

    .whisper {
        font-size: 1em;
    }

    .depth-text {
        font-size: 1em;
    }

    .container {
        padding: 20px 15px;
    }

    .hero {
        padding: 40px 0;
    }
}
