:root {
    /* Monochromatic Background */
    --bg-dark: #000000;
    --bg-light: #333333;
    /* Neon Pink */
    --neon-pink: #ff00ff; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    min-height: 100vh;
    /* B&W Linear Gradient */
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: 'Archivo Black', sans-serif;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.25; /* Slightly higher for more grit on the B&W */
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-text {
    font-size: clamp(2rem, 9vw, 8.5rem); 
    font-weight: 900;
    color: var(--neon-pink);
    line-height: 0.85;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    white-space: nowrap; 
    display: block;
    text-align: center;
    
    /* Neon Glow Effect */
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.7), 
                 0 0 20px rgba(255, 0, 255, 0.3);
    
    position: relative;
    z-index: 2;
    will-change: transform;
}

/* Updated Glitch for Neon Pink */
.glitch-active {
    animation: glitch-skew 0.2s infinite linear;
    /* Cyan and White "ghosting" looks best with Pink neon */
    text-shadow: 
        3px 0 #00ffff, 
        -3px 0 #ffffff;
    filter: brightness(1.8) contrast(1.5);
}

@keyframes glitch-skew {
    0% { transform: translate(0); }
    20% { transform: translate(-4px, 2px) skew(3deg); }
    40% { transform: translate(4px, -2px) skew(-3deg); }
    60% { transform: translate(-1px, 3px) skew(1deg); }
    80% { transform: translate(1px, -3px) skew(-1deg); }
    100% { transform: translate(0); }
}