/* Neon Text */
.neon-text {
    text-shadow:
        0 0 5px #fff,
        0 0 10px #ff00ff,
        0 0 20px #ff00ff,
        0 0 40px #ff00ff;
}

/* Game Cards */
.game-card {
    background: linear-gradient(135deg, #ff0080, #7928ca);
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 0 25px rgba(255,255,255,0.6);
    animation: flicker 2s infinite;
}

.game-card h2 {
    font-size: 1.8rem;
    font-weight: bold;
}

.game-card button {
    margin-top: 1rem;
    background: #00ffcc;
    color: black;
    padding: 0.7rem 2rem;
    border-radius: 999px;
    font-weight: bold;
    transition: transform 0.2s;
}

.game-card button:hover {
    transform: scale(1.1);
}

/* Blink Effekt */
@keyframes flicker {
    0%, 100% { box-shadow: 0 0 20px #fff; }
    50% { box-shadow: 0 0 40px #00ffff; }
}
