:root {
    --bg-color: #050505;
    --neon-pink: #ff0055;
    --neon-cyan: #00f2ff;
    --text-color: #e0e0e0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    overflow-x: hidden;
}

/* Scanline Effect */
.scanline {
    width: 100%;
    height: 100px;
    z-index: 9999;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.1;
    position: fixed;
    bottom: 100%;
    animation: scanline 6s linear infinite;
    pointer-events: none;
}

@keyframes scanline {
    0% { bottom: 100%; }
    100% { bottom: -100%; }
}

header {
    padding: 2rem;
    border-bottom: 2px solid var(--neon-pink);
    text-align: center;
}

.glitch {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    text-shadow: 2px 2px var(--neon-cyan);
}

.section-title {
    color: var(--neon-cyan);
    margin: 2rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 2rem;
}

.card {
    height: 300px;
    border: 1px solid var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    cursor: crosshair;
}

.card:hover {
    background: var(--neon-pink);
    color: black;
    box-shadow: 0 0 20px var(--neon-pink);
    transform: skewX(-5deg);
}

.online {
    color: #39ff14;
    text-shadow: 0 0 5px #39ff14;
}