#end-game {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
}

#end-game-title {
    color: #8B0000;
    font-size: 3em;
    margin-bottom: 30px;
}

#end-game-message {
    font-size: 1.5em;
    margin-bottom: 30px;
    line-height: 1.6;
}

#victory-stats {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: left;
    display: inline-block;
}

.victory-stat {
    margin: 10px 0;
    font-size: 1.1em;
}

.end-game-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.end-game-options button {
    padding: 12px 25px;
    font-size: 1.2em;
}

#new-game-btn {
    background-color: #4a752c;
}

#new-game-btn:hover {
    background-color: #5a8a3c;
}

#back-to-main-menu {
    background-color: #555;
}

#back-to-main-menu:hover {
    background-color: #777;
}

.victory-banner {
    font-size: 2em;
    color: goldenrod;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}