/* Simon Says */

.simon-container {
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.simon-pad {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    width: 280px;
    height: 280px;
}

.simon-btn {
    border: 4px outset #808080;
    cursor: pointer;
    transition: opacity 0.1s;
}

.simon-btn:active, .simon-btn.lit {
    border: 4px inset #606060;
}

.simon-green {
    background: #00aa00;
    border-radius: 12px 0 0 0;
}

.simon-green.lit {
    background: #00ff00;
    box-shadow: 0 0 30px #00ff00;
}

.simon-red {
    background: #aa0000;
    border-radius: 0 12px 0 0;
}

.simon-red.lit {
    background: #ff0000;
    box-shadow: 0 0 30px #ff0000;
}

.simon-yellow {
    background: #aaaa00;
    border-radius: 0 0 0 12px;
}

.simon-yellow.lit {
    background: #ffff00;
    box-shadow: 0 0 30px #ffff00;
}

.simon-blue {
    background: #0000aa;
    border-radius: 0 0 12px 0;
}

.simon-blue.lit {
    background: #0000ff;
    box-shadow: 0 0 30px #0000ff;
}

.simon-message {
    margin-top: 16px;
    font-size: 18px;
    font-weight: bold;
    color: #0000ff !important;
    min-height: 24px;
}

.simon-btn:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}

.game-score {
    font-family: "Impact", "Arial Black", sans-serif;
    font-size: 18px;
    color: #0000ff !important;
}
