:root {
    --bg-primary: #0D0D0D;
    --gold: #D4AF37;
    --gold-light: #E8C84A;
    --gold-dark: #B8941F;
    --text-primary: #F5F5F5;
    --text-secondary: #A0A0A0;
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Background & Overlay */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
    transform: scale(1.1) translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    animation: zoomOut 30s infinite alternate ease-in-out;
}

@keyframes zoomOut {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.7) 100%),
                linear-gradient(to bottom, rgba(13, 13, 13, 0.5) 0%, #0d0d0d 100%);
    z-index: -1;
}

/* Navbar */
#navbar {
    padding: 30px 0;
    z-index: 10;
}

.logo img {
    height: 60px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

#navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-social {
    display: flex;
    align-items: center;
}

.social-link {
    color: var(--gold);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-link:hover {
    transform: translateY(-3px);
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-social {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px 20px;
    border-radius: 100px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
    animation: pulse 2s infinite;
}

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

.eyebrow .text {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.gold-text {
    background: linear-gradient(135deg, #d4af37 0%, #f9e27d 45%, #d4af37 55%, #b8860b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #d4af37;
    position: relative;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 50px;
    border-left: 2px solid var(--gold);
    padding-left: 24px;
}

/* Countdown */
.countdown-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.number {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

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

.divider {
    font-size: 2rem;
    color: var(--gold);
    font-weight: 300;
    opacity: 0.5;
}

/* Button */
.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    text-decoration: none;
    padding: 20px 45px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25);
}

.btn-primary-large:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
    filter: brightness(1.1);
}

.btn-primary-large svg {
    transition: transform 0.3s ease;
}

.btn-primary-large:hover svg {
    transform: translateX(5px);
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Animations */
    will-change: transform, opacity;
    backface-visibility: hidden;
    animation: fadeInUp 0.8s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in:nth-child(1) { animation-delay: 0.2s; }
.fade-in:nth-child(2) { animation-delay: 0.4s; }
.fade-in:nth-child(3) { animation-delay: 0.6s; }
.fade-in:nth-child(4) { animation-delay: 0.8s; }
.fade-in:nth-child(5) { animation-delay: 1s; }

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

/* Responsive */
@media (max-width: 768px) {
    .container { padding: 0 24px; }
    h1 { font-size: 3rem; }
    .hero { padding: 40px 0 80px; align-items: flex-start; }
    .countdown-container { gap: 10px; margin-bottom: 40px; }
    .countdown-item { min-width: 60px; }
    .number { font-size: 2.2rem; }
    .divider { font-size: 1.5rem; }
}
