.game-adventure { --adventure-accent: #176d67; grid-column: 1 / -1; min-width: 0; padding: 18px 0; border-block: 1px solid #c4d9dc; }
.game-adventure[data-theme="lab"] { --adventure-accent: #236786; }
.game-adventure[data-theme="theater"] { --adventure-accent: #9a3565; }
.game-adventure[data-theme="workshop"] { --adventure-accent: #86601e; }
.adventure-heading { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.adventure-heading h2 { font-size: 22px; margin: 0; line-height: 1.3; color: #253b46; }
.adventure-tallies { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 14px; font-weight: 700; color: #37515d; font-variant-numeric: tabular-nums; }
.adventure-landscape { position: relative; background: #dcf4fa; overflow: hidden; height: 224px; }
.adventure-landscape > img { display: block; width: 100%; height: 100%; object-fit: cover; }
.adventure-flight { position: absolute; inset: auto 32px 10px; height: 64px; }
.adventure-traveler { display: block; position: absolute; left: calc(var(--journey, 0) * 100%); width: 56px; height: 56px; transform: translateX(-50%); transition: left .65s ease; filter: drop-shadow(0 4px 2px #193b4833); }
.adventure-traveler svg { width: 100%; height: 100%; }
.adventure-trail { display: grid; grid-template-columns: repeat(auto-fit, minmax(44px, 1fr)); gap: 10px; list-style: none; padding: 14px 0 8px; margin: 0; }
.adventure-trail li { display: flex; justify-content: center; min-width: 0; }
.adventure-stop { position: relative; display: grid; place-items: center; width: 54px; height: 58px; padding: 3px; background: #e8edef; border: 2px dashed #839a9d; border-radius: 8px; color: #334c56; font: inherit; }
.adventure-stop svg { height: 40px; width: 40px; opacity: .16; filter: grayscale(1); }
.adventure-stop span { position: absolute; font-weight: 800; font-size: 16px; }
.adventure-stop.is-collected { background: #fff; border: 2px solid var(--adventure-accent); cursor: pointer; box-shadow: 0 3px 0 #b7d4d2; }
.adventure-stop.is-collected svg { opacity: 1; filter: none; }
.adventure-stop.is-collected span { bottom: -5px; right: -4px; background: var(--adventure-accent); color: white; border-radius: 50%; width: 21px; height: 21px; line-height: 21px; font-size: 12px; }
.adventure-stop.is-new { animation: adventure-pop .5s ease-out; }
.adventure-stop:focus-visible, .adventure-review button:focus-visible { outline: 3px solid #db4b8a; outline-offset: 4px; }
.adventure-progress { display: block; width: 100%; height: 8px; margin-top: 8px; accent-color: var(--adventure-accent); }
.adventure-memory { padding: 12px 0; margin: 10px 0 0; color: #264c56; border-bottom: 2px solid #c9dfdb; line-height: 1.6; }
.adventure-finale { border-top: 2px solid var(--adventure-accent); margin-top: 16px; padding-top: 16px; }
.adventure-finale > strong { color: var(--adventure-accent); font-size: 24px; }
.adventure-finale p { line-height: 1.6; }
.adventure-finale a { display: inline-block; margin: 12px; color: #185a79; }
.adventure-review { margin-top: 18px; padding: 16px 0; border-block: 3px solid #348470; }
.adventure-review[data-correct="false"] { border-color: #ca8434; }
.adventure-review h3 { margin: 0 0 8px; font-size: 22px; color: #265b53; }
.adventure-review p { line-height: 1.6; color: #334c56; }
.adventure-review button { min-height: 46px; }
.game-layout:has(.adventure-landscape) > .game-card { border-radius: 0; box-shadow: none; border: 0; border-top: 3px solid #2d8d87; background: transparent; }
.game-layout:has(.adventure-landscape) > aside.game-card { border-top-color: #d69b32; }
.game-layout:has(.adventure-landscape) .answer-option { border-bottom-width: 4px; transition: transform .12s; }
.game-layout:has(.adventure-landscape) .answer-option:not(:disabled):hover { transform: translateY(-2px); background: #edf8f6; }
.game-layout:has(.adventure-landscape) .answer-option:disabled { cursor: default; opacity: .7; }
.game-layout:has(.adventure-landscape) .answer-option.is-chosen { border-color: #b9672b; opacity: 1; background: #fff2df; }
.game-layout:has(.adventure-landscape) .answer-option.is-answer { border-color: #318476; opacity: 1; background: #e5f5ec; }
.game-layout:has(.adventure-landscape) > .game-tracker { min-height: 0; padding: 8px 0; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
.game-layout:has(.adventure-landscape) .game-tracker-item { border: 0; border-radius: 0; background: transparent; min-height: 0; padding: 4px 8px; border-left: 2px solid #c4d9dc; }
.game-layout:has(.adventure-landscape) .problem-box strong { overflow-wrap: anywhere; font-size: 40px; }
.adventure-compact .adventure-heading h2 { font-size: 18px; }
.adventure-compact .adventure-trail { grid-template-columns: repeat(auto-fit, minmax(46px, 1fr)); }
.finder-game:has([data-adventure]) #finder-collection { display: none; }
@keyframes adventure-pop { 0% { transform: scale(.7); } 60% { transform: scale(1.15); } 100% { transform: scale(1); } }
@media (max-width: 600px) {
    .adventure-landscape { height: 154px; }
    .adventure-landscape > img { object-fit: cover; }
    .adventure-heading h2 { font-size: 20px; }
    .adventure-stop { width: 44px; height: 52px; }
    .adventure-trail { gap: 8px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .adventure-flight { inset-inline: 26px; }
    .adventure-traveler { width: 46px; height: 46px; }
    .game-layout:has(.adventure-landscape) .problem-box strong { font-size: 30px; }
    .game-layout:has(.adventure-landscape) > .game-tracker { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .game-layout:has(.adventure-landscape) .game-tracker-item:first-child { display: none; }
    .game-layout:has(.adventure-landscape) .game-tracker-method { grid-column: 1 / -1; }
    .game-layout:has(.adventure-landscape) .game-tracker-item strong { font-size: 14px; }
    .game-layout:has(.adventure-landscape) > .game-card { padding-inline: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .adventure-traveler, .game-layout:has(.adventure-landscape) .answer-option { transition: none; }
    .adventure-stop.is-new { animation: none; }
}
