/* Arcade Game Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    overflow: hidden;
}

.screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-container {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    max-width: 90%;
}

.menu-container h1 {
    margin-bottom: 20px;
    color: #ffcc00;
    font-size: 36px;
}

.menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-button {
    padding: 15px 30px;
    font-size: 18px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.menu-button:hover {
    background-color: #555;
}

#gameContainer {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 600px;
    max-height: 800px;
    background-color: #000;
    overflow: hidden;
}

#gameCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
}

.touch-area {
    position: absolute;
    bottom: 0;
    width: 50%;
    height: 50%;
    z-index: 10;
    opacity: 0.1;
}

#leftTouchArea {
    left: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
}

#rightTouchArea {
    right: 0;
    background: linear-gradient(225deg, rgba(255,255,255,0.2), transparent);
}

.game-button {
    position: absolute;
    z-index: 20;
    padding: 8px 16px;
    font-size: 14px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: 1px solid #555;
    border-radius: 5px;
    cursor: pointer;
}

#pauseButton {
    top: 10px;
    right: 10px;
}

#menuButton {
    top: 10px;
    left: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .menu-container h1 {
        font-size: 28px;
    }
    
    .menu-button {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    #gameContainer {
        max-width: 100%;
        max-height: 100%;
    }
}

@media (max-width: 480px) {
    .menu-container h1 {
        font-size: 24px;
    }
    
    .menu-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Notification */
#notification {
    padding: 15px 30px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
} 