:root {
    --bg-color: #121212;
    --text-color: #F5F5F5;
    --accent-color: #D4AF37;
    /* Gold */
    --secondary-text: #A0A0A0;
    --card-bg: #1E1E1E;
    --font-heading: 'Bodoni Moda', serif;
    --font-body: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    margin: 0;
}

/* --- Typography --- */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -1px;
}

.big-font {
    font-size: 5rem;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.medium-font {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.text-uppercase-spaced {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    color: var(--secondary-text);
}

/* --- Layout --- */
.main-container {
    max-width: 100%;
    padding: 0;
}

.section-padding {
    padding: 6rem 2rem;
    position: relative;
}

/* --- Hero Section --- */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
}

.hero-image-container {
    width: 300px;
    height: 400px;
    overflow: hidden;
    margin: 2rem auto;
    position: relative;
    border: 1px solid var(--accent-color);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(120%);
    transition: transform 10s ease;
}

.hero-section:hover .hero-image {
    transform: scale(1.1);
}

/* --- Animations --- */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

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

/* --- Buttons --- */
.btn-modern {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-color);
    padding: 15px 40px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--text-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-modern:hover {
    color: var(--bg-color);
    text-decoration: none;
}

.btn-modern:hover::before {
    width: 100%;
}

/* --- Countdown --- */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    font-size: 4rem;
    font-family: var(--font-heading);
    line-height: 1;
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-text);
    margin-top: 0.5rem;
}

/* --- Cards (Minimal) --- */
.modern-card {
    background: var(--card-bg);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.modern-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

/* --- Music Button --- */
.music-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.btn-music-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    border: none;
    color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .big-font {
        font-size: 3.5rem;
    }

    .countdown-container {
        gap: 1.5rem;
    }

    .countdown-number {
        font-size: 2.5rem;
    }

    .hero-image-container {
        width: 80%;
        height: 350px;
    }
}

/* --- Modern Timeline --- */
.modern-timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.modern-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
}

.timeline-event {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.time {
    width: 45%;
    text-align: right;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-color);
}

.details {
    width: 45%;
    text-align: left;
}

.marker {
    width: 12px;
    height: 12px;
    background: var(--bg-color);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

@media (max-width: 768px) {
    .modern-timeline::before {
        left: 20px;
    }

    .marker {
        left: 20px;
    }

    .time {
        width: auto;
        position: absolute;
        left: 40px;
        top: -25px;
        font-size: 1.2rem;
    }

    .details {
        width: 100%;
        padding-left: 50px;
    }

    .timeline-event {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 4rem;
    }
}