* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #1a0033 0%, #000 70%);
    font-family: 'Press Start 2P', cursive;
    color: #fff;
    overflow: hidden;
}

/* Effetto scanline */
.scanlines {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255,255,255,0.03) 0px,
        rgba(255,255,255,0.03) 2px,
        transparent 2px,
        transparent 4px
    );
    pointer-events: none;
}

.menu-container {
    text-align: center;
    z-index: 2;
}

.title {
    font-size: 3rem;
    margin-bottom: 60px;
    color: #00ffff;
    text-shadow:
        0 0 10px #00ffff,
        0 0 20px #00ffff,
        0 0 40px #0088ff;
    animation: flicker 2s infinite alternate;
}

/* Pulsanti arcade */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.arcade-btn {
    padding: 18px 40px;
    font-size: 0.9rem;
    background: #111;
    border: 3px solid #00ffff;
    color: #00ffff;
    cursor: pointer;
    transition: 0.2s;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow:
        0 0 10px #00ffff,
        inset 0 0 10px #00ffff;
}

.arcade-btn:hover {
    background: #00ffff;
    color: #000;
    box-shadow:
        0 0 20px #00ffff,
        0 0 40px #00ffff,
        inset 0 0 20px #00ffff;
    transform: scale(1.05);
}
.brand {
    font-size: 18px;
    letter-spacing: 6px;
    margin-bottom: 20px;
    color: #ffffff;
    opacity: 0.7;
}


.arcade-btn:active {
    transform: scale(0.95);
}

/* Animazione flicker titolo */
@keyframes flicker {
    0% { opacity: 1; }
    50% { opacity: 0.85; }
    100% { opacity: 1; }
}
.rules-container {
    text-align: center;
    padding: 40px;
    color: white;
}

