/* Basic styling for the game container */
#zeus-game-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Ensure the canvas is responsive within its container */
#game-canvas {
    display: block;
    width: 100%;
    border-radius: 0.5rem;
    border: 2px solid #4a5568;
}

/* --- Winner Announcement Styling --- */
#winner-announcement {
    animation: fadeInZoom 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    padding: 2rem;
}

#winner-announcement > div {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background-color: rgba(17, 24, 39, 0.9);
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    border: 1px solid #4a5568;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.winner-name {
    font-size: 4rem;
    font-weight: bold;
    background: -webkit-linear-gradient(45deg, #ffd700, #fff7ad, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
    line-height: 1.1;
}

.winner-subtitle {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    color: #e2e8f0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* --- Shared Button Styles --- */
#start-game-btn, #reset-game-btn, .restart-btn {
    margin: 1rem 0;
    padding: 0.75rem 1.5rem;
    background-color: #f6e05e;
    color: #1a202c;
    font-weight: bold;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 223, 77, 0.3);
    font-size: 1rem;
}

#start-game-btn:disabled {
    background-color: #a0aec0;
    cursor: not-allowed;
    box-shadow: none;
}

#start-game-btn:hover:not(:disabled), #reset-game-btn:hover, .restart-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 223, 77, 0.5);
}

@keyframes fadeInZoom {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
