:root {
    --bg-color: #000000;
    --primary-accent: #D89A6A;
    --text-white: #FFFFFF;
    --font-main: 'Montserrat', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: var(--font-main);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh; /* Use dynamic viewport height to account for mobile address bars */
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Glow effects removed for pure black background */

.container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    /* Visually balance the logo's weight against the text below it */
    transform: translateY(-3%); 
}

/* Logo Section */
#logo-container {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#logo {
    width: 700px; /* Much bigger size */
    max-width: 100%;
    height: auto;
    object-fit: contain;
    /* Playing raw footage - no border radius, no initial opacity/transform */
}

/* Tagline */
.tagline {
    font-size: 18px;
    letter-spacing: 4px;
    font-weight: 500;
    color: var(--primary-accent); /* Make it pop using the copper color, or white as they prefer? Previous prompt said color: White */
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: 30px;
    text-align: center;
}

.tagline span {
    opacity: 0; /* hidden for framer-motion word-by-word */
    display: inline-block;
}

/* Coming Soon Text */
.coming-soon {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 6px;
    text-align: center;
    margin-bottom: 16px;
    
    /* Shiny text effect */
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 40%,
        var(--primary-accent) 50%,
        rgba(255, 255, 255, 1) 60%,
        rgba(255, 255, 255, 1) 100%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 3s linear infinite;
    
    /* Initially hidden for framer-motion */
    opacity: 0;
}

/* Subtext */
.subtext {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
    max-width: 500px;
    text-align: center;
    line-height: 1.6;
    
    /* Initially hidden for framer-motion */
    opacity: 0;
}

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

/* Responsive */
@media (max-width: 768px) {
    #logo-container {
        margin-bottom: 20px; /* Reduce space between video and tagline on mobile */
    }

    #logo {
        width: 100%; /* Full width on mobile */
        max-height: 40vh; /* Prevent it from taking too much vertical space if it has a tall aspect ratio */
    }
    
    .tagline {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 16px; /* Tighter spacing */
    }
    
    .coming-soon {
        font-size: 30px; /* slightly smaller to fit better */
        letter-spacing: 3px;
        margin-bottom: 12px;
    }
    
    .subtext {
        font-size: 14px;
        padding: 0 10px;
        margin-top: 10px;
    }
}
