* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Press Start 2P', cursive;
}

body {
    background-color: #0a0a0a;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        linear-gradient(0deg, rgba(0, 255, 255, 0.05) 0%, transparent 100%);
}

.arcade-room {
    width: 100%;
    max-width: 1600px;
    padding: 2rem;
}

.neon-title {
    text-align: center;
    color: #fff;
    font-size: 3rem;
    margin-bottom: 3rem;
    text-shadow: 
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #ff00ff,
        0 0 40px #ff00ff,
        0 0 80px #ff00ff;
    animation: neon-pulse 1.5s infinite alternate;
}

.arcade-cabinets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.cabinet {
    width: 280px;
    height: 400px;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    border-radius: 10px 10px 0 0;
    padding: 20px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cabinet:hover {
    transform: scale(1.05);
}

/* Scabies cabinet - Magenta theme */
.cabinet:nth-child(1) {
    box-shadow: 
        0 0 10px rgba(255, 0, 255, 0.3),
        0 0 20px rgba(255, 0, 255, 0.3);
}
.cabinet:nth-child(1) .screen h2 {
    color: #ff00ff;
    text-shadow: 0 0 5px #ff00ff;
}
.cabinet:nth-child(1) .button {
    background: #ff00ff;
    border: 2px solid #ff66ff;
    box-shadow: 0 0 5px #ff00ff;
}

/* Droner cabinet - Cyan theme */
.cabinet:nth-child(2) {
    box-shadow: 
        0 0 10px rgba(0, 255, 255, 0.3),
        0 0 20px rgba(0, 255, 255, 0.3);
}
.cabinet:nth-child(2) .screen h2 {
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff;
}
.cabinet:nth-child(2) .button {
    background: #00ffff;
    border: 2px solid #66ffff;
    box-shadow: 0 0 5px #00ffff;
}

/* Dating Sim cabinet - Pink theme */
.cabinet:nth-child(3) {
    box-shadow: 
        0 0 10px rgba(255, 105, 180, 0.3),
        0 0 20px rgba(255, 105, 180, 0.3);
}
.cabinet:nth-child(3) .screen h2 {
    color: #ff69b4;
    text-shadow: 0 0 5px #ff69b4;
}
.cabinet:nth-child(3) .button {
    background: #ff69b4;
    border: 2px solid #ffb6c1;
    box-shadow: 0 0 5px #ff69b4;
}

/* Flappy Drone cabinet - Green theme */
.cabinet:nth-child(4) {
    box-shadow: 
        0 0 10px rgba(0, 255, 128, 0.3),
        0 0 20px rgba(0, 255, 128, 0.3);
}
.cabinet:nth-child(4) .screen h2 {
    color: #00ff80;
    text-shadow: 0 0 5px #00ff80;
}
.cabinet:nth-child(4) .button {
    background: #00ff80;
    border: 2px solid #66ffa6;
    box-shadow: 0 0 5px #00ff80;
}

/* Quiz Show cabinet - Yellow theme */
.cabinet:nth-child(5) {
    box-shadow: 
        0 0 10px rgba(255, 255, 0, 0.3),
        0 0 20px rgba(255, 255, 0, 0.3);
}
.cabinet:nth-child(5) .screen h2 {
    color: #ffff00;
    text-shadow: 0 0 5px #ffff00;
}
.cabinet:nth-child(5) .button {
    background: #ffff00;
    border: 2px solid #ffff66;
    box-shadow: 0 0 5px #ffff00;
}

.screen {
    background: #000;
    height: 200px;
    border-radius: 5px;
    padding: 10px;
    border: 2px solid #333;
    box-shadow: inset 0 0 10px rgba(0, 255, 255, 0.5);
    overflow: hidden;
}

.screen h2 {
    color: #0ff;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px #0ff;
}

.screen-content {
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.controls {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.joystick {
    width: 50px;
    height: 50px;
    background: #333;
    border-radius: 50%;
    border: 2px solid #444;
    position: relative;
}

.joystick::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #666;
    border-radius: 50%;
}

.buttons {
    display: flex;
    gap: 10px;
}

.button {
    width: 30px;
    height: 30px;
    background: #ff00ff;
    border-radius: 50%;
    border: 2px solid #ff66ff;
    box-shadow: 0 0 5px #ff00ff;
}

.game-preview {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
}

.pixelated {
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

@keyframes neon-pulse {
    from {
        text-shadow: 
            0 0 5px #fff,
            0 0 10px #fff,
            0 0 20px #ff00ff,
            0 0 40px #ff00ff,
            0 0 80px #ff00ff;
    }
    to {
        text-shadow: 
            0 0 2px #fff,
            0 0 5px #fff,
            0 0 10px #ff00ff,
            0 0 20px #ff00ff,
            0 0 40px #ff00ff;
    }
}

@media (max-width: 768px) {
    .neon-title {
        font-size: 1.5rem;
    }
    
    .cabinet {
        width: 240px;
        height: 360px;
    }
} 