:root {
    --guest-blue: #1757e8;
    --guest-blue-dark: #0e3188;
    --guest-violet: #6c43dd;
    --guest-green: #18a35b;
    --guest-green-dark: #0b753d;
    --guest-ink: #14203e;
    --guest-muted: #66728d;
    --guest-soft: #f2f6ff;
    --guest-line: #dbe4f4;
    --guest-warm: #ff8a1f;
}

.guest-page {
    min-height: 100vh;
    overflow: hidden;
    background: #f6f8fc;
}

.guest-page__hero {
    position: relative;
    padding: clamp(34px, 6vw, 72px) 0 56px;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 12%, rgba(63, 105, 255, .20), transparent 28%),
        radial-gradient(circle at 92% 18%, rgba(113, 61, 220, .18), transparent 32%),
        linear-gradient(180deg, #eef4ff 0%, #f8faff 55%, #f6f8fc 100%);
}

.guest-page__hero > .app-shell {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(520px, 1.22fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
}

.guest-page__intro > span {
    display: block;
    margin-bottom: 12px;
    color: #2652b7;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .13em;
}

.guest-page__intro h1 {
    max-width: 720px;
    margin: 0;
    color: #101b38;
    font-size: clamp(40px, 5.5vw, 76px);
    line-height: .98;
    letter-spacing: -.055em;
}

.guest-page__intro p {
    max-width: 620px;
    margin: 22px 0 0;
    color: #4e5d7d;
    font-size: clamp(16px, 1.7vw, 20px);
    line-height: 1.55;
}

.guest-page__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 24px;
}

.guest-page__facts span {
    padding: 8px 11px;
    border: 1px solid rgba(37, 81, 183, .15);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    color: #29416e;
    font-size: 11px;
    font-weight: 800;
}

.guest-page__after {
    padding: 0 0 64px;
}

