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

body {
    background-color: #030303;
    font-family: 'Outfit', sans-serif;
    height: 100vh;
    height: 100dvh; /* Mobile viewport fix */
    width: 100vw;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.hologram-scene {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px; /* Crucial for 3D */
}

/* Ambient Glow behind logo */
.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(60, 0, 255, 0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    /* Animate opacity slightly */
    animation: pulse 4s infinite alternate ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.1); opacity: 0.8; }
}

.logo-container {
    position: relative;
    width: 300px; /* Base size */
    height: 300px; /* Adjust based on your logo aspect ratio */
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    z-index: 10;
}

.logo-layer {
    position: absolute;
    width: 100%;
    height: auto;
    display: block;
    top: 0;
    left: 0;
    will-change: transform, opacity;
}

/* 
   THE MAGIC:
   We use mix-blend-mode to blend the layers.
   When they overlap perfectly, they form the original image.
   When they separate, you see the RGB colors.
*/

.layer-r {
    opacity: 0.6;
    mix-blend-mode: screen;
    filter: sepia(100%) saturate(300%) hue-rotate(-50deg); /* Reddish */
}

.layer-g {
    opacity: 0.6;
    mix-blend-mode: screen;
    filter: sepia(100%) saturate(300%) hue-rotate(80deg); /* Greenish */
}

.layer-b {
    opacity: 0.6;
    mix-blend-mode: screen;
    filter: sepia(100%) saturate(300%) hue-rotate(200deg); /* Blueish */
}

.layer-white-glow {
    z-index: 4;
    opacity: 0; /* Hidden by default, animated by JS */
    mix-blend-mode: screen;
    /* Make it pure white and blurry */
    filter: brightness(10) blur(15px);
    pointer-events: none;
}

.layer-main {
    z-index: 5;
    opacity: 1;
    /* A slight brightness boost to pop against the dark bg */
    filter: brightness(1.1) drop-shadow(0 20px 50px rgba(0,0,0,0.8));
}

/* Text Overlay */
.content-overlay {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

h2 {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.9);
}

.status-pill {
    font-size: 0.8rem;
    padding: 6px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(255,255,255,0.05);
}

.social-btn {
    margin-top: 1rem;
    color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}
.social-btn:hover {
    color: #fff;
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.5));
}

@media (max-width: 600px) {
    .logo-container { 
        width: 200px; 
        height: 200px;
        left: 10px; /* Visual correction */
    }
    h2 { font-size: 1.2rem; }
    .content-overlay {
        bottom: 15%; /* Raise to avoid mobile UI cutoff */
    }
}
