:root {
    --gold-primary: #D4AF37;
    --gold-secondary: #FFD700;
    --gold-gradient: linear-gradient(45deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    --black-matte: #0a0a0a;
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
}

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

body {
    background-color: var(--black-matte);
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero {
    position: relative;
    width: 100%;
    height: 100%;
    background: url('bg.png') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, var(--black-matte) 100%);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    animation: fadeInScale 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.coming-soon {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 700;
    letter-spacing: 0.5rem;
    margin-bottom: 1rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.divider {
    width: 100px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 1.5rem auto;
    border-radius: 2px;
    animation: extend 1.5s ease-out forwards 0.5s;
    transform: scaleX(0);
}

.tagline {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 300;
    letter-spacing: 0.2rem;
    color: var(--text-muted);
    text-transform: uppercase;
    animation: fadeIn 2s ease-out forwards 1s;
    opacity: 0;
}

.footer {
    position: absolute;
    bottom: 3rem;
    left: 0;
    width: 100%;
    z-index: 2;
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    color: var(--text-muted);
    animation: fadeInUp 1.5s ease-out forwards 1.5s;
    opacity: 0;
}

.brand {
    color: var(--gold-primary);
    font-weight: 600;
    text-transform: uppercase;
}

/* Animations */
@keyframes shine {
    to {
        background-position: 200% center;
    }
}

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

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

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

@keyframes extend {
    to {
        transform: scaleX(1);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .coming-soon {
        letter-spacing: 0.2rem;
    }
    .footer {
        bottom: 2rem;
        padding: 0 1rem;
    }
}
