/* Revise / Skip on the end-of-game revision offer. Both buttons are injected
 * by offerRevision() in js/gamedata.js, so this is their only stylesheet —
 * hand-written with no src/scss source, loaded on every modern game page via
 * head.php's $default_css (same arrangement as game-info.css). */
.revision-offer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 180px;
    padding: 8px 30px;
    border: none;
    border-radius: 12px;
    background-color: #ffd849;
    color: #733381;
    font-family: inherit;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.4;
    box-shadow: 4px 4px 0 #733381;
    cursor: pointer;
}

.revision-offer-btn .fas {
    font-size: 0.9em;
}

.revision-offer-btn:hover,
.revision-offer-btn:focus-visible {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #733381;
}

/* The offer line sits over two very different backdrops — the arcade modal's
 * dark translucent overlay and the spelling-zone modal's green card — so it
 * carries its own pill for contrast on both. */
.revision-offer-text {
    width: fit-content;
    margin: 0 auto 14px;
    padding: 6px 20px;
    border-radius: 999px;
    background-color: #fff;
    color: #733381;
    font-weight: bold;
    text-align: center;
}
