/* Gaming style for authentication UI */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

.gaming-btn {
    font-family: 'Press Start 2P', cursive;
    background: #cc181e;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(204, 24, 30, 0.7);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-shadow: 0 0 5px #fff;
}

.gaming-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(204, 24, 30, 0.9), 0 0 30px rgba(0, 255, 255, 0.9);
}

.gaming-modal {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border: 2px solid #cc181e;
    border-radius: 12px;
}