.container {
    max-width: 900px;
    padding: 20px;
}

h1 {
    margin-bottom: 10px;
}

.scoreboard {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 12px auto 18px;
    font-size: 1.25rem;
}

#status {
    margin: 0 auto 24px;
    max-width: 720px;
    font-size: 1rem;
    color: #222;
    background: rgba(255, 255, 255, 0.85);
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.instructions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 0 auto 20px;
    max-width: 720px;
}

.instruction {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-weight: 600;
}

.instruction.hit {
    color: #2a6f2d;
}

.instruction.avoid {
    color: #8b1f1f;
}

.instruction-img {
    width: 24px;
    height: auto;
}

.hole.bad img {
    width: 45%;
    height: auto;
}

.game-board {
    display: grid;
    grid-template-columns: repeat(3, minmax(90px, 1fr));
    gap: 16px;
    margin: 0 auto 26px;
    width: min(460px, 100%);
}

.hole {
    appearance: none;
    border: 4px solid #3b220f;
    border-radius: 50%;
    background: #6c4a2d;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: transparent;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.2s ease;
}

.hole:hover {
    transform: translateY(-2px);
}

.hole.mole {
    background: #f4c26b;
    color: #1b130a;
}

.hole.bad {
    background: #d64545;
    border-color: #7b1f1f;
}

.hole.bad img {
    width: 60%;
    height: auto;
}

.controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.controls button {
    min-width: 130px;
}
