:root {
    --bg-black: #000000;
    --brand-gold: #FFC000;
    /* Vivid Yellow-Gold from the image */
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --font-heading: 'Montserrat', sans-serif;
}

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

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-heading);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
    filter: brightness(0.4);
    /* Darken bg so text pops */
}

/* Vignette overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.95) 100%);
    z-index: -1;
}

.coming-soon-container {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

h1.logo {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.text-white {
    color: var(--text-white);
}

.text-gold {
    color: var(--brand-gold);
}

.subtitle {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--brand-gold);
    /* Matching the image style */
    text-transform: uppercase;
    margin-bottom: 3rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
}

h2 {
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-gray);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 2rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

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

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

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

@media (max-width: 768px) {
    h1.logo {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.5rem;
    }
}