:root {
    --bg-dark: #050505;
    --bg-card: rgba(20, 20, 20, 0.6);
    --gold: #D4AF37;
    --gold-light: #F9D976;
    --gold-dark: #AA8F24;
    --silver: #C0C0C0;
    --silver-light: #E5E4E2;
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-mid: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-secondary);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Loader */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.5s ease;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.1);
    border-top: 3px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 5%;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) saturate(0.8);
    z-index: -2;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-dark) 100%),
                linear-gradient(to top, var(--bg-dark) 0%, transparent 50%);
    z-index: -1;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.main-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.header-status {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 100px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.status-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-block {
    max-width: 800px;
    margin-bottom: 4rem;
}

.sub-title {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 600;
}

.main-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.gold-text {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
}

.countdown-badge {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border: 1px solid var(--gold);
    padding: 1rem 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold-light);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-mid);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-card.glass {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.gold-glow {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.silver-glow {
    background: rgba(192, 192, 192, 0.1);
    color: var(--silver);
    border: 1px solid rgba(192, 192, 192, 0.3);
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.2);
}

.info-content h3 {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 0.3rem;
}

.info-content p, .info-content a {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    line-height: 1.5;
}

.info-content a:hover {
    color: var(--gold-light);
}

/* Footer */
.footer {
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer p {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Animations */
@keyframes pulse {
    0% { opacity: 0.6; box-shadow: 0 0 0 rgba(212, 175, 55, 0.4); }
    50% { opacity: 1; box-shadow: 0 0 15px rgba(212, 175, 55, 0.8); }
    100% { opacity: 0.6; box-shadow: 0 0 0 rgba(212, 175, 55, 0.4); }
}

.fade-in {
    animation: fadeIn 1s forwards; opacity: 0;
}

.fade-up {
    animation: fadeUp 1s forwards; opacity: 0;
}

.fade-up-delay-1 { animation: fadeUp 1s 0.2s forwards; opacity: 0; }
.fade-up-delay-2 { animation: fadeUp 1s 0.4s forwards; opacity: 0; }
.fade-up-delay-3 { animation: fadeUp 1s 0.6s forwards; opacity: 0; }
.fade-up-delay-4 { animation: fadeUp 1s 0.8s forwards; opacity: 0; }

@keyframes fadeIn {
    to { opacity: 1; }
}

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

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .hero {
        padding: 2rem 8%;
    }

    .main-title {
        font-size: 2.8rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}
