:root {
    --bg-color: #ffffff;
    --text-primary: #000000;
    --text-secondary: #666666;
    --accent-color: #d4af37;
    /* Metallic Gold */
    --accent-hover: #b3922d;
    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

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

.background-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

/* Background Effect (Subtle glow) */
body::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: transparent;
    /* Removed gradient to match white video background */
    pointer-events: none;
    z-index: -1;
}

.container {
    text-align: center;
    padding: 2rem;
    z-index: 1;
    opacity: 0;
    /* JS will animate this in */
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container.visible {
    opacity: 1;
    transform: translateY(0);
}

.brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 0.5rem;
    background: linear-gradient(45deg, #000, #333333);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.3rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 300;
}

.divider {
    height: 2px;
    width: 60px;
    background: var(--accent-color);
    margin: 0 auto 2rem;
    border-radius: 1px;
}

.content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.status {
    font-family: 'Montserrat', sans-serif;
    font-size: 10rem;
    font-weight: 900;
    color: #012F50;
    letter-spacing: 0.4rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 2;
}

.social-links {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
    margin-top: 15rem;
}

.social-btn {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1rem;
    letter-spacing: 0.05rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.social-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

.social-btn i {
    font-size: 1.2rem;
}

.footer {
    font-family: 'Montserrat', sans-serif;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 10;
}

.site-link {
    color: var(--text-secondary);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.site-link:hover {
    opacity: 1;
    color: var(--text-primary);
}

/* Responsiveness */
@media (max-width: 768px) {
    .logo-video {
        width: 300px;
    }

    .status {
        font-size: 5rem;
        letter-spacing: 0.2rem;
    }
    
    .logo-video {
        margin-top: -4rem;
    }
}

.logo-video {
    width: 500px;
    height: auto;
    margin-bottom: 1rem;
    margin-top: -8rem;
    border-radius: 10px;
    mix-blend-mode: multiply;
    position: relative;
    z-index: 3;
}