/* Optional, contextual guidance. Colors follow the current theme. */
.guide-offer,
.game-guide {
    min-width: 0;
    border: 1px solid var(--line);
    border-left: 3px solid var(--gold);
    border-radius: 12px;
    background: var(--card);
    color: var(--ink);
    padding: 14px 16px;
    text-align: left;
    overflow-wrap: anywhere;
}

.guide-offer {
    width: 100%;
    max-width: 540px;
    justify-self: center;
}

.game-guide {
    margin-bottom: 14px;
}

.guide-offer strong,
.game-guide > strong {
    display: block;
    font-size: 15px;
    line-height: 1.4;
}

.landing-screen .guide-offer p,
.game-guide p {
    margin: 6px 0 10px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--ink);
}

.game-guide-heading,
.guide-offer-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px 14px;
}

.game-guide-heading { margin-bottom: 8px; }
.game-guide-heading small { color: var(--ink); font-size: 12px; }

.guide-start,
.guide-next,
.guide-skip {
    min-height: 36px;
    border: 0;
    border-radius: 6px;
    font: inherit;
    font-size: 12px;
    cursor: pointer;
    padding: 7px 9px;
}

.guide-start,
.guide-next {
    background: var(--next-year-background);
    color: #fff;
    font-weight: 700;
}

.guide-start:hover,
.guide-next:hover { background: var(--next-year-hover); }

.guide-skip { color: var(--ink); background: transparent; text-decoration: underline; }
.guide-restart { justify-self: center; background: transparent; border: 0; cursor: pointer; }

@media (max-width: 600px) {
    .guide-offer,
    .game-guide { padding: 12px; }
    .game-guide-heading { align-items: start; }
}
