    :root {
      --gold: #c9a227;
      --gold-light: #e8d48b;
      --gold-deep: #8b6914;
      --burgundy: #6b1d2a;
      --burgundy-deep: #3d0f16;
      --cream: #f7f0de;
      --ivory: #fff8ea;
      --earth: #2c1810;
      --teal: #1a4a3a;
      --teal-light: #2d6b55;
      --ink: #1a120c;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: "Noto Sans Kazakh", "Noto Sans", system-ui, sans-serif;
      background: var(--cream);
      color: var(--ink);
      line-height: 1.65;
    }

    /* ========== ORNAMENT PATTERNS ========== */
    .ornament-bar {
      height: 28px;
      background:
        repeating-linear-gradient(90deg,
          var(--burgundy) 0 10px,
          var(--gold) 10px 14px,
          var(--burgundy-deep) 14px 24px,
          var(--gold-light) 24px 28px);
      position: relative;
    }
    .ornament-bar::after {
      content: "";
      position: absolute; inset: 6px 0;
      background:
        repeating-linear-gradient(90deg,
          transparent 0 18px,
          var(--gold-light) 18px 22px,
          transparent 22px 40px);
      opacity: .55;
    }
    .horn-divider {
      height: 40px;
      display: flex; align-items: center; justify-content: center;
      gap: 12px;
      color: var(--gold-deep);
      font-size: 22px;
      letter-spacing: 8px;
    }
    .horn-divider span { color: var(--burgundy); }

    /* ========== NAV ========== */
    header.top {
      background: linear-gradient(180deg, var(--burgundy-deep), var(--burgundy));
      color: var(--ivory);
      position: sticky; top: 0; z-index: 50;
      box-shadow: 0 8px 24px rgba(61,15,22,.35);
    }
    .nav-wrap {
      max-width: 1180px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      padding: 12px 20px; gap: 16px; flex-wrap: wrap;
    }
    .brand {
      display: flex; align-items: center; gap: 12px;
      font-weight: 800; letter-spacing: .04em; font-size: 1.15rem;
    }
    .brand-mark {
      width: 42px; height: 42px; border-radius: 50%;
      background: radial-gradient(circle at 35% 30%, var(--gold-light), var(--gold-deep));
      display: grid; place-items: center;
      box-shadow: 0 0 0 3px var(--burgundy), 0 0 0 5px var(--gold);
      font-size: 22px;
    }
    nav a {
      color: var(--gold-light); text-decoration: none;
      font-weight: 600; font-size: .92rem; padding: 6px 10px;
      border-radius: 999px;
    }
    nav a:hover { background: rgba(232,212,139,.15); color: #fff; }
    nav { display: flex; gap: 4px; flex-wrap: wrap; }

    /* ========== HERO ========== */
    .hero {
      background:
        radial-gradient(ellipse at 20% 20%, rgba(201,162,39,.25), transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(107,29,42,.35), transparent 50%),
        linear-gradient(165deg, #3d0f16 0%, #1a4a3a 55%, #2c1810 100%);
      color: var(--ivory);
      padding: 72px 20px 88px;
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: "";
      position: absolute; inset: 0;
      background-image:
        radial-gradient(circle at 10% 50%, transparent 18px, rgba(232,212,139,.08) 19px, transparent 20px),
        radial-gradient(circle at 90% 30%, transparent 22px, rgba(232,212,139,.07) 23px, transparent 24px);
      background-size: 80px 80px, 110px 110px;
      pointer-events: none;
    }
    .hero-inner { max-width: 1180px; margin: 0 auto; position: relative; }
    .kicker {
      display: inline-block;
      border: 1px solid var(--gold);
      color: var(--gold-light);
      padding: 4px 14px; border-radius: 999px;
      font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
      margin-bottom: 18px;
    }
    .hero h1 {
      font-size: clamp(2.1rem, 5vw, 3.6rem);
      line-height: 1.15; font-weight: 800;
      max-width: 16ch;
    }
    .hero h1 em { font-style: normal; color: var(--gold-light); }
    .hero p.lead {
      margin-top: 18px; max-width: 52ch; font-size: 1.12rem;
      color: #f3e6c4; opacity: .95;
    }
    .cta-row { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
    .btn {
      display: inline-block; text-decoration: none;
      padding: 12px 22px; border-radius: 999px; font-weight: 700;
      border: 2px solid transparent; cursor: pointer; font-family: inherit;
    }
    .btn-gold { background: var(--gold); color: var(--burgundy-deep); }
    .btn-gold:hover { background: var(--gold-light); }
    .btn-ghost { border-color: var(--gold-light); color: var(--gold-light); background: transparent; }
    .btn-ghost:hover { background: rgba(232,212,139,.12); }

    .section { max-width: 1180px; margin: 0 auto; padding: 64px 20px; }
    .section h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      color: var(--burgundy);
      margin-bottom: 8px;
    }
    .section .sub {
      color: #5a4632; margin-bottom: 28px; max-width: 62ch;
    }

    /* cards */
    .grid-2 { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: start; }
    .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    @media (max-width: 900px) {
      .grid-2, .grid-4, .grid-3 { grid-template-columns: 1fr; }
    }

    .panel {
      background: var(--ivory);
      border: 1px solid #e4d3a8;
      border-radius: 18px;
      padding: 24px;
      box-shadow: 0 10px 30px rgba(44,24,16,.06);
      position: relative;
    }
    .panel.dark {
      background: linear-gradient(180deg, var(--teal), #123328);
      color: var(--ivory); border-color: #2a5c48;
    }
    .panel h3 { color: var(--burgundy); margin-bottom: 8px; font-size: 1.2rem; }
    .panel.dark h3 { color: var(--gold-light); }

    /* ASYK SVG CARDS */
    .asyk-card {
      background: var(--ivory);
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid #e0cc96;
      box-shadow: 0 8px 20px rgba(44,24,16,.07);
      display: flex; flex-direction: column;
    }
    .asyk-art {
      height: 170px;
      display: grid; place-items: center;
      position: relative;
    }
    .asyk-card .meta { padding: 16px 16px 18px; }
    .asyk-card .badge {
      display: inline-block; font-size: .72rem; font-weight: 800;
      letter-spacing: .08em; text-transform: uppercase;
      padding: 3px 8px; border-radius: 6px; margin-bottom: 6px;
    }
    .rank1 { background: #f3de8a; color: #6b4a00; }
    .rank2 { background: #d7c4a3; color: #4a3318; }
    .rank3 { background: #c9d6c4; color: #23401f; }
    .rank4 { background: #d8c4c8; color: #4a1c28; }
    .asyk-card h3 { font-size: 1.25rem; color: var(--burgundy); }
    .asyk-card p { font-size: .92rem; color: #4a3a28; margin-top: 6px; }

    .steps { counter-reset: step; display: grid; gap: 14px; }
    .step {
      display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: start;
      background: var(--ivory); border-radius: 14px; padding: 16px;
      border: 1px solid #e6d5aa;
    }
    .step::before {
      counter-increment: step;
      content: counter(step);
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--burgundy); color: var(--gold-light);
      display: grid; place-items: center; font-weight: 800; font-size: 1.15rem;
    }

    /* TASKS */
    .task {
      border: 1px solid #e0cc96; border-radius: 16px; padding: 18px;
      background: #fffaf0; margin-bottom: 14px;
    }
    .task h4 { color: var(--teal); margin-bottom: 8px; }
    .choices { display: grid; gap: 8px; margin-top: 10px; }
    .choices button {
      text-align: left; padding: 10px 12px; border-radius: 10px;
      border: 1px solid #d8c59a; background: #fff; cursor: pointer;
      font-family: inherit; font-size: .95rem;
    }
    .choices button:hover { border-color: var(--gold-deep); }
    .choices button.ok { background: #d7efd4; border-color: #2d6b55; }
    .choices button.bad { background: #f8d4d4; border-color: #8b2a2a; }
    .feedback { margin-top: 8px; font-weight: 600; min-height: 1.3em; }

    .score-box {
      background: var(--burgundy); color: var(--gold-light);
      border-radius: 16px; padding: 18px 22px;
      display: flex; justify-content: space-between; align-items: center;
      margin-bottom: 18px;
    }
    .score-box strong { font-size: 1.6rem; color: #fff; }

    footer {
      background: var(--earth); color: #e8d48b;
      padding: 36px 20px; text-align: center;
    }
    footer small { display: block; margin-top: 8px; opacity: .7; }

    .note {
      font-size: .88rem; color: #6a5438; background: #f3e8c8;
      border-left: 4px solid var(--gold); padding: 10px 12px; border-radius: 0 10px 10px 0;
      margin-top: 12px;
    }
    ul.clean { padding-left: 18px; }
    ul.clean li { margin: 6px 0; }

    .yurt-frame {
      border: 10px solid transparent;
      border-image: repeating-linear-gradient(45deg, var(--gold) 0 8px, var(--burgundy) 8px 16px) 10;
      border-radius: 8px;
    }

/* ===================== EXPANSION ===================== */
a.brand { color: var(--ivory); text-decoration: none; }
.brand-mark img { width: 30px; height: 30px; object-fit: contain; filter: drop-shadow(0 1px 1px rgba(0,0,0,.4)); }
nav a.active { background: var(--gold); color: var(--burgundy-deep); }
nav a.nav-hot:not(.active) { border: 1px solid var(--gold); }
.menu-btn { display: none; background: transparent; border: 2px solid var(--gold-light); border-radius: 10px; width: 46px; height: 42px; cursor: pointer; padding: 8px; flex-direction: column; justify-content: space-between; }
.menu-btn span { display: block; height: 3px; background: var(--gold-light); border-radius: 2px; transition: .2s; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }
@media (max-width: 980px) {
  .menu-btn { display: flex; }
  nav { display: none; width: 100%; flex-direction: column; gap: 4px; padding: 6px 0 10px; }
  nav.open { display: flex; }
  nav a { font-size: 1.05rem; padding: 12px 14px; border-radius: 12px; }
}
.page[hidden] { display: none !important; }
.page { animation: pageIn .35s ease; min-height: 60vh; }
@keyframes pageIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.hero-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; align-items: center; }
.hero-art { position: relative; height: 320px; }
.hero-art img { position: absolute; filter: drop-shadow(0 18px 18px rgba(0,0,0,.45)); }
.hero-art .a1 { width: 44%; left: 30%; top: 0; animation: bob 4s ease-in-out infinite; }
.hero-art .a2 { width: 46%; left: 0; top: 52%; transform: rotate(-12deg); animation: bob 5s ease-in-out infinite .6s; }
.hero-art .a3 { width: 44%; right: 0; top: 58%; animation: bob 4.6s ease-in-out infinite 1.2s; }
@keyframes bob { 0%,100% { translate: 0 0; } 50% { translate: 0 -10px; } }
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; } .hero-art { height: 220px; max-width: 360px; } .hero { padding: 48px 20px 40px; } }

.home-cards .home-card { display: block; text-decoration: none; color: inherit; background: var(--ivory); border: 1px solid #e4d3a8; border-radius: 18px; padding: 20px; box-shadow: 0 10px 24px rgba(44,24,16,.06); transition: transform .15s, box-shadow .15s; }
.home-card:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(44,24,16,.12); }
.home-card h3 { color: var(--burgundy); margin: 6px 0 4px; }
.home-card p { color: #5a4632; font-size: .95rem; }
.home-card.hot { background: linear-gradient(160deg, #fff3cf, var(--ivory)); border-color: var(--gold); }
.hc-ico { font-size: 1.8rem; display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: #f3e3b8; }
.hc-ico img { width: 40px; }
.btn-burg { background: var(--burgundy); color: var(--gold-light); }
.btn-burg:hover { background: var(--burgundy-deep); }
.btn.sm { padding: 8px 16px; font-size: .9rem; }

.photo-panel { padding: 12px; margin: 0; }
.photo-panel img { width: 100%; border-radius: 12px; display: block; aspect-ratio: 3/2; object-fit: cover; }
.photo-panel figcaption { font-size: .92rem; margin-top: 8px; color: #4a3a28; }
.photo-panel small, .photo-credit { display: block; font-size: .75rem; opacity: .75; }
.photo-credit { margin-top: 10px; color: #6a5438; }
.h3-title { color: var(--burgundy); margin: 30px 0 12px; font-size: 1.35rem; }
.glossary { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 10px; }
.glossary div { background: #fffaf0; border: 1px solid #e0cc96; border-left: 5px solid var(--gold); border-radius: 10px; padding: 10px 12px; }
.glossary b { display: block; color: var(--teal); }
.glossary span { font-size: .92rem; color: #4a3a28; }

.asyk-art { height: 190px; }
.asyk-art img { max-width: 78%; max-height: 150px; filter: drop-shadow(0 12px 10px rgba(0,0,0,.45)); transition: transform .3s; }
.asyk-card:hover .asyk-art img { transform: scale(1.06) rotate(-3deg); }
.asyk-art .pose { position: absolute; top: 10px; right: 10px; font-size: .75rem; font-weight: 700; color: var(--gold-light); border: 1px solid rgba(232,212,139,.6); padding: 2px 8px; border-radius: 999px; }
.bg1 { background: linear-gradient(180deg,#6b1d2a,#3d0f16); }
.bg2 { background: linear-gradient(180deg,#8b6914,#4a360c); }
.bg3 { background: linear-gradient(180deg,#2d6b55,#123328); }
.bg4 { background: linear-gradient(180deg,#4a2a38,#2c1810); }

/* timeline */
.timeline { position: relative; display: grid; gap: 18px; }
.timeline::before { content: ""; position: absolute; left: 23px; top: 10px; bottom: 10px; width: 4px; background: repeating-linear-gradient(180deg, var(--gold) 0 10px, var(--burgundy) 10px 20px); border-radius: 2px; }
.tl-item { display: grid; grid-template-columns: 50px 1fr; gap: 14px; position: relative; }
.tl-dot { width: 50px; height: 50px; border-radius: 50%; background: var(--burgundy); color: var(--gold-light); display: grid; place-items: center; font-weight: 800; font-size: 1.2rem; box-shadow: 0 0 0 4px var(--cream), 0 0 0 6px var(--gold); z-index: 1; }
.tl-body p + p { margin-top: 8px; }

/* games */
.games { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; align-items: start; }
@media (max-width: 900px) { .games { grid-template-columns: 1fr; } }
.game-card { background: var(--ivory); border: 1px solid #e0cc96; border-radius: 16px; overflow: hidden; }
.game-card summary { list-style: none; cursor: pointer; display: flex; gap: 12px; align-items: center; padding: 14px 16px; background: linear-gradient(90deg, #fff3cf, var(--ivory)); position: relative; }
.game-card summary::-webkit-details-marker { display: none; }
.game-card summary::after { content: "▾"; position: absolute; right: 16px; color: var(--burgundy); font-size: 1.2rem; transition: transform .2s; }
.game-card[open] summary::after { transform: rotate(180deg); }
.game-card summary b { display: block; color: var(--burgundy); font-size: 1.1rem; }
.game-card summary small { color: #6a5438; }
.g-ico { font-size: 1.6rem; width: 46px; height: 46px; display: grid; place-items: center; background: #f3e3b8; border-radius: 12px; flex: none; }
.g-body { padding: 4px 18px 16px; }
.g-body ol { padding-left: 20px; margin-bottom: 12px; }

/* tasks */
.sticky-score { position: sticky; top: 76px; z-index: 20; gap: 12px; flex-wrap: wrap; }
.sticky-score small { display: block; font-size: .8rem; opacity: .85; }
@media (max-width: 980px) { .sticky-score { top: 70px; padding: 10px 14px; } }
.task { position: relative; }
.task .tno { display: inline-block; font-size: .75rem; font-weight: 800; background: var(--teal); color: #fff; border-radius: 6px; padding: 2px 8px; margin-bottom: 6px; }
.task .q { font-size: 1.05rem; font-weight: 600; }
.task.done-ok { border-color: #2d6b55; box-shadow: inset 5px 0 0 #2d6b55; }
.task.done-bad { border-color: #8b2a2a; box-shadow: inset 5px 0 0 #8b2a2a; }
.task-img { display: grid; place-items: center; background: linear-gradient(180deg,#2d6b55,#123328); border-radius: 12px; height: 170px; margin: 10px 0; }
.task-img img { max-height: 140px; max-width: 70%; filter: drop-shadow(0 10px 8px rgba(0,0,0,.45)); }
.choices.row { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
.choices button { font-size: 1rem; min-height: 46px; color: var(--ink); }
.match { display: grid; grid-template-columns: 1fr 1.4fr; gap: 10px; margin-top: 10px; }
.match .col { display: grid; gap: 8px; align-content: start; }
.match button { padding: 10px; border-radius: 10px; border: 1px solid #d8c59a; background: #fff; cursor: pointer; font-family: inherit; font-size: .95rem; text-align: left; min-height: 46px; color: var(--ink); }
.match button.sel { border: 2px solid var(--gold-deep); background: #fff3cf; }
.match button.ok { background: #d7efd4; border-color: #2d6b55; cursor: default; }
.match button.wrong { animation: shake .35s; background: #f8d4d4; }
@keyframes shake { 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }
.order-pool, .order-ans { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; min-height: 50px; padding: 8px; border-radius: 12px; }
.order-ans { background: #f3e8c8; border: 2px dashed var(--gold); }
.order-pool button, .order-ans span { padding: 10px 14px; border-radius: 999px; border: 1px solid #d8c59a; background: #fff; font-family: inherit; font-size: 1rem; cursor: pointer; color: var(--ink); }
.order-ans span { background: var(--burgundy); color: var(--gold-light); border: 0; }
.task-actions { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.result-card { background: linear-gradient(160deg, var(--burgundy), var(--burgundy-deep)); color: var(--ivory); border-radius: 18px; padding: 26px; text-align: center; margin-top: 20px; }
.result-card .stars { font-size: 2.4rem; color: var(--gold-light); letter-spacing: 6px; }
.result-card h3 { color: var(--gold-light); font-size: 1.6rem; margin: 6px 0; }

/* simulator */
.mode-picker { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; margin-bottom: 14px; }
@media (max-width: 900px) { .mode-picker { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 480px) { .mode-picker { grid-template-columns: repeat(3, 1fr); } }
.mode-picker button { border: 2px solid #e0cc96; background: var(--ivory); border-radius: 14px; padding: 10px 4px; font-family: inherit; font-weight: 700; color: var(--burgundy); cursor: pointer; font-size: .9rem; display: flex; flex-direction: column; align-items: center; gap: 2px; }
.mode-picker button span { font-size: 1.5rem; }
.mode-picker button.active { background: var(--burgundy); color: var(--gold-light); border-color: var(--gold); }
.rules-card { background: #fff3cf; border: 1px solid var(--gold); border-left: 6px solid var(--gold-deep); border-radius: 14px; padding: 12px 16px; margin-bottom: 14px; }
.rules-card h3 { color: var(--burgundy); font-size: 1.15rem; }
.rules-card ul { padding-left: 18px; margin-top: 4px; }
.rules-card li { margin: 3px 0; font-size: .95rem; }
.sim-stage { background: linear-gradient(180deg, #1a4a3a, #123328); border-radius: 18px; padding: 14px; color: var(--ivory); box-shadow: inset 0 0 0 3px rgba(201,162,39,.4); }
.sim-bar { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.sim-bar .grp { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.pill { background: rgba(255,248,234,.12); border: 1px solid rgba(232,212,139,.4); color: var(--gold-light); border-radius: 999px; padding: 6px 12px; font-weight: 700; font-size: .92rem; }
.pill.on { background: var(--gold); color: var(--burgundy-deep); }
.sim-btn { background: var(--gold); color: var(--burgundy-deep); border: 0; border-radius: 999px; padding: 10px 18px; font-weight: 800; font-family: inherit; font-size: 1rem; cursor: pointer; touch-action: manipulation; }
.sim-btn:disabled { opacity: .45; cursor: default; }
.sim-btn.ghost { background: transparent; color: var(--gold-light); border: 2px solid var(--gold-light); }
.sim-btn.big { font-size: 1.2rem; padding: 14px 26px; }
.canvas-wrap { position: relative; max-width: 520px; margin: 0 auto; }
.canvas-wrap canvas { width: 100%; height: auto; display: block; border-radius: 14px; touch-action: none; user-select: none; -webkit-user-select: none; background: #c9a86a; }
.sim-msg { text-align: center; font-weight: 700; min-height: 1.6em; margin: 8px 0; color: var(--gold-light); font-size: 1.05rem; }
.overlay { position: absolute; inset: 0; background: rgba(61,15,22,.86); border-radius: 14px; display: grid; place-items: center; text-align: center; padding: 20px; }
.overlay h3 { color: var(--gold-light); font-size: 1.7rem; }
.overlay p { margin: 8px 0 14px; }
.spin-area { position: relative; height: 280px; display: grid; place-items: end center; background: radial-gradient(ellipse at 50% 88%, #c9a86a 0 30%, #9c7a45 55%, transparent 56%), linear-gradient(180deg, #1a4a3a, #123328); border-radius: 14px; overflow: hidden; }
.spin-area.four { grid-template-columns: repeat(4, 1fr); height: 240px; }
.spin-asyq { width: 150px; height: 150px; display: grid; place-items: center; margin-bottom: 36px; }
.spin-area.four .spin-asyq { width: 100%; height: 110px; margin-bottom: 50px; }
.spin-asyq img { max-width: 100%; max-height: 100%; filter: drop-shadow(0 10px 8px rgba(0,0,0,.5)); }
.spin-result { text-align: center; font-size: 1.6rem; font-weight: 800; color: var(--gold-light); min-height: 2.2rem; margin-top: 8px; }
.counters { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-top: 10px; }
.counters div { background: rgba(255,248,234,.1); border-radius: 12px; padding: 8px 4px; text-align: center; }
.counters b { display: block; font-size: 1.4rem; color: #fff; }
.counters small { color: var(--gold-light); }
.counters img { height: 30px; display: block; margin: 0 auto 2px; }
.kum-labels { display: grid; grid-template-columns: repeat(4,1fr); text-align: center; font-weight: 700; color: var(--gold-light); margin-top: 6px; }
.sound-toggle { display: inline-block; margin-top: 10px; color: #5a4632; cursor: pointer; }
.center { text-align: center; }
.spin-area.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.spin-area.four .spin-asyq img { max-width: 88%; max-height: 96px; width: auto; height: auto; }
.spin-asyq img { max-height: 140px; width: auto; }
.sim-stage, .mode-picker { user-select: none; -webkit-user-select: none; -webkit-touch-callout: none; }
