/* CYBER PUNK CELEBRITY EFFECTS */

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--holographic);
    background-size: 400% 400%;
    border-radius: 6px;
    animation: holographicShift 3s ease-in-out infinite;
}

::-webkit-scrollbar-thumb:hover {
    box-shadow: var(--glow-pink);
}

/* Selection Styling */
::selection {
    background: var(--neon-pink);
    color: #000000;
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* Cursor Trail Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--neon-pink) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Glitch Effect for Headers */
@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

.hero-title:hover {
    animation: holographicShift 3s ease-in-out infinite, glitch 0.3s ease-in-out;
}

/* Scan Lines */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 0, 128, 0.03) 2px,
        rgba(255, 0, 128, 0.03) 4px
    );
    pointer-events: none;
    animation: scanLines 2s linear infinite;
    z-index: 10;
}

@keyframes scanLines {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

/* Holographic Noise */
@keyframes noise {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.1; }
}

.image-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><filter id="noise"><feTurbulence baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/><feColorMatrix values="0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0"/></filter></defs><rect width="100" height="100" filter="url(%23noise)" opacity="0.1"/></svg>');
    pointer-events: none;
    animation: noise 0.2s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-card:hover::after {
    opacity: 1;
}

/* Data Stream Background */
@keyframes dataStream {
    0% { transform: translateY(-100%); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

.hero-bg::after {
    content: '01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101';
    position: absolute;
    left: 10%;
    top: -100%;
    color: var(--neon-cyan);
    font-family: 'Courier New', monospace;
    font-size: 12px;
    opacity: 0.3;
    line-height: 2;
    word-break: break-all;
    animation: dataStream 15s linear infinite;
    pointer-events: none;
}

/* Cyber Grid */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 0, 128, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -100;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Neon Glow Text */
.brand-collective {
    color: var(--neon-cyan);
    text-shadow: 
        0 0 5px var(--neon-cyan),
        0 0 10px var(--neon-cyan),
        0 0 15px var(--neon-cyan);
    animation: neonFlicker 2s ease-in-out infinite alternate;
}

@keyframes neonFlicker {
    0%, 100% { 
        text-shadow: 
            0 0 5px var(--neon-cyan),
            0 0 10px var(--neon-cyan),
            0 0 15px var(--neon-cyan);
    }
    50% { 
        text-shadow: 
            0 0 2px var(--neon-cyan),
            0 0 5px var(--neon-cyan),
            0 0 8px var(--neon-cyan);
    }
}

/* Terminal Cursor */
.hero-description::after {
    content: '█';
    color: var(--neon-pink);
    animation: blink 1s linear infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}