.pill {
    display: inline-block;
    background: var(--background-pill);
    border: var(--border-pill);
    color: var(--color-pill);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.game-title {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(90deg, #fbbc05, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.game-subline {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* FLEXBOX */

.game {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
    border-radius: 12px;
    gap: 1rem;
}

.game-score {
    display: flex;
    gap: 1rem;

}

.range-hint {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;

}

.game-score>.score,
.game-score>.highscore {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.game-score>.score>h3,
.game-score>.highscore>h3 {
    font-size: 1.6rem;
    display: inline-block;
    margin: 0;
    margin-top: 0.5rem
}

.game-score>.score>h4,
.game-score>.highscore>h4 {
    margin: 0;
    padding: 0;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);

}

.counter {
    font-size: 2rem;
    font-weight: 700;
    color: #fbbc05;
    margin-bottom: 0.5rem;

}

.game-score>.score,
.game-score>.highscore {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0 2rem;
    gap: 0.5rem;

}

.game-input {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

input {
    padding: 16px 20px;
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

input:focus {
    border-color: #fbbc05;
    background: rgba(251, 188, 5, 0.06);
}

#play-btn {
    padding: 16px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, #fbbc05, #ff6b35);
    color: #1a1a2e;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 6px 24px rgba(251, 188, 5, 0.3);
    margin-bottom: 12px;
}

#play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(251, 188, 5, 0.45);
}

#restart-btn {
    width: 100%;
    padding: 13px;
    border-radius: 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

button {
    border-radius: 12px;
}

button.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: scale(0.98);
}

button.active {
    opacity: 1;
    cursor: pointer;

}