/* Game Result Styles */
.victory-title {
    color: #4AF !important;
    text-shadow: 0 0 10px rgba(64, 170, 255, 0.5);
    font-size: 2.2rem !important;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10px !important;
}

.defeat-title {
    color: #F44 !important;
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
    font-size: 2.2rem !important;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10px !important;
}

.draw-title {
    color: #FC4 !important;
    text-shadow: 0 0 10px rgba(255, 204, 68, 0.5);
    font-size: 2rem !important;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10px !important;
}

/* Game over menu styling */
.menu-content {
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

/* New Game button styling */
#new-game-btn {
    background-color: #FF7A00 !important;
    color: white !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    border: 2px solid #FF9A30 !important;
    box-shadow: 0 4px 8px rgba(255, 122, 0, 0.3) !important;
    transition: all 0.2s ease !important;
}

#new-game-btn:hover {
    background-color: #FF9500 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 12px rgba(255, 122, 0, 0.4) !important;
}

/* Stars container styling */
#health-bars-container {
    width: 100%;
    margin: 5px 0 20px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Star rating animation */
@keyframes star-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.star-container {
    position: relative;
    animation: star-pulse 1.5s infinite ease-in-out;
}

.star-fill {
    animation: star-pulse 1.5s infinite ease-in-out;
}

/* Delay animation for each star */
.star-container:nth-child(1) {
    animation-delay: 0s;
}

.star-container:nth-child(2) {
    animation-delay: 0.3s;
}

.star-container:nth-child(3) {
    animation-delay: 0.6s;
} 