:root {
    --bg-color: #050505;
    --text-color: #E5E4E2;
    --gold: #C5A059;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}

* {
    /* box-sizing: border-box; */ /* Moved to :root */
    /* margin: 0; */ /* Moved to :root */
    /* padding: 0; */ /* Moved to :root */
}

img {
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: auto; /* Prevent drag, allow right click to be handled by JS/inline */
}

/* Helper to force protection if needed */
.protected-asset {
    pointer-events: none;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

/* CANVAS VISIBILITY BOOST */
#bg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.8;
    /* High opacity requested */
}

.content-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 90%;
    max-width: 1000px;
    padding: 2rem;
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- MAIN LOGO --- */
.main-logo {
    width: 380px;
    max-width: 90%;
    height: auto;
    margin-bottom: 2.5rem;
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.08));
}

h1 {
    font-size: 1.5rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 300;
    color: #fff;
}

.subtext {
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.2em;
    margin-bottom: 3.5rem;
    font-size: 0.9rem;
}

.status-badge {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    margin-bottom: 5rem;
    /* More spacing */
    background: rgba(197, 160, 89, 0.1);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.1);
}

/* --- PARTNER LOGOS (HUGE & BRIGHT) --- */
.partners-title {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.partner-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 5rem;
}

.partner-img {
    height: 80px;
    /* REQUESTED SIZE */
    width: auto;
    object-fit: contain;
    opacity: 1;
    /* No transparency */
    filter: grayscale(100%) brightness(1.3);
    /* Boost visibility on dark bg */
    transition: all 0.3s ease;
}

.partner-img:hover {
    filter: grayscale(0%) brightness(1.1);
    transform: scale(1.05);
}

/* FORCE WHITE FOR MONRIVE */
.white-force {
    filter: brightness(0) invert(1) opacity(0.4) !important; /* 0.4 makes it look like the other grey logos */
    transition: all 0.4s ease;
}

/* HOVER STATE: White and Bright */
.white-force:hover,
.partner-logo:hover.white-force,
.p-logo:hover.white-force {
    filter: brightness(0) invert(1) opacity(1) !important; /* Full visibility */
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.8)); /* Optional: Add a subtle glow */
}

/* --- FOOTER --- */
footer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.design-link {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.design-link:hover {
    color: var(--text-color);
    border-bottom: 1px solid var(--gold);
}

@media (max-width: 600px) {
    .main-logo {
        width: 280px;
    }

    .partner-grid {
        gap: 2.5rem;
    }

    .partner-img {
        height: 60px;
    }

    /* Slightly smaller on mobile but still large */
    h1 {
        font-size: 1.1rem;
        letter-spacing: 0.3em;
    }
}