.guest-page__after > .app-shell {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.guest-page__after article {
    padding: 22px;
    border: 1px solid #e0e7f3;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(28, 45, 88, .06);
}

.guest-page__after b,
.guest-page__after span {
    display: block;
}

.guest-page__after b {
    color: #172858;
    font-size: 15px;
}

.guest-page__after span {
    margin-top: 7px;
    color: #66728d;
    font-size: 13px;
    line-height: 1.5;
}

.guest-play {
    position: relative;
    isolation: isolate;
    width: 100%;
    max-width: 760px;
    margin-inline: auto;
    padding: clamp(18px, 3vw, 30px);
    border: 1px solid rgba(156, 177, 226, .46);
    border-radius: clamp(24px, 3vw, 34px);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 32px 90px rgba(30, 58, 128, .18);
    color: var(--guest-ink);
}

.guest-play--compact {
    max-width: 680px;
    padding: 20px;
    border-radius: 26px;
    box-shadow: 0 22px 55px rgba(30, 58, 128, .13);
}

.guest-play__ambient {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    border-radius: inherit;
    pointer-events: none;
}

.guest-play__ambient i {
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
    opacity: .42;
}

.guest-play__ambient i:nth-child(1) { width: 180px; height: 180px; right: -95px; top: -85px; background: #c4d3ff; }
.guest-play__ambient i:nth-child(2) { width: 110px; height: 110px; left: -70px; bottom: 10%; background: #d7c8ff; }
.guest-play__ambient i:nth-child(3) { width: 52px; height: 52px; right: 18%; bottom: -28px; background: #bcebd0; }

.guest-play__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: start;
    padding-bottom: 18px;
    border-bottom: 1px solid #e5eaf4;
}

.guest-play__eyebrow {
    display: block;
    margin-bottom: 7px;
    color: #2751b0;
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .11em;
}

.guest-play__head h2 {
    margin: 0;
    color: #111d3a;
    font-size: clamp(24px, 3.4vw, 36px);
    line-height: 1.04;
    letter-spacing: -.035em;
}

.guest-play__head p {
    max-width: 560px;
    margin: 9px 0 0;
    color: var(--guest-muted);
    font-size: 13px;
    line-height: 1.5;
}

.guest-play__trust {
    display: grid;
    gap: 5px;
}

.guest-play__trust span {
    padding: 5px 8px;
    border-radius: 999px;
    background: #edf3ff;
    color: #3156aa;
    font-size: 8px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.guest-play__progress {
    display: grid;
    gap: 9px;
    margin: 17px 0;
    padding: 12px 14px;
    border: 1px solid #dce6f7;
    border-radius: 16px;
    background: linear-gradient(180deg, #fbfdff 0%, #f2f6ff 100%);
}

.guest-play__progress-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.guest-play__progress-head span {
    color: #1e315e;
    font-size: 12px;
    font-weight: 800;
}

.guest-play__progress-head span b {
    color: var(--guest-blue);
    font-size: 15px;
}

.guest-play__progress-head small {
    color: #687896;
    font-size: 9px;
    font-weight: 750;
    text-align: right;
}

.guest-play__progress progress {
    width: 100%;
    height: 9px;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
    background: #dbe4f5;
}

.guest-play__progress progress::-webkit-progress-bar {
    border-radius: inherit;
    background: #dbe4f5;
}

.guest-play__progress progress::-webkit-progress-value {
    border-radius: inherit;
    background: linear-gradient(90deg, var(--guest-blue), #7652ef 65%, var(--guest-green));
}

.guest-play__progress progress::-moz-progress-bar {
    border-radius: inherit;
    background: linear-gradient(90deg, var(--guest-blue), #7652ef 65%, var(--guest-green));
}

.guest-play__milestones {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.guest-play__milestones span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #7b88a2;
}

.guest-play__milestones b {
    width: 23px;
    height: 23px;
    display: grid;
    place-items: center;
    border: 1px solid #ccd9ef;
    border-radius: 50%;
    background: #fff;
    color: #536483;
    font-size: 9px;
}

.guest-play__milestones small {
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.guest-play__milestones span.is-reached {
    color: var(--guest-green-dark);
}

.guest-play__milestones span.is-reached b {
    border-color: var(--guest-green);
    background: var(--guest-green);
    color: #fff;
}

.guest-play__milestones span.is-current b {
    box-shadow: 0 0 0 5px rgba(23, 133, 82, .09);
}

.guest-play__feedback {
    margin-bottom: 13px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #eaf8f1;
    color: #17653e;
    font-size: 12px;
    font-weight: 750;
}

.guest-play__feedback.is-error { background: #fff0f2; color: #a22a40; }

.guest-play__choose,
.guest-play__mission,
.guest-play__saved,
.guest-play__claim,
.guest-play__limit {
    animation: guestRise .35s ease both;
}

@keyframes guestRise { from { opacity: 0; transform: translateY(9px); } to { opacity: 1; transform: none; } }

.guest-play__choose-copy {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 17px;
}

.guest-play__number {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #173f9d;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
}

.guest-play__choose-copy small,
.guest-play__question > small,
.guest-play__place small,
.guest-play__saved header small,
.guest-play__claim small,
.guest-play__limit small {
    display: block;
    color: #66769a;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.guest-play__choose-copy h3,
.guest-play__question h3,
.guest-play__saved h3,
.guest-play__claim h3,
.guest-play__limit h3 {
    margin: 3px 0 0;
    color: #15234a;
    line-height: 1.1;
}

.guest-play__choose-copy h3 { font-size: 20px; }
.guest-play__choose-copy p { margin: 7px 0 0; color: var(--guest-muted); font-size: 12px; line-height: 1.45; }

.guest-play label > span:first-child {
    display: block;
    margin-bottom: 7px;
    color: #31405f;
    font-size: 11px;
    font-weight: 850;
}

.guest-play select,
.guest-play textarea {
    width: 100%;
    border: 1px solid #d6dfef;
    border-radius: 15px;
    background: #fff;
    color: #17213e;
    outline: 0;
    font: inherit;
}

.guest-play select {
    min-height: 50px;
    padding: 0 14px;
}

.guest-play textarea {
    min-height: 82px;
    padding: 13px 14px;
    resize: vertical;
    font-size: 16px;
    line-height: 1.4;
}

.guest-play select:focus,
.guest-play textarea:focus {
    border-color: var(--guest-blue);
    box-shadow: 0 0 0 4px rgba(23, 87, 232, .10);
}

.guest-play__choose-actions,
.guest-play__actions,
.guest-play__claim-actions {
    display: grid;
    gap: 10px;
}

.guest-play__choose-actions,
.guest-play__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 12px;
}

.guest-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 15px;
    padding: 10px 13px;
    font: inherit;
    font-size: 12px;
    font-weight: 850;
    line-height: 1.2;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.guest-button:hover,
.guest-button:focus-visible { transform: translateY(-1px); filter: brightness(1.03); }
.guest-button:disabled { opacity: .55; cursor: wait; transform: none; }

.guest-button svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.guest-button span { display: block; }
.guest-button span b,
.guest-button span small { display: block; }
.guest-button span small { margin-top: 2px; font-size: 9px; font-weight: 700; opacity: .85; }

.guest-button--location { justify-content: flex-start; background: #edf3ff; color: #234ca7; }
.guest-button--primary { background: var(--guest-blue); color: #fff; box-shadow: 0 10px 22px rgba(23, 87, 232, .24); }
.guest-button--save { background: var(--guest-green); color: #fff; box-shadow: 0 11px 22px rgba(24, 163, 91, .23); }
.guest-button--skip { background: #fff1e6; color: #a64c08; }
.guest-button--claim { background: linear-gradient(135deg, #1a61ee, #7345df); color: #fff !important; box-shadow: 0 12px 25px rgba(61, 75, 196, .25); }

.guest-play__place {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 11px;
    align-items: center;
    margin-bottom: 13px;
    padding: 10px 12px;
    border: 1px solid #dce5f5;
    border-radius: 17px;
    background: #f8faff;
}

.guest-play__crest {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 15px;
    background: #fff;
    color: #2452ad;
    box-shadow: 0 7px 18px rgba(32, 62, 131, .10);
}

.guest-play__crest img { width: 100%; height: 100%; padding: 5px; object-fit: contain; }
.guest-play__place strong { display: block; margin-top: 2px; color: #172858; font-size: 16px; }
.guest-play__counter { display: grid; justify-items: center; color: #3156aa; }
.guest-play__counter b { font-size: 18px; line-height: 1; }
.guest-play__counter small { margin-top: 3px; font-size: 8px; }

.guest-play__question {
    padding: 18px;
    border-radius: 21px;
    background:
        radial-gradient(circle at 92% 15%, rgba(255,255,255,.2), transparent 24%),
        linear-gradient(135deg, #154ecf 0%, #5536c6 100%);
    color: #fff;
    text-align: center;
    box-shadow: 0 18px 36px rgba(38, 63, 159, .22);
}

.guest-play__question > small { color: rgba(255,255,255,.76); }
.guest-play__question h3 { margin-top: 8px; color: #fff; font-size: clamp(30px, 6vw, 48px); letter-spacing: -.045em; overflow-wrap: anywhere; }
.guest-play__question p { margin: 7px 0 0; color: rgba(255,255,255,.76); font-size: 10px; }

.guest-play__mission form { margin-top: 14px; }
.guest-play__audio-row { margin-top: 11px; }
.guest-button--audio {
    width: 100%;
    justify-content: flex-start;
    min-height: 60px;
    background: #1859df;
    color: #fff;
    box-shadow: 0 12px 24px rgba(24, 89, 223, .22);
}
.guest-button--audio > span { flex: 1; text-align: left; }
.guest-button--audio em { font-style: normal; }

.guest-play__license {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 9px;
    align-items: start;
    margin-top: 11px;
    padding: 10px 11px;
    border-radius: 13px;
    background: #f7f8fb;
    color: #68748d;
    font-size: 9px;
    line-height: 1.45;
}
.guest-play__license input { margin-top: 2px; }
.guest-play__license span { margin: 0 !important; font-size: inherit !important; font-weight: 650 !important; }
.guest-play__honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.guest-play__saved {
    margin-top: 16px;
    padding: 15px;
    border: 1px solid #dfe7f4;
    border-radius: 19px;
    background: #fbfcff;
}

.guest-play__saved header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.guest-play__saved header > span {
    padding: 5px 8px;
    border-radius: 999px;
    background: #fff3d9;
    color: #976000;
    font-size: 9px;
    font-weight: 900;
}

.guest-play__saved h3 { font-size: 17px; }
.guest-play__saved-list { display: grid; gap: 7px; margin-top: 12px; }
.guest-play__saved-list article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
    padding: 10px 11px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(30, 50, 100, .05);
}
.guest-play__saved-list span { color: #71809d; font-size: 11px; }
.guest-play__saved-list b { color: #1c2f60; font-size: 12px; text-align: right; overflow-wrap: anywhere; }

.guest-play__impact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 16px;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #d8e0ef;
}
.guest-play__impact > span { color: #596987; font-size: 11px; line-height: 1.45; }
.guest-play__impact > div { display: flex; align-items: center; gap: 8px; }
.guest-play__impact strong { color: #1f4fba; font-size: 22px; }
.guest-play__impact i { color: #8b97ae; font-style: normal; }
.guest-play__impact small { grid-column: 1 / -1; color: #8a95aa; font-size: 8px; text-transform: uppercase; }

.guest-play__claim {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    margin-top: 15px;
    padding: 16px;
    border: 1px solid #cbd9f6;
    border-radius: 20px;
    background: linear-gradient(135deg, #f6f9ff 0%, #f4f0ff 100%);
}

.guest-play__claim.is-strong {
    border-color: #89a9f3;
    background: linear-gradient(135deg, #edf4ff 0%, #eee8ff 100%);
    box-shadow: 0 16px 35px rgba(62, 76, 179, .14);
}

.guest-play__claim-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #173f9d;
    color: #fff;
    font-size: 18px;
}

.guest-play__claim h3 { font-size: 19px; }
.guest-play__claim p { margin: 7px 0 0; color: #5d6b89; font-size: 11px; line-height: 1.5; }
.guest-play__claim-actions { grid-column: 1 / -1; }
.guest-play__claim-actions > a:not(.guest-button),
.guest-play__claim-actions > button {
    border: 0;
    background: transparent;
    color: #3155aa;
    font-size: 10px;
    font-weight: 850;
    text-align: center;
    text-decoration: none;
}

.guest-play__limit {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin-top: 14px;
    padding: 15px;
    border-radius: 19px;
    background: #142d71;
    color: #fff;
}
.guest-play__limit > span { width: 58px; height: 58px; display: grid; place-items: center; border: 2px solid rgba(255,255,255,.35); border-radius: 50%; font-weight: 900; }
.guest-play__limit small { color: rgba(255,255,255,.68); }
.guest-play__limit h3 { color: #fff; font-size: 18px; }
.guest-play__limit p { margin: 5px 0 0; color: rgba(255,255,255,.76); font-size: 10px; line-height: 1.4; }

.guest-play__success,
.guest-play__modal {
    position: fixed;
    inset: 0;
    z-index: 2600;
    display: grid;
    place-items: center;
    padding: 18px;
    background: rgba(8, 17, 45, .78);
    backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity .2s ease;
}
.guest-play__success.is-open,
.guest-play__modal.is-open { opacity: 1; }

.guest-play__success-card,
.guest-play__modal-card {
    position: relative;
    width: min(100%, 440px);
    padding: 28px 24px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(0,0,0,.35);
    text-align: center;
    transform: translateY(12px) scale(.96);
    transition: transform .23s ease;
}
.guest-play__success.is-open .guest-play__success-card,
.guest-play__modal.is-open .guest-play__modal-card { transform: none; }

.guest-play__success-mark,
.guest-play__modal-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin: 0 auto 12px;
    border-radius: 21px;
    background: linear-gradient(135deg, #1e63ef, #7046df);
    color: #fff;
    font-size: 28px;
    box-shadow: 0 14px 26px rgba(54, 78, 195, .25);
}
.guest-play__success-card > small,
.guest-play__modal-card > small { color: #3760bd; font-size: 9px; font-weight: 950; letter-spacing: .1em; }
.guest-play__success-card h3,
.guest-play__modal-card h3 { margin: 7px 0 0; color: #14234a; font-size: 27px; line-height: 1.08; }
.guest-play__success-card p,
.guest-play__modal-card p { margin: 11px 0 17px; color: #65718b; font-size: 12px; line-height: 1.55; }
.guest-play__success-count { display: flex; justify-content: center; align-items: center; gap: 13px; margin-bottom: 18px; }
.guest-play__success-count b,
.guest-play__success-count strong { font-size: 34px; }
.guest-play__success-count b { color: #8793a9; }
.guest-play__success-count strong { color: var(--guest-green); }
.guest-play__success-count i { color: #8390a8; font-style: normal; font-size: 20px; }
.guest-play__success-card > button:not(.guest-button),
.guest-play__modal-card > button:not(.guest-button),
.guest-play__modal-card > a:not(.guest-button) { display: block; width: 100%; margin-top: 10px; border: 0; background: transparent; color: #3156aa; font-size: 10px; font-weight: 850; text-decoration: none; }

.guest-play__modal-back { position: absolute; inset: 0; border: 0; background: transparent; }
.guest-play__modal-card { z-index: 1; }

.guest-play__confetti { position: absolute; inset: 50% auto auto 50%; pointer-events: none; }
.guest-play__confetti i {
    position: absolute;
    width: 8px;
    height: 15px;
    border-radius: 3px;
    background: #ffd347;
    animation: guestConfetti 1.15s cubic-bezier(.18,.7,.24,1) both;
    animation-delay: var(--d);
}
.guest-play__confetti i:nth-child(4n+2) { background: #28c978; }
.guest-play__confetti i:nth-child(4n+3) { background: #3f7cff; }
.guest-play__confetti i:nth-child(4n+4) { background: #a855f7; }
@keyframes guestConfetti { from { transform: translate(0,0) rotate(0); opacity: 1; } to { transform: translate(var(--x), var(--y)) rotate(var(--r)); opacity: 0; } }

.guest-play.is-busy { cursor: progress; }
.guest-play [hidden] { display: none !important; }

@media (max-width: 1050px) {
    .guest-page__hero > .app-shell { grid-template-columns: 1fr; }
    .guest-page__intro { max-width: 780px; text-align: center; margin: 0 auto; }
    .guest-page__intro p { margin-inline: auto; }
    .guest-page__facts { justify-content: center; }
}

@media (max-width: 720px) {
    .guest-page__hero { padding: 24px 0 38px; }
    .guest-page__intro h1 { font-size: clamp(35px, 12vw, 52px); }
    .guest-page__intro p { margin-top: 15px; font-size: 15px; }
    .guest-page__after > .app-shell { grid-template-columns: 1fr; }
    .guest-play { padding: 16px; border-radius: 23px; }
    .guest-play__head { grid-template-columns: 1fr; gap: 10px; }
    .guest-play__trust { grid-template-columns: repeat(3, auto); justify-content: start; }
    .guest-play__choose-actions,
    .guest-play__actions { grid-template-columns: 1fr 1fr; gap: 9px; }
    .guest-play__question { padding: 16px 12px; }
    .guest-play__question h3 { font-size: clamp(30px, 11vw, 42px); }
    .guest-play__impact { grid-template-columns: 1fr; }
    .guest-play__impact > div { justify-content: flex-start; }
}

@media (max-width: 420px) {
    .guest-play { padding: 13px; border-radius: 20px; }
    .guest-play__head h2 { font-size: 23px; }
    .guest-play__head p { font-size: 11px; }
    .guest-play__progress { margin: 13px 0; padding: 11px 12px; }
    .guest-play__progress-head { align-items: flex-start; }
    .guest-play__choose-copy { gap: 10px; }
    .guest-play__choose-actions,
    .guest-play__actions { grid-template-columns: 1fr; }
    .guest-button { min-height: 48px; }
    .guest-play__place { grid-template-columns: 44px minmax(0,1fr) auto; padding: 9px; }
    .guest-play__crest { width: 42px; height: 42px; border-radius: 13px; }
    .guest-play textarea { min-height: 68px; }
    .guest-play__saved-list article { grid-template-columns: 1fr; }
    .guest-play__saved-list b { text-align: left; }
    .guest-play__claim { grid-template-columns: 38px minmax(0,1fr); padding: 13px; }
    .guest-play__claim-icon { width: 36px; height: 36px; border-radius: 12px; }
}

@media (max-height: 720px) and (max-width: 720px) {
    .guest-page__hero { padding-top: 14px; }
    .guest-page__intro h1 { font-size: 34px; }
    .guest-page__intro p { margin-top: 10px; }
    .guest-page__facts { margin-top: 14px; }
    .guest-play { padding: 12px 14px; }
    .guest-play__head { padding-bottom: 11px; }
    .guest-play__head p { margin-top: 5px; }
    .guest-play__progress { margin: 10px 0; padding: 10px 11px; }
    .guest-play__progress-head { display: grid; gap: 3px; }
    .guest-play__progress-head small { text-align: left; }
    .guest-play__milestones small { font-size: 7px; }
    .guest-play__question { padding: 12px; }
    .guest-play__question h3 { margin-top: 4px; }
    .guest-play textarea { min-height: 62px; }
    .guest-button--audio { min-height: 52px; }
    .guest-play__license { padding: 7px 9px; }
}

.home-guest-entry {
    position: relative;
    padding: clamp(38px, 6vw, 72px) 0;
    background:
        radial-gradient(circle at 14% 20%, rgba(46, 92, 224, .12), transparent 28%),
        linear-gradient(180deg, #f7f9fe 0%, #eef3fc 100%);
}
.home-guest-entry > .app-shell {
    display: grid;
    grid-template-columns: minmax(260px, .65fr) minmax(520px, 1.35fr);
    gap: clamp(24px, 5vw, 62px);
    align-items: center;
}
.home-guest-entry__intro > span {
    display: block;
    color: #2c57b5;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .12em;
}
.home-guest-entry__intro h2 {
    margin: 10px 0 0;
    color: #111d3a;
    font-size: clamp(32px, 4.5vw, 58px);
    line-height: 1.02;
    letter-spacing: -.045em;
}
.home-guest-entry__intro p {
    margin: 17px 0 0;
    color: #5a6884;
    font-size: 15px;
    line-height: 1.55;
}
@media (max-width: 1000px) {
    .home-guest-entry > .app-shell { grid-template-columns: 1fr; }
    .home-guest-entry__intro { max-width: 720px; text-align: center; margin: 0 auto; }
}

/* Sessione ospite scaduta: resta leggibile, ma non promette una rivendicazione non più disponibile. */
.guest-play__limit.is-expired {
    border-color: #d8deeb;
    background: #f4f6fa;
    color: #34415d;
}
.guest-play__limit.is-expired > span {
    background: #65718a;
    color: #fff;
}
.guest-play__limit.is-expired small,
.guest-play__limit.is-expired p {
    color: #66728b;
}

/* V3 — esperienza ospite essenziale e accesso separato */
.guest-page {
    min-height: 100vh;
    background: #f4f7fc;
}

.guest-page__hero {
    padding: clamp(18px, 4vw, 42px) 0 48px;
    background:
        radial-gradient(circle at 12% 8%, rgba(52, 96, 225, .13), transparent 28%),
        linear-gradient(180deg, #eef4ff 0%, #f7f9fd 58%, #f4f7fc 100%);
}

.guest-page__shell {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px !important;
    align-items: start !important;
}

.guest-page__intro {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.guest-page__intro > span {
    margin: 0;
    color: #2751b0;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
}

.guest-page__intro h1 {
    max-width: none;
    margin: 7px 0 0;
    font-size: clamp(31px, 5vw, 52px);
    line-height: 1.02;
}

.guest-page__intro p {
    margin: 9px 0 0;
    font-size: 15px;
}

.guest-play {
    max-width: 680px;
    padding: clamp(14px, 2.5vw, 22px);
    border-radius: 26px;
    box-shadow: 0 24px 70px rgba(30, 58, 128, .15);
}

.guest-play__head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
}

.guest-play__head h2 {
    font-size: clamp(21px, 3vw, 29px);
}

.guest-play__compact-count {
    min-width: 52px;
    padding: 8px 10px;
    border-radius: 999px;
    background: #edf3ff;
    color: #244da8;
    font-size: 11px;
    font-weight: 850;
    text-align: center;
}

.guest-play__progress {
    gap: 6px;
    margin: 12px 0 14px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.guest-play__progress progress {
    height: 8px;
}

.guest-play__progress > small {
    color: #697895;
    font-size: 9px;
    font-weight: 750;
    text-align: right;
}

.guest-play__choose h3 {
    margin: 0 0 12px;
    color: #15234a;
    font-size: 20px;
}

.guest-play__field,
.guest-play__answer,
.guest-play__mission form {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
}

.guest-play__answer textarea,
.guest-play textarea[name="variante_locale"] {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
}

.guest-play__choose-actions,
.guest-play__actions {
    gap: 10px;
}

.guest-play__place {
    margin-bottom: 10px;
    padding: 8px 10px;
}

.guest-play__question {
    padding: 15px 12px;
    border-radius: 18px;
}

.guest-play__question h3 {
    margin-top: 5px;
    font-size: clamp(29px, 7vw, 44px);
}

.guest-play__mission form {
    margin-top: 12px;
}

.guest-play__audio-row {
    margin-top: 10px;
}

.guest-button--audio {
    width: 100%;
    min-height: 56px;
}

.guest-play__license {
    margin-top: 9px;
    padding: 8px 10px;
    font-size: 9px;
}

.guest-play__saved {
    margin-top: 13px;
    padding: 0;
    border: 1px solid #dfe7f4;
    border-radius: 16px;
    background: #fbfcff;
    overflow: hidden;
}

.guest-play__saved summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 9px;
    align-items: center;
    padding: 11px 12px;
    color: #20345f;
    cursor: pointer;
    list-style: none;
}

.guest-play__saved summary::-webkit-details-marker {
    display: none;
}

.guest-play__saved summary span {
    font-size: 12px;
    font-weight: 850;
}

.guest-play__saved summary b {
    min-width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #e8efff;
    color: #2451b3;
    font-size: 10px;
}

.guest-play__saved summary small {
    color: #7a879f;
    font-size: 9px;
    font-weight: 750;
}

.guest-play__saved-list,
.guest-play__impact {
    margin-inline: 12px;
}

.guest-play__saved-list {
    margin-top: 0;
    padding-top: 3px;
}

.guest-play__impact {
    margin-bottom: 12px;
}

.guest-play__claim {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    margin-top: 13px;
    padding: 13px;
    border-radius: 17px;
}

.guest-play__claim h3 {
    font-size: 17px;
}

.guest-play__claim p {
    margin-top: 5px;
    font-size: 10px;
}

.guest-play__claim-actions {
    grid-column: auto;
    gap: 8px;
}

.guest-play__success-card,
.guest-play__modal-card {
    padding: 23px 20px;
    border-radius: 24px;
}

.guest-play__success-card h3,
.guest-play__modal-card h3 {
    font-size: 24px;
}

.guest-play__success-card p,
.guest-play__modal-card p {
    margin: 9px 0 14px;
}

.auth-login-panel--direct {
    max-width: 560px;
    margin: 0 auto;
}

.auth-foot--register {
    margin-top: 18px;
    text-align: center;
}

@media (max-width: 720px) {
    .guest-page__hero {
        padding: 14px 0 32px;
    }

    .guest-page__intro p {
        font-size: 13px;
    }

    .guest-play {
        padding: 13px;
        border-radius: 21px;
    }

    .guest-play__head {
        padding-bottom: 10px;
    }

    .guest-play__choose-actions,
    .guest-play__actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 390px) {
    .guest-page__intro h1 {
        font-size: 29px;
    }

    .guest-play__choose-actions,
    .guest-play__actions {
        gap: 7px;
    }

    .guest-button {
        min-height: 46px;
        padding-inline: 9px;
        font-size: 11px;
    }

    .guest-button svg {
        width: 18px;
        height: 18px;
        flex-basis: 18px;
    }
}

/* V4 — mappa territoriale e gerarchia azioni ospite */
.guest-play__map-stage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(150px, .72fr) minmax(0, 1.28fr);
    min-height: 150px;
    margin: 12px 0 15px;
    overflow: hidden;
    border: 1px solid #d9e5f7;
    border-radius: 20px;
    background: #f3f7fd;
}

.guest-play__map {
    min-height: 150px;
    background: #edf3fb;
}

.guest-play__map .leaflet-container,
.guest-play__success-map.leaflet-container {
    background: #edf3fb;
}

.guest-play__map .leaflet-pane,
.guest-play__success-map .leaflet-pane {
    z-index: 1;
}

.guest-play__map-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 16px 18px;
    background: linear-gradient(90deg, rgba(243,247,253,.92), #fff 30%);
}

.guest-play__map-copy span,
.guest-play__map-copy strong,
.guest-play__map-copy small {
    display: block;
}

.guest-play__map-copy span {
    color: #2360c9;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .09em;
}

.guest-play__map-copy strong {
    margin-top: 4px;
    color: #13244b;
    font-size: 20px;
    line-height: 1.08;
}

.guest-play__map-copy small {
    margin-top: 7px;
    color: #62718f;
    font-size: 11px;
    line-height: 1.45;
}

.guest-play__map-stage.is-saving {
    border-color: #54c77f;
    box-shadow: 0 0 0 5px rgba(31, 181, 93, .10), 0 16px 38px rgba(23, 123, 70, .14);
    animation: guestMapStagePulse 1.35s ease both;
}

.leaflet-interactive.is-selected {
    filter: drop-shadow(0 0 5px rgba(20, 165, 82, .55));
}

.leaflet-interactive.is-saving {
    animation: guestGeoPulse .72s ease-in-out 3;
}

@keyframes guestGeoPulse {
    0%, 100% { fill-opacity: .92; stroke-opacity: 1; }
    50% { fill-opacity: .35; stroke-opacity: .55; }
}

@keyframes guestMapStagePulse {
    0% { background: #f3f7fd; }
    35% { background: #e8fff1; }
    100% { background: #f3f7fd; }
}

.guest-map-unavailable .guest-play__map-stage {
    grid-template-columns: 1fr;
    min-height: 0;
}

.guest-map-unavailable .guest-play__map {
    display: none;
}

.guest-play__license {
    margin: 8px 0 10px !important;
}

.guest-play__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.guest-play__actions .guest-button {
    width: 100%;
    min-height: 54px;
    justify-content: center;
}

.guest-button--save {
    background: #119653 !important;
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(17, 150, 83, .22);
}

.guest-button--save:hover,
.guest-button--save:focus-visible {
    background: #087b41 !important;
    color: #fff !important;
}

.guest-button--audio {
    margin-top: 10px;
}

.guest-play__success-map {
    width: 100%;
    height: 126px;
    margin: 12px 0 8px;
    overflow: hidden;
    border: 1px solid #d7e6dc;
    border-radius: 17px;
    background: #edf8f1;
}

@media (max-width: 720px) {
    .guest-play__map-stage {
        grid-template-columns: 42% minmax(0, 58%);
        min-height: 126px;
        margin: 10px 0 12px;
        border-radius: 17px;
    }

    .guest-play__map {
        min-height: 126px;
    }

    .guest-play__map-copy {
        padding: 12px 11px;
    }

    .guest-play__map-copy strong {
        font-size: 16px;
    }

    .guest-play__map-copy small {
        margin-top: 5px;
        font-size: 9px;
        line-height: 1.35;
    }

    .guest-play__actions .guest-button {
        min-height: 50px;
        padding: 9px 8px;
        font-size: 10px;
    }

    .guest-play__success-map {
        height: 108px;
    }
}

@media (max-width: 360px) {
    .guest-play__map-stage {
        grid-template-columns: 39% minmax(0, 61%);
        min-height: 112px;
    }

    .guest-play__map {
        min-height: 112px;
    }

    .guest-play__map-copy span {
        font-size: 7px;
    }

    .guest-play__map-copy strong {
        font-size: 14px;
    }

    .guest-play__actions {
        gap: 7px;
    }

    .guest-play__actions .guest-button svg {
        width: 16px;
        height: 16px;
        flex-basis: 16px;
    }
}


/* V5 — distinzione netta tra accesso e nuova registrazione */
.guest-play__member-access {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 11px;
    align-items: center;
    margin-bottom: 14px;
    padding: 11px 12px;
    border: 1px solid #c9d8f4;
    border-radius: 16px;
    background: #f3f7ff;
}

.guest-play__member-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: #173f9d;
    color: #fff;
    font-size: 14px;
    font-weight: 950;
}

.guest-play__member-access small,
.guest-play__member-access strong,
.guest-play__member-access p {
    display: block;
}

.guest-play__member-access small {
    color: #3158aa;
    font-size: 8px;
    font-weight: 950;
    letter-spacing: .08em;
}

.guest-play__member-access strong {
    margin-top: 1px;
    color: #152653;
    font-size: 13px;
}

.guest-play__member-access p {
    margin: 2px 0 0;
    color: #60708e;
    font-size: 10px;
    line-height: 1.35;
}

.guest-play__member-access > a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 12px;
    background: #173f9d;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
}

.guest-button--member {
    border: 2px solid #173f9d;
    background: #fff;
    color: #173f9d;
}

.guest-play__claim-actions .guest-button--member,
.guest-play__claim-actions .guest-button--claim {
    width: 100%;
}

.guest-play__success-card .guest-button--member,
.guest-play__modal-card .guest-button--member {
    width: 100%;
    margin-bottom: 8px;
}

@media (max-width: 620px) {
    .guest-play__member-access {
        grid-template-columns: 32px minmax(0, 1fr);
    }

    .guest-play__member-access > a {
        grid-column: 1 / -1;
        width: 100%;
    }
}


/* V6 — Comune persistente e home con una sola esperienza territoriale */
.leaflet-interactive.is-locked {
    filter: drop-shadow(0 0 6px rgba(14, 174, 83, .72));
    animation: guestGeoAlive 2.6s ease-in-out infinite;
}

@keyframes guestGeoAlive {
    0%, 100% { fill-opacity: .92; stroke-opacity: 1; filter: drop-shadow(0 0 4px rgba(14, 174, 83, .48)); }
    50% { fill-opacity: 1; stroke-opacity: 1; filter: drop-shadow(0 0 11px rgba(14, 174, 83, .82)); }
}

.home-guest-entry {
    isolation: isolate;
    overflow: hidden;
    padding: clamp(54px, 7vw, 96px) 0;
    background:
        radial-gradient(circle at 10% 16%, rgba(75, 126, 255, .22), transparent 28%),
        radial-gradient(circle at 92% 82%, rgba(22, 190, 111, .16), transparent 30%),
        linear-gradient(145deg, #071630 0%, #0b2450 54%, #0d3265 100%);
}

.home-guest-entry::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .18;
    background-image:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 42px 42px;
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
    mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.home-guest-entry__light {
    position: absolute;
    z-index: -1;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    filter: blur(16px);
    pointer-events: none;
}

.home-guest-entry__light--one {
    top: -210px;
    right: 18%;
    background: rgba(63, 126, 255, .24);
}

.home-guest-entry__light--two {
    right: -170px;
    bottom: -230px;
    background: rgba(20, 193, 109, .20);
}

.home-guest-entry > .app-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(270px, .72fr) minmax(560px, 1.28fr);
    gap: clamp(34px, 5vw, 76px);
    align-items: center;
}

.home-guest-entry__intro {
    color: #fff;
}

.home-guest-entry__badge {
    display: inline-flex !important;
    align-items: center;
    min-height: 28px;
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    color: #a9c8ff !important;
    font-size: 9px !important;
    font-weight: 900 !important;
    letter-spacing: .12em !important;
}

.home-guest-entry__intro h2 {
    margin: 18px 0 0;
    color: #fff;
    font-size: clamp(38px, 5vw, 68px);
    line-height: .98;
    letter-spacing: -.052em;
}

.home-guest-entry__intro h2 em {
    color: #79e4aa;
    font-style: normal;
}

.home-guest-entry__intro > p {
    max-width: 520px;
    margin: 20px 0 0;
    color: rgba(232,240,255,.78);
    font-size: 15px;
    line-height: 1.65;
}

.home-guest-entry__steps {
    display: grid;
    gap: 9px;
    margin-top: 28px;
}

.home-guest-entry__steps article {
    display: grid;
    grid-template-columns: 34px minmax(0,1fr);
    gap: 11px;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;
    background: rgba(255,255,255,.045);
    backdrop-filter: blur(8px);
}

.home-guest-entry__steps b {
    color: #79e4aa;
    font-size: 10px;
    letter-spacing: .08em;
}

.home-guest-entry__steps span {
    color: #fff;
    font-size: 12px;
    font-weight: 750;
}

.home-guest-entry__promise {
    display: grid;
    grid-template-columns: 34px minmax(0,1fr);
    gap: 11px;
    align-items: start;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.12);
}

.home-guest-entry__promise > span {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(121,228,170,.14);
    color: #79e4aa;
}

.home-guest-entry__promise p {
    margin: 0;
    color: rgba(232,240,255,.72);
    font-size: 11px;
    line-height: 1.5;
}

.home-guest-entry__promise strong {
    color: #fff;
}

.home-guest-entry__game {
    position: relative;
}

.home-guest-entry__game::before {
    content: "";
    position: absolute;
    inset: 18px -16px -18px 16px;
    z-index: -1;
    border-radius: 34px;
    background: rgba(63,126,255,.17);
    filter: blur(2px);
}

.home-guest-entry__game .guest-play {
    border-color: rgba(255,255,255,.56);
    box-shadow: 0 30px 80px rgba(0, 7, 24, .38);
}

@media (prefers-reduced-motion: reduce) {
    .leaflet-interactive.is-locked { animation: none; }
}

@media (max-width: 1080px) {
    .home-guest-entry > .app-shell {
        grid-template-columns: 1fr;
        max-width: 860px;
    }
    .home-guest-entry__intro {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }
    .home-guest-entry__intro > p { margin-left: auto; margin-right: auto; }
    .home-guest-entry__steps {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
    .home-guest-entry__steps article {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
    .home-guest-entry__promise {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
}

@media (max-width: 620px) {
    .home-guest-entry { padding: 42px 0 50px; }
    .home-guest-entry > .app-shell { gap: 28px; }
    .home-guest-entry__intro h2 {
        margin-top: 14px;
        font-size: clamp(36px, 12vw, 50px);
    }
    .home-guest-entry__intro > p {
        margin-top: 15px;
        font-size: 13px;
    }
    .home-guest-entry__steps {
        grid-template-columns: 1fr;
        gap: 7px;
        margin-top: 21px;
    }
    .home-guest-entry__steps article {
        grid-template-columns: 30px minmax(0,1fr);
        justify-items: stretch;
        text-align: left;
        padding: 9px 11px;
    }
    .home-guest-entry__game::before { inset: 10px -7px -10px 7px; border-radius: 26px; }
}

/* V7 — Comune, stemma e parole in un unico box accanto alla mappa. */
.guest-play__territory {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    grid-template-areas:
        "crest copy"
        "actions actions";
    gap: 10px 12px;
    align-items: center;
    min-width: 0;
}

.guest-play__crest--map {
    grid-area: crest;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(27, 58, 122, .12);
}

.guest-play__territory-copy {
    grid-area: copy;
    min-width: 0;
}

.guest-play__territory-copy > span,
.guest-play__territory-copy > strong,
.guest-play__territory-copy > small {
    display: block;
}

.guest-play__territory-actions {
    grid-area: actions;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.guest-play__territory-action {
    min-width: 0;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 7px 9px;
    border: 1px solid #d8e2f2;
    border-radius: 12px;
    background: #fff;
    color: #244a9e;
    font: inherit;
    cursor: pointer;
}

.guest-play__territory-action:hover,
.guest-play__territory-action:focus-visible {
    border-color: #92aee5;
    background: #f4f7ff;
}

.guest-play__territory-action span {
    min-width: 23px;
    height: 23px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #e8efff;
    color: #2451b3;
    font-size: 10px;
    font-weight: 900;
}

.guest-play__territory-action b {
    overflow: hidden;
    font-size: 9px;
    font-weight: 900;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.guest-play__territory-action--words {
    border-color: #bee7cf;
    background: #effaf4;
    color: #12653d;
}

.guest-play__territory-action--words span {
    background: #16a15a;
    color: #fff;
}

.guest-play__map-copy > .guest-play__choose {
    width: 100%;
    margin: 0;
    animation: guestRise .25s ease both;
}

.guest-play__map-copy > .guest-play__choose h3 {
    margin: 0 0 9px;
    font-size: 16px;
}

.guest-play__map-copy > .guest-play__choose .guest-play__field > span {
    margin-bottom: 5px;
    font-size: 9px;
}

.guest-play__map-copy > .guest-play__choose select {
    min-height: 43px;
    border-radius: 12px;
    font-size: 12px;
}

.guest-play__map-copy > .guest-play__choose .guest-play__choose-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 8px;
}

.guest-play__map-copy > .guest-play__choose .guest-button {
    min-height: 42px;
    padding: 7px 8px;
    border-radius: 12px;
    font-size: 9px;
}

.guest-play__choose-cancel {
    width: 100%;
    margin-top: 6px;
    padding: 4px;
    border: 0;
    background: transparent;
    color: #60708f;
    font-size: 9px;
    font-weight: 800;
    cursor: pointer;
}

.guest-play__modal--words .guest-play__modal-card {
    width: min(520px, calc(100% - 28px));
}

.guest-play__saved-card {
    max-height: min(680px, calc(100vh - 44px));
    overflow: auto;
    text-align: left;
}

.guest-play__saved-card-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
    margin-bottom: 14px;
}

.guest-play__saved-card-head h3 {
    margin-top: 5px;
    font-size: 22px;
}

.guest-play__saved-card-head > button {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid #dce4f1;
    border-radius: 50%;
    background: #fff;
    color: #293d68;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.guest-play__saved-card .guest-play__saved-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.guest-play__saved-card .guest-play__saved-list article {
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    margin: 0;
    padding: 10px 12px;
    border: 1px solid #e1e7f1;
    border-radius: 13px;
    background: #f8faff;
}

.guest-play__saved-card .guest-play__impact {
    margin: 14px 0 0;
}

.guest-play__saved-expiry {
    margin: 11px 0 0 !important;
    color: #697793 !important;
    font-size: 10px !important;
    text-align: center;
}

/* Nella home il widget diventa più compatto: una sola unità territoriale e meno altezza. */
.guest-play--compact {
    padding: 16px;
}

.guest-play--compact .guest-play__member-access {
    margin-bottom: 10px;
    padding: 9px 10px;
}

.guest-play--compact .guest-play__head {
    padding-bottom: 10px;
}

.guest-play--compact .guest-play__head h2 {
    font-size: clamp(21px, 3vw, 29px);
}

.guest-play--compact .guest-play__progress {
    margin: 10px 0;
    padding: 9px 11px;
}

.guest-play--compact .guest-play__map-stage {
    grid-template-columns: minmax(180px, .82fr) minmax(250px, 1.18fr);
    min-height: 138px;
    margin: 9px 0 11px;
}

.guest-play--compact .guest-play__map {
    min-height: 138px;
}

.guest-play--compact .guest-play__map-copy {
    padding: 12px 14px;
}

.guest-play--compact .guest-play__question {
    padding: 12px;
}

.guest-play--compact .guest-play__mission form {
    margin-top: 9px;
}

.guest-play--compact .guest-play__answer textarea {
    min-height: 68px;
}

.guest-play--compact .guest-button--audio {
    min-height: 49px;
}

@media (max-width: 720px) {
    .guest-play__territory {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 8px 9px;
    }

    .guest-play__crest--map {
        width: 46px;
        height: 46px;
        border-radius: 13px;
    }

    .guest-play__territory-actions {
        gap: 6px;
    }

    .guest-play__territory-action {
        min-height: 36px;
        padding: 6px;
    }

    .guest-play__territory-action b {
        font-size: 8px;
    }

    .guest-play--compact .guest-play__map-stage {
        grid-template-columns: 40% minmax(0, 60%);
        min-height: 122px;
    }

    .guest-play--compact .guest-play__map {
        min-height: 122px;
    }

    .guest-play--compact .guest-play__map-copy {
        padding: 9px;
    }

    .guest-play__saved-card .guest-play__saved-list article {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .guest-play--compact {
        padding: 12px;
    }

    .guest-play--compact .guest-play__map-stage {
        grid-template-columns: 37% minmax(0, 63%);
    }

    .guest-play__territory-action b {
        white-space: normal;
    }
}


.guest-play__italian-bridge {
    margin: .35rem 0 0;
    color: var(--guest-muted, #596579);
    font-size: .92rem;
}
.guest-play__italian-bridge strong {
    color: var(--guest-ink, #172033);
    font-weight: 700;
}
