/* ====================================================
   VEHICLE WHEEL — vehicle-wheel.css
   TheWheelOfName.com
   Transport / steel-blue theme
   ==================================================== */
:root {
  --vehw-blue:    #1E6FCC;
  --vehw-blue-d:  #144F9A;
  --vehw-blue-l:  #D6E8FF;
  --vehw-orange:  #E8701A;
  --vehw-orange-d:#B8530E;
  --vehw-orange-l:#FEE9D7;
  --vehw-steel:   #4A6FA5;
  --vehw-green:   #27AE60;
  --vehw-green-l: #D5F5E3;
  --vehw-red:     #DC2626;
  --vehw-bg:      #F4F7FB;
  --vehw-white:   #FFFFFF;
  --vehw-g50:     #F8FAFC;
  --vehw-g100:    #EEF2F7;
  --vehw-g200:    #DDE3EE;
  --vehw-g400:    #9AADC8;
  --vehw-g600:    #4A6080;
  --vehw-g700:    #2C3E5A;
  --vehw-g800:    #152033;
  --vehw-r:       16px;
  --vehw-sh-sm:   0 1px 4px rgba(0,0,0,.06);
  --vehw-sh-md:   0 4px 18px rgba(0,0,0,.1);
  --vehw-sh-lg:   0 10px 40px rgba(0,0,0,.14);
  --vehw-font:    'Nunito','Quicksand',sans-serif;
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
body.vehw-page { font-family: var(--vehw-font); background: var(--vehw-bg); color: var(--vehw-g800); min-height: 100vh; }

/* ── NAV ───────────────────────────────────────── */
.vehw-nav { position: sticky; top: 0; z-index: 200; background: var(--vehw-white); border-bottom: 1px solid var(--vehw-g200); box-shadow: var(--vehw-sh-sm); }
.vehw-nav-inner { max-width: 1440px; margin: 0 auto; display: flex; align-items: center; gap: 1rem; padding: 0 1.5rem; height: 64px; }
.vehw-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.vehw-logo-icon { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #1E6FCC, #4A6FA5); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.vehw-logo-text { font-weight: 900; font-size: 1.1rem; color: var(--vehw-g800); line-height: 1; }
.vehw-logo-text span { color: var(--vehw-blue); }
.vehw-nav-links { display: flex; gap: 2px; flex: 1; flex-wrap: wrap; }
.vehw-nav-links a { font-size: .85rem; font-weight: 600; color: var(--vehw-g600); text-decoration: none; padding: .4rem .85rem; border-radius: 8px; transition: background .15s, color .15s; white-space: nowrap; }
.vehw-nav-links a:hover { background: var(--vehw-g100); color: var(--vehw-g800); }
.vehw-nav-links a.active { color: var(--vehw-blue); background: var(--vehw-blue-l); }
.vehw-nav-drop { position: relative; }
.vehw-nav-drop > a { display: flex; align-items: center; gap: 3px; }
.vehw-drop-menu { position: absolute; top: calc(100% + 4px); left: 0; background: var(--vehw-white); border: 1px solid var(--vehw-g200); border-radius: 12px; box-shadow: var(--vehw-sh-lg); min-width: 200px; padding: 6px 0; z-index: 300; opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity .18s, transform .18s; }
.vehw-nav-drop:hover .vehw-drop-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.vehw-drop-menu a { display: flex; align-items: center; gap: 8px; padding: 8px 14px; font-size: .85rem; font-weight: 600; color: var(--vehw-g600); text-decoration: none; transition: background .12s; }
.vehw-drop-menu a:hover { background: var(--vehw-blue-l); color: var(--vehw-blue); }

/* ── HERO ───────────────────────────────────────── */
.vehw-hero { background: linear-gradient(135deg, #0A2540 0%, #1E6FCC 55%, #4A6FA5 100%); padding: 3.5rem 1.5rem 3rem; text-align: center; position: relative; overflow: hidden; }
.vehw-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 80%, rgba(30,111,204,.25), transparent 55%), radial-gradient(ellipse at 80% 20%, rgba(255,255,255,.07), transparent 50%); pointer-events: none; }
.vehw-hero-icons { font-size: 1.8rem; letter-spacing: .4rem; margin-bottom: .75rem; opacity: .9; position: relative; }
.vehw-hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; color: #fff; margin-bottom: .6rem; position: relative; }
.vehw-hero p { font-size: 1rem; color: rgba(255,255,255,.88); max-width: 680px; margin: 0 auto 2rem; line-height: 1.7; position: relative; }
.vehw-hero-btns { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; position: relative; }
.vehw-hero-btn { display: inline-flex; align-items: center; gap: 8px; padding: .75rem 1.75rem; border-radius: 12px; font-size: .95rem; font-weight: 800; border: none; cursor: pointer; transition: all .2s; text-decoration: none; font-family: var(--vehw-font); }
.vehw-hero-btn.primary { background: white; color: var(--vehw-blue-d); box-shadow: 0 4px 14px rgba(0,0,0,.22); }
.vehw-hero-btn.primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.28); }
.vehw-hero-btn.ghost { background: rgba(255,255,255,.16); color: #fff; border: 2px solid rgba(255,255,255,.45); }
.vehw-hero-btn.ghost:hover { background: rgba(255,255,255,.26); }
.vehw-hero-btn.kids { background: #f59e0b; color: #1e3a5f; border: none; box-shadow: 0 4px 14px rgba(245,158,11,.4); }
.vehw-hero-btn.kids:hover { background: #fbbf24; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(245,158,11,.5); }
.vehw-hero-btn.activity { background: #7c3aed; color: #fff; border: none; box-shadow: 0 4px 14px rgba(124,58,237,.4); }
.vehw-hero-btn.activity:hover { background: #6d28d9; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(124,58,237,.5); }

/* ── BREADCRUMB ────────────────────────────────── */
.vehw-breadcrumb { max-width: 1440px; margin: 0 auto; padding: .6rem 1.5rem; font-size: .8rem; color: var(--vehw-g400); }
.vehw-breadcrumb a { color: var(--vehw-blue); text-decoration: none; }
.vehw-breadcrumb a:hover { text-decoration: underline; }
.vehw-breadcrumb span { margin: 0 .4rem; }

/* ── MAIN LAYOUT ────────────────────────────────── */
#vehw-main { max-width: 1440px; margin: 0 auto; padding: 1.5rem 1.5rem 4rem; }
.vehw-layout { display: grid; grid-template-columns: 260px 1fr 280px; gap: 1.5rem; align-items: start; }

@media (max-width: 1100px) {
  .vehw-layout { grid-template-columns: 230px 1fr; }
  .vehw-layout > aside:last-child { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .vehw-layout { grid-template-columns: 1fr; }
}

/* ── PANEL ──────────────────────────────────────── */
.vehw-panel { background: var(--vehw-white); border: 1px solid var(--vehw-g200); border-radius: var(--vehw-r); padding: 1rem; margin-bottom: 1rem; box-shadow: var(--vehw-sh-sm); }
.vehw-panel-title { font-size: .82rem; font-weight: 800; color: var(--vehw-g600); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .75rem; }
.vehw-panel-body { display: flex; flex-direction: column; gap: .5rem; }

/* ── DAILY VEHICLE ──────────────────────────────── */
.vehw-daily-card { background: linear-gradient(135deg, #D6E8FF, #EEF5FF); border: 1px solid var(--vehw-g200); border-radius: var(--vehw-r); padding: 1rem; text-align: center; margin-bottom: 1rem; box-shadow: var(--vehw-sh-sm); }
.vehw-daily-label { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--vehw-blue); margin-bottom: .4rem; }
.vehw-daily-emoji { font-size: 2.8rem; margin-bottom: .3rem; line-height: 1; }
.vehw-daily-name { font-weight: 900; font-size: 1.05rem; color: var(--vehw-g800); margin-bottom: .3rem; }
.vehw-daily-fact { font-size: .78rem; color: var(--vehw-g600); line-height: 1.5; }

/* ── SEARCH ─────────────────────────────────────── */
.vehw-search { width: 100%; padding: .5rem .75rem; border: 1.5px solid var(--vehw-g200); border-radius: 10px; font-size: .85rem; font-family: var(--vehw-font); background: var(--vehw-g50); outline: none; transition: border-color .15s; }
.vehw-search:focus { border-color: var(--vehw-blue); }
.vehw-count-label { font-size: .75rem; color: var(--vehw-g400); font-weight: 600; text-align: right; }

/* ── CATEGORY CHIPS ─────────────────────────────── */
.vehw-cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .35rem; margin-top: .4rem; }
.vehw-cat-chip { display: flex; align-items: center; gap: 6px; padding: .45rem .6rem; border: 1.5px solid var(--vehw-g200); border-radius: 9px; cursor: pointer; font-size: .78rem; font-weight: 700; color: var(--vehw-g600); transition: all .15s; user-select: none; }
.vehw-cat-chip input { display: none; }
.vehw-cat-chip.active { border-color: var(--vehw-blue); color: var(--vehw-blue); background: var(--vehw-blue-l); }
.vehw-cat-chip:hover { border-color: var(--vehw-blue); }

/* ── TOGGLE ─────────────────────────────────────── */
.vehw-toggle-row { display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding: .4rem 0; border-bottom: 1px solid var(--vehw-g100); }
.vehw-toggle-row:last-child { border-bottom: none; }
.vtr-label { font-size: .82rem; font-weight: 700; color: var(--vehw-g700); }
.vtr-sub { font-size: .72rem; color: var(--vehw-g400); margin-top: 1px; }
.vehw-toggle { position: relative; display: inline-block; width: 38px; height: 22px; flex-shrink: 0; }
.vehw-toggle input { opacity: 0; width: 0; height: 0; }
.vehw-toggle-sl { position: absolute; inset: 0; background: var(--vehw-g200); border-radius: 22px; cursor: pointer; transition: background .2s; }
.vehw-toggle-sl::before { content: ''; position: absolute; width: 16px; height: 16px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: transform .2s; box-shadow: 0 1px 3px rgba(0,0,0,.2); }
.vehw-toggle input:checked + .vehw-toggle-sl { background: var(--vehw-blue); }
.vehw-toggle input:checked + .vehw-toggle-sl::before { transform: translateX(16px); }

/* ── WHEEL CENTRE ───────────────────────────────── */
.vehw-center { display: flex; flex-direction: column; align-items: center; }
.vehw-wheel-section { position: relative; width: 100%; }
.vehw-wheel-wrap { position: relative; display: flex; justify-content: center; align-items: center; margin: 0 auto; width: fit-content; }
.vehw-needle { position: absolute; top: -8px; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 13px solid transparent; border-right: 13px solid transparent; border-top: 36px solid var(--vehw-orange); filter: drop-shadow(0 2px 4px rgba(0,0,0,.3)); z-index: 10; }
.vehw-wheel-canvas { display: block; border-radius: 50%; box-shadow: 0 8px 40px rgba(0,0,0,.18); cursor: pointer; transition: transform .1s; }
.vehw-wheel-canvas:hover { transform: scale(1.012); }

/* ── WINNER OVERLAY ─────────────────────────────── */
.vehw-winner-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55); display: flex; align-items: center; justify-content: center; z-index: 500; opacity: 0; pointer-events: none; transition: opacity .3s; }
.vehw-winner-overlay.show { opacity: 1; pointer-events: all; }
.vehw-winner-card { background: var(--vehw-white); border-radius: 20px; padding: 1.5rem 1.75rem 1.25rem; text-align: center; max-width: 340px; width: 90%; box-shadow: var(--vehw-sh-lg); animation: __vehwpop .35s cubic-bezier(.175,.885,.32,1.275); }
@keyframes __vehwpop { from { transform: scale(.7); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.vwc-emoji { font-size: 3.8rem; line-height: 1; margin-bottom: .3rem; }
.vwc-winner-label { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--vehw-blue); margin-bottom: .2rem; }
.vwc-name { font-size: 2rem; font-weight: 900; color: var(--vehw-g800); margin-bottom: .4rem; }
.vwc-category { display: inline-block; background: var(--vehw-blue-l); color: var(--vehw-blue); font-size: .75rem; font-weight: 800; padding: .2rem .7rem; border-radius: 20px; margin-bottom: .5rem; }
.vwc-fact { font-size: .85rem; color: var(--vehw-g600); line-height: 1.55; margin-bottom: .75rem; }
.vehw-quiz-panel { margin-bottom: .5rem; }
.vehw-quiz-q { font-weight: 800; font-size: .88rem; color: var(--vehw-g700); margin-bottom: .5rem; }
.vehw-quiz-opts { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem; }
.vqo-opt { padding: .4rem .5rem; border: 1.5px solid var(--vehw-g200); border-radius: 9px; font-family: var(--vehw-font); font-size: .8rem; font-weight: 700; cursor: pointer; background: var(--vehw-g50); color: var(--vehw-g700); transition: all .15s; }
.vqo-opt:hover:not(:disabled) { border-color: var(--vehw-blue); background: var(--vehw-blue-l); }
.vqo-opt.correct { background: #d1fae5; border-color: #059669; color: #065f46; }
.vqo-opt.wrong { background: #fee2e2; border-color: #dc2626; color: #991b1b; }
.vwc-actions { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; }
.vwc-btn { padding: .45rem 1rem; border-radius: 10px; border: none; font-family: var(--vehw-font); font-size: .82rem; font-weight: 800; cursor: pointer; transition: all .18s; }
.vwc-btn.spin-again { background: var(--vehw-blue); color: #fff; }
.vwc-btn.spin-again:hover { background: var(--vehw-blue-d); transform: translateY(-1px); }
.vwc-btn.speak-btn { background: var(--vehw-green-l); color: var(--vehw-green); }
.vwc-btn.remove-btn { background: #fee2e2; color: #dc2626; }
.vwc-btn.close-btn { background: var(--vehw-g100); color: var(--vehw-g600); }

/* ── SPIN BUTTON ────────────────────────────────── */
.vehw-spin-btn { display: block; width: 260px; padding: 1rem; margin: 1.25rem auto .75rem; font-family: var(--vehw-font); font-size: 1.2rem; font-weight: 900; color: #fff; background: linear-gradient(135deg, var(--vehw-blue), var(--vehw-steel)); border: none; border-radius: 50px; cursor: pointer; box-shadow: 0 6px 20px rgba(30,111,204,.4); transition: all .2s; letter-spacing: .04em; }
.vehw-spin-btn:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 10px 28px rgba(30,111,204,.5); }
.vehw-spin-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* ── WHEEL ACTION BUTTONS ───────────────────────── */
.vehw-wheel-actions { display: flex; gap: .5rem; margin: .5rem 0; justify-content: center; }
.vehw-wh-btn { padding: .45rem 1.1rem; border-radius: 10px; border: 1.5px solid var(--vehw-g200); background: var(--vehw-white); color: var(--vehw-g700); font-family: var(--vehw-font); font-size: .82rem; font-weight: 700; cursor: pointer; transition: all .15s; }
.vehw-wh-btn:hover { border-color: var(--vehw-blue); color: var(--vehw-blue); background: var(--vehw-blue-l); }

/* ── FAB (floating action buttons) ─────────────── */
.vehw-fab-group { display: flex; gap: .5rem; justify-content: center; margin: .5rem 0 1rem; }
.vehw-fab { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--vehw-g200); background: var(--vehw-white); color: var(--vehw-g600); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .18s; box-shadow: var(--vehw-sh-sm); }
.vehw-fab:hover { border-color: var(--vehw-blue); color: var(--vehw-blue); background: var(--vehw-blue-l); }
.vehw-fab.active { border-color: var(--vehw-blue); color: var(--vehw-blue); background: var(--vehw-blue-l); }

/* ── RIGHT PANEL (entries/results/settings) ─────── */
.vehw-cp-panel { background: var(--vehw-white); border: 1px solid var(--vehw-g200); border-radius: var(--vehw-r); box-shadow: var(--vehw-sh-sm); overflow: hidden; }
.vehw-cp-tabs { display: flex; border-bottom: 1px solid var(--vehw-g200); }
.vehw-cp-tab { flex: 1; padding: .6rem .3rem; border: none; background: none; font-family: var(--vehw-font); font-size: .78rem; font-weight: 700; color: var(--vehw-g400); cursor: pointer; transition: all .15s; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.vehw-cp-tab.active { color: var(--vehw-blue); border-bottom-color: var(--vehw-blue); background: var(--vehw-g50); }
.vehw-cp-tab:hover:not(.active) { color: var(--vehw-g700); }
.vehw-cp-tab-actions { display: flex; gap: 4px; align-items: center; padding: 0 6px; }
.vehw-cp-icon-btn { width: 28px; height: 28px; border-radius: 7px; border: 1px solid var(--vehw-g200); background: none; color: var(--vehw-g600); cursor: pointer; font-size: .85rem; transition: all .12s; display: flex; align-items: center; justify-content: center; }
.vehw-cp-icon-btn:hover { background: var(--vehw-blue-l); color: var(--vehw-blue); }
.vehw-cp-body { padding: .75rem; }
.vehw-tab-content { display: none; }
.vehw-tab-content.active { display: block; }

/* ── ENTRIES TAB ────────────────────────────────── */
.vehw-entries-count { font-size: .75rem; font-weight: 700; color: var(--vehw-g400); margin-bottom: .4rem; }
.vehw-entry-search-row { display: flex; gap: .4rem; margin-bottom: .5rem; }
.vehw-entry-search { flex: 1; padding: .4rem .6rem; border: 1.5px solid var(--vehw-g200); border-radius: 9px; font-size: .82rem; font-family: var(--vehw-font); outline: none; transition: border-color .15s; }
.vehw-entry-search:focus { border-color: var(--vehw-blue); }
.vehw-btn-add { padding: .4rem .7rem; border-radius: 9px; border: none; background: var(--vehw-blue); color: #fff; font-family: var(--vehw-font); font-size: .82rem; font-weight: 800; cursor: pointer; white-space: nowrap; }
.vehw-btn-add:hover { background: var(--vehw-blue-d); }
.vehw-entry-list { max-height: 260px; overflow-y: auto; display: flex; flex-direction: column; gap: 3px; margin-bottom: .5rem; }
.vehw-entry-item { display: flex; align-items: center; gap: .4rem; padding: .35rem .5rem; border-radius: 9px; border: 1px solid transparent; font-size: .82rem; font-weight: 700; color: var(--vehw-g700); transition: background .12s; }
.vehw-entry-item:hover { background: var(--vehw-g50); }
.vehw-entry-item.hidden-item { opacity: .4; }
.vehw-entry-em { font-size: 1.1rem; flex-shrink: 0; }
.vehw-entry-name { flex: 1; }
.vehw-entry-vis { width: 22px; height: 22px; border: none; background: none; cursor: pointer; font-size: .85rem; opacity: .5; border-radius: 5px; display: flex; align-items: center; justify-content: center; transition: all .12s; }
.vehw-entry-vis:hover { opacity: 1; background: var(--vehw-g100); }
.vehw-entry-del { width: 22px; height: 22px; border: none; background: none; cursor: pointer; font-size: .8rem; color: var(--vehw-red); opacity: .4; border-radius: 5px; display: flex; align-items: center; justify-content: center; transition: all .12s; }
.vehw-entry-del:hover { opacity: 1; background: #fee2e2; }
.vehw-entries-footer { display: flex; flex-wrap: wrap; gap: .35rem; padding-top: .4rem; border-top: 1px solid var(--vehw-g100); }
.vehw-btn-sm { padding: .3rem .65rem; border-radius: 8px; border: 1.5px solid var(--vehw-g200); background: var(--vehw-white); font-family: var(--vehw-font); font-size: .77rem; font-weight: 700; color: var(--vehw-g600); cursor: pointer; transition: all .12s; }
.vehw-btn-sm:hover { border-color: var(--vehw-blue); color: var(--vehw-blue); }
.vehw-btn-danger { border-color: #fca5a5; color: var(--vehw-red); }
.vehw-btn-danger:hover { background: #fee2e2; border-color: var(--vehw-red); }

/* ── RESULTS TAB ────────────────────────────────── */
.vehw-results-label { font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--vehw-g400); margin: .5rem 0 .3rem; }
.vehw-results-empty { text-align: center; font-size: .82rem; color: var(--vehw-g400); padding: 1rem .5rem; }
.vehw-learn-card { background: var(--vehw-g50); border: 1px solid var(--vehw-g200); border-radius: 12px; padding: .75rem; margin-bottom: .4rem; }
.vehw-learn-em { font-size: 2rem; margin-bottom: .3rem; line-height: 1; }
.vehw-learn-name { font-size: 1.05rem; font-weight: 900; color: var(--vehw-g800); margin-bottom: .3rem; }
.vehw-learn-cat { display: inline-block; background: var(--vehw-blue-l); color: var(--vehw-blue); font-size: .72rem; font-weight: 800; padding: .15rem .6rem; border-radius: 20px; margin-bottom: .35rem; }
.vehw-learn-fact { font-size: .8rem; color: var(--vehw-g600); line-height: 1.55; }
.vehw-hist-item { display: flex; align-items: center; gap: .4rem; padding: .3rem .4rem; border-radius: 8px; font-size: .82rem; font-weight: 700; color: var(--vehw-g700); }
.vehw-hist-item:nth-child(odd) { background: var(--vehw-g50); }
.vehw-hist-num { font-size: .7rem; font-weight: 800; color: var(--vehw-g400); min-width: 20px; }
.vehw-progress-wrap { height: 8px; background: var(--vehw-g200); border-radius: 8px; overflow: hidden; margin-bottom: .35rem; }
.vehw-progress-bar { height: 100%; background: linear-gradient(90deg, var(--vehw-blue), var(--vehw-steel)); border-radius: 8px; transition: width .4s ease; }
.vehw-progress-stats { display: flex; justify-content: space-between; font-size: .75rem; font-weight: 700; color: var(--vehw-g400); margin-bottom: .4rem; }
.vehw-results-footer { display: flex; flex-wrap: wrap; gap: .35rem; padding-top: .4rem; border-top: 1px solid var(--vehw-g100); margin-top: .4rem; }

/* ── SETTINGS TAB ───────────────────────────────── */
.vehw-settings-label { font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--vehw-g400); margin: .6rem 0 .3rem; }

/* ── IMPORT OVERLAY ─────────────────────────────── */
.vehw-import-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); display: flex; align-items: center; justify-content: center; z-index: 600; opacity: 0; pointer-events: none; transition: opacity .2s; }
.vehw-import-overlay.show { opacity: 1; pointer-events: all; }
.vehw-import-box { background: var(--vehw-white); border-radius: 16px; padding: 1.5rem; max-width: 360px; width: 90%; box-shadow: var(--vehw-sh-lg); }
.vehw-import-ta { width: 100%; padding: .6rem .75rem; border: 1.5px solid var(--vehw-g200); border-radius: 10px; font-family: var(--vehw-font); font-size: .85rem; resize: vertical; outline: none; margin-bottom: .75rem; }
.vehw-import-ta:focus { border-color: var(--vehw-blue); }
.vehw-import-actions { display: flex; gap: .5rem; justify-content: flex-end; }
.vehw-import-do { padding: .5rem 1.1rem; background: var(--vehw-blue); color: #fff; border: none; border-radius: 10px; font-family: var(--vehw-font); font-size: .85rem; font-weight: 800; cursor: pointer; }
.vehw-import-do:hover { background: var(--vehw-blue-d); }
.vehw-import-cancel { padding: .5rem 1.1rem; background: var(--vehw-g100); color: var(--vehw-g600); border: none; border-radius: 10px; font-family: var(--vehw-font); font-size: .85rem; font-weight: 700; cursor: pointer; }

/* ── TOAST ──────────────────────────────────────── */
#vehw-toast { position: fixed; bottom: 1.25rem; left: 50%; transform: translateX(-50%); background: var(--vehw-g800); color: #fff; padding: .55rem 1.25rem; border-radius: 50px; font-size: .85rem; font-weight: 700; z-index: 700; opacity: 0; transition: opacity .25s; pointer-events: none; white-space: nowrap; }
#vehw-toast.show { opacity: 1; }

/* ── CONTENT SECTIONS ───────────────────────────── */
.vehw-content { max-width: 900px; margin: 0 auto; padding: 0 1.5rem 3rem; }
.vehw-section { background: var(--vehw-white); border: 1px solid var(--vehw-g200); border-radius: var(--vehw-r); padding: 2rem; margin-bottom: 1.5rem; box-shadow: var(--vehw-sh-sm); }
.vehw-section h2 { font-size: 1.4rem; font-weight: 900; color: var(--vehw-g800); margin-bottom: .75rem; }
.vehw-section h3 { font-size: 1.05rem; font-weight: 800; color: var(--vehw-g700); margin: 1rem 0 .4rem; }
.vehw-section p { font-size: .92rem; color: var(--vehw-g600); line-height: 1.7; margin-bottom: .6rem; }
.vehw-section ul, .vehw-section ol { padding-left: 1.3rem; margin-bottom: .6rem; }
.vehw-section li { font-size: .92rem; color: var(--vehw-g600); line-height: 1.7; margin-bottom: .25rem; }
.vehw-section strong { color: var(--vehw-g800); }
.vehw-section a { color: var(--vehw-blue); }
.vehw-section a:hover { color: var(--vehw-blue-d); }

/* ── HOW-TO GRID ────────────────────────────────── */
.vehw-how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-top: 1rem; }
.vehw-how-card { background: var(--vehw-g50); border: 1px solid var(--vehw-g200); border-radius: 12px; padding: 1rem; text-align: center; }
.vehw-how-num { width: 36px; height: 36px; background: linear-gradient(135deg, var(--vehw-blue), var(--vehw-steel)); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 900; margin: 0 auto .5rem; }
.vehw-how-card h3 { font-size: .9rem; font-weight: 800; color: var(--vehw-g800); margin-bottom: .3rem; }
.vehw-how-card p { font-size: .8rem; color: var(--vehw-g600); line-height: 1.5; margin: 0; }

/* ── USE CASE GRID ──────────────────────────────── */
.vehw-use-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-top: 1rem; }
.vehw-use-card { background: var(--vehw-g50); border: 1px solid var(--vehw-g200); border-radius: 12px; padding: 1rem; }
.vehw-use-card h3 { font-size: .95rem; font-weight: 800; color: var(--vehw-g800); margin-bottom: .4rem; }
.vehw-use-card p { font-size: .82rem; color: var(--vehw-g600); line-height: 1.55; margin: 0; }

/* ── CATEGORY GRID ──────────────────────────────── */
.vehw-cat-desc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-top: 1rem; }
.vehw-cat-desc-card { background: var(--vehw-g50); border: 1px solid var(--vehw-g200); border-radius: 12px; padding: 1rem; }
.vehw-cat-desc-card h3 { font-size: .92rem; font-weight: 800; color: var(--vehw-g800); margin-bottom: .3rem; }
.vehw-cat-desc-card p { font-size: .8rem; color: var(--vehw-g600); line-height: 1.5; margin: 0; }
.vehw-cat-examples { display: flex; flex-wrap: wrap; gap: .3rem; margin-top: .4rem; }
.vehw-cat-tag { background: var(--vehw-blue-l); color: var(--vehw-blue); font-size: .72rem; font-weight: 800; padding: .15rem .55rem; border-radius: 20px; }

/* ── FAQ ────────────────────────────────────────── */
.vehw-faq-list { display: flex; flex-direction: column; gap: .5rem; }
.vehw-faq-item { border: 1px solid var(--vehw-g200); border-radius: 12px; overflow: hidden; }
.vehw-faq-q { width: 100%; text-align: left; padding: .9rem 1rem; background: var(--vehw-g50); border: none; font-family: var(--vehw-font); font-size: .9rem; font-weight: 800; color: var(--vehw-g800); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: .5rem; transition: background .15s; }
.vehw-faq-q:hover { background: var(--vehw-blue-l); color: var(--vehw-blue); }
.vehw-faq-arrow { font-size: .8rem; color: var(--vehw-g400); transition: transform .2s; flex-shrink: 0; }
.vehw-faq-arrow.open { transform: rotate(180deg); }
.vehw-faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.vehw-faq-a.open { max-height: 400px; }
.vehw-faq-a span { display: block; padding: .75rem 1rem; font-size: .87rem; color: var(--vehw-g600); line-height: 1.65; border-top: 1px solid var(--vehw-g200); }

/* ── RELATED WHEELS ─────────────────────────────── */
.vehw-related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: .75rem; margin-top: 1rem; }
.vehw-related-card { display: flex; flex-direction: column; align-items: center; gap: .35rem; padding: .85rem .5rem; background: var(--vehw-g50); border: 1px solid var(--vehw-g200); border-radius: 12px; text-decoration: none; color: var(--vehw-g700); font-size: .82rem; font-weight: 700; transition: all .18s; text-align: center; }
.vehw-related-card:hover { border-color: var(--vehw-blue); background: var(--vehw-blue-l); color: var(--vehw-blue); transform: translateY(-2px); box-shadow: var(--vehw-sh-md); }
.vehw-related-card span:first-child { font-size: 1.7rem; }

/* ── FOOTER ─────────────────────────────────────── */
.vehw-footer { background: var(--vehw-g800); color: rgba(255,255,255,.6); font-size: .82rem; text-align: center; padding: 1.5rem 1.5rem; line-height: 1.8; }
.vehw-footer a { color: rgba(255,255,255,.75); text-decoration: none; }
.vehw-footer a:hover { color: #fff; text-decoration: underline; }

/* ── MOBILE ─────────────────────────────────────── */
@media (max-width: 480px) {
  .vehw-hero { padding: 2rem 1rem 1.75rem; }
  .vehw-hero h1 { font-size: 1.7rem; }
  .vehw-hero-btns { flex-direction: column; align-items: center; }
  #vehw-main { padding: 1rem 1rem 3rem; }
  .vehw-content { padding: 0 1rem 2rem; }
  .vehw-section { padding: 1.25rem 1rem; }
  .vehw-spin-btn { width: 100%; max-width: 300px; }
  .vehw-winner-card { padding: 1.25rem 1.25rem 1rem; }
  .vwc-name { font-size: 1.5rem; }
  .vehw-quiz-opts { grid-template-columns: 1fr; }
  .vehw-cat-grid { grid-template-columns: 1fr 1fr; }
  .vehw-how-grid { grid-template-columns: 1fr; }
}

/* ── SKIP LINK ──────────────────────────────────── */
.vehw-skip { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--vehw-blue); color: #fff; padding: .5rem 1rem; border-radius: 0 0 8px 0; text-decoration: none; font-weight: 800; }
.vehw-skip:focus { left: 0; }

/* ── FULLSCREEN MODE ────────────────────────────── */
body.vehw-fullscreen {
  background: #0a0a14;
  overflow: hidden;
}
body.vehw-fullscreen .vehw-nav,
body.vehw-fullscreen .vehw-hero,
body.vehw-fullscreen .vehw-breadcrumb,
body.vehw-fullscreen .vehw-content,
body.vehw-fullscreen .vehw-footer,
body.vehw-fullscreen #vehw-main > .vehw-layout > aside {
  display: none !important;
}
body.vehw-fullscreen #vehw-main {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background: #0a0a14;
}
body.vehw-fullscreen .vehw-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  grid-template-columns: none !important;
  gap: 0;
}
body.vehw-fullscreen .vehw-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  width: 100vw;
  height: 100vh;
}
body.vehw-fullscreen .vehw-wheel-wrap {
  position: relative;
}
body.vehw-fullscreen .vehw-wheel-canvas {
  display: block;
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(30,111,204,.45);
}
body.vehw-fullscreen .vehw-spin-btn {
  font-size: 1.3rem;
  padding: .9rem 3rem;
}
body.vehw-fullscreen .vehw-wheel-actions,
body.vehw-fullscreen .vehw-fab-group,
body.vehw-fullscreen ins.adsbygoogle,
body.vehw-fullscreen .vehw-winner-overlay {
  /* keep visible; winner overlay renders over fullscreen body */
}
body.vehw-fullscreen .vehw-fab-group {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  flex-direction: row;
  z-index: 9999;
}
body.vehw-fullscreen ins.adsbygoogle { display: none !important; }
body.vehw-fullscreen #vehw-action-fullscreen { background: var(--vehw-orange); }
