/* Runner Minimaliste */

.game-container {
    position: relative;
    margin: 16px 0;
    background: #1a1a2e;
    border: 2px inset #808080;
    overflow: hidden;
}

#gameCanvas {
    display: block;
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0 auto;
}

.game-score {
    font-family: "Impact", "Arial Black", sans-serif;
    font-size: 18px;
    color: #ffff00 !important;
    text-shadow: 2px 2px 2px #000;
}

.game-over {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    border: 3px outset #ff0000;
    padding: 24px;
    text-align: center;
    color: #ffffff !important;
}

.game-over h2 {
    color: #ff0000 !important;
    margin-bottom: 12px;
}

.game-over p {
    color: #ffff00 !important;
    margin: 8px 0;
}

.game-best {
    opacity: 0.9;
    font-size: 14px;
}
