/* Base styles */
body {
    margin: 0;
    overflow: hidden;
}

/* Star background animation */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, rgba(33, 33, 33, 0.9), #000);
}

.stars::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(white 1px, transparent 1px),
        radial-gradient(white 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    animation: twinkle 8s linear infinite;
}

@keyframes twinkle {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* Game buttons */
.game-button {
    background-color: #4CAF50;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.game-button:hover {
    background-color: #45a049;
    transform: scale(1.05);
}

/* Game pads */
.game-pad {
    aspect-ratio: 1;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.game-pad.active {
    filter: brightness(1.5);
    transform: scale(0.95);
}

.game-pad:hover {
    filter: brightness(1.2);
}

/* Add these styles to the existing CSS */
#pauseButton {
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

#pauseButton:hover {
    transform: scale(1.1);
}

#confirmNo {
    background-color: #6B7280;
}

#confirmNo:hover {
    background-color: #4B5563;
} 