/* Layout grid (mobile-first; breakpoints 576/768/992/1200/1400). */
:root {
  --ty-gutter-x: 1.5rem;
  --ty-gutter-y: 0;
}

/* ---------- Container ---------- */
.ty-container,
.ty-container-fluid,
.ty-container-sm,
.ty-container-md,
.ty-container-lg,
.ty-container-xl,
.ty-container-xxl {
  width: 100%;
  padding-right: calc(var(--ty-gutter-x) * .5);
  padding-left: calc(var(--ty-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .ty-container,
  .ty-container-sm { max-width: 540px; }
}
@media (min-width: 768px) {
  .ty-container,
  .ty-container-sm,
  .ty-container-md { max-width: 720px; }
}
@media (min-width: 992px) {
  .ty-container,
  .ty-container-sm,
  .ty-container-md,
  .ty-container-lg { max-width: 960px; }
}
@media (min-width: 1200px) {
  .ty-container,
  .ty-container-sm,
  .ty-container-md,
  .ty-container-lg,
  .ty-container-xl { max-width: 1140px; }
}
@media (min-width: 1400px) {
  .ty-container,
  .ty-container-sm,
  .ty-container-md,
  .ty-container-lg,
  .ty-container-xl,
  .ty-container-xxl { max-width: 1320px; }
}

/* ---------- Row ---------- */
.ty-row {
  --ty-gutter-x: 1.5rem;
  --ty-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--ty-gutter-y) * -1);
  margin-right: calc(var(--ty-gutter-x) * -.5);
  margin-left: calc(var(--ty-gutter-x) * -.5);
}
.ty-row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--ty-gutter-x) * .5);
  padding-left: calc(var(--ty-gutter-x) * .5);
  margin-top: var(--ty-gutter-y);
}

/* ---------- Cols (xs, mobile baseline) ---------- */
.ty-col       { flex: 1 0 0%; }
.ty-col-auto  { flex: 0 0 auto; width: auto; }
.ty-col-1  { flex: 0 0 auto; width: 8.33333333%; }
.ty-col-2  { flex: 0 0 auto; width: 16.66666667%; }
.ty-col-3  { flex: 0 0 auto; width: 25%; }
.ty-col-4  { flex: 0 0 auto; width: 33.33333333%; }
.ty-col-5  { flex: 0 0 auto; width: 41.66666667%; }
.ty-col-6  { flex: 0 0 auto; width: 50%; }
.ty-col-7  { flex: 0 0 auto; width: 58.33333333%; }
.ty-col-8  { flex: 0 0 auto; width: 66.66666667%; }
.ty-col-9  { flex: 0 0 auto; width: 75%; }
.ty-col-10 { flex: 0 0 auto; width: 83.33333333%; }
.ty-col-11 { flex: 0 0 auto; width: 91.66666667%; }
.ty-col-12 { flex: 0 0 auto; width: 100%; }

/* ---------- Offsets (xs) ---------- */
.ty-offset-1  { margin-left: 8.33333333%; }
.ty-offset-2  { margin-left: 16.66666667%; }
.ty-offset-3  { margin-left: 25%; }
.ty-offset-4  { margin-left: 33.33333333%; }
.ty-offset-5  { margin-left: 41.66666667%; }
.ty-offset-6  { margin-left: 50%; }
.ty-offset-7  { margin-left: 58.33333333%; }
.ty-offset-8  { margin-left: 66.66666667%; }
.ty-offset-9  { margin-left: 75%; }
.ty-offset-10 { margin-left: 83.33333333%; }
.ty-offset-11 { margin-left: 91.66666667%; }

/* ---------- Order (xs) ---------- */
.ty-order-first { order: -1; }
.ty-order-last  { order: 6; }
.ty-order-0 { order: 0; }
.ty-order-1 { order: 1; }
.ty-order-2 { order: 2; }
.ty-order-3 { order: 3; }
.ty-order-4 { order: 4; }
.ty-order-5 { order: 5; }

/* ---------- Gutters (xs) ---------- */
.ty-g-0,  .ty-gx-0 { --ty-gutter-x: 0; }
.ty-g-0,  .ty-gy-0 { --ty-gutter-y: 0; }
.ty-g-1,  .ty-gx-1 { --ty-gutter-x: .25rem; }
.ty-g-1,  .ty-gy-1 { --ty-gutter-y: .25rem; }
.ty-g-2,  .ty-gx-2 { --ty-gutter-x: .5rem; }
.ty-g-2,  .ty-gy-2 { --ty-gutter-y: .5rem; }
.ty-g-3,  .ty-gx-3 { --ty-gutter-x: 1rem; }
.ty-g-3,  .ty-gy-3 { --ty-gutter-y: 1rem; }
.ty-g-4,  .ty-gx-4 { --ty-gutter-x: 1.5rem; }
.ty-g-4,  .ty-gy-4 { --ty-gutter-y: 1.5rem; }
.ty-g-5,  .ty-gx-5 { --ty-gutter-x: 3rem; }
.ty-g-5,  .ty-gy-5 { --ty-gutter-y: 3rem; }

/* ============================================================
   sm (>= 576px)
   ============================================================ */
@media (min-width: 576px) {
  .ty-col-sm       { flex: 1 0 0%; }
  .ty-col-sm-auto  { flex: 0 0 auto; width: auto; }
  .ty-col-sm-1  { flex: 0 0 auto; width: 8.33333333%; }
  .ty-col-sm-2  { flex: 0 0 auto; width: 16.66666667%; }
  .ty-col-sm-3  { flex: 0 0 auto; width: 25%; }
  .ty-col-sm-4  { flex: 0 0 auto; width: 33.33333333%; }
  .ty-col-sm-5  { flex: 0 0 auto; width: 41.66666667%; }
  .ty-col-sm-6  { flex: 0 0 auto; width: 50%; }
  .ty-col-sm-7  { flex: 0 0 auto; width: 58.33333333%; }
  .ty-col-sm-8  { flex: 0 0 auto; width: 66.66666667%; }
  .ty-col-sm-9  { flex: 0 0 auto; width: 75%; }
  .ty-col-sm-10 { flex: 0 0 auto; width: 83.33333333%; }
  .ty-col-sm-11 { flex: 0 0 auto; width: 91.66666667%; }
  .ty-col-sm-12 { flex: 0 0 auto; width: 100%; }
  .ty-offset-sm-0  { margin-left: 0; }
  .ty-offset-sm-1  { margin-left: 8.33333333%; }
  .ty-offset-sm-2  { margin-left: 16.66666667%; }
  .ty-offset-sm-3  { margin-left: 25%; }
  .ty-offset-sm-4  { margin-left: 33.33333333%; }
  .ty-offset-sm-5  { margin-left: 41.66666667%; }
  .ty-offset-sm-6  { margin-left: 50%; }
  .ty-offset-sm-7  { margin-left: 58.33333333%; }
  .ty-offset-sm-8  { margin-left: 66.66666667%; }
  .ty-offset-sm-9  { margin-left: 75%; }
  .ty-offset-sm-10 { margin-left: 83.33333333%; }
  .ty-offset-sm-11 { margin-left: 91.66666667%; }
  .ty-order-sm-first { order: -1; }
  .ty-order-sm-last  { order: 6; }
  .ty-order-sm-0 { order: 0; }
  .ty-order-sm-1 { order: 1; }
  .ty-order-sm-2 { order: 2; }
  .ty-order-sm-3 { order: 3; }
  .ty-order-sm-4 { order: 4; }
  .ty-order-sm-5 { order: 5; }
}

/* ============================================================
   md (>= 768px)
   ============================================================ */
@media (min-width: 768px) {
  .ty-col-md       { flex: 1 0 0%; }
  .ty-col-md-auto  { flex: 0 0 auto; width: auto; }
  .ty-col-md-1  { flex: 0 0 auto; width: 8.33333333%; }
  .ty-col-md-2  { flex: 0 0 auto; width: 16.66666667%; }
  .ty-col-md-3  { flex: 0 0 auto; width: 25%; }
  .ty-col-md-4  { flex: 0 0 auto; width: 33.33333333%; }
  .ty-col-md-5  { flex: 0 0 auto; width: 41.66666667%; }
  .ty-col-md-6  { flex: 0 0 auto; width: 50%; }
  .ty-col-md-7  { flex: 0 0 auto; width: 58.33333333%; }
  .ty-col-md-8  { flex: 0 0 auto; width: 66.66666667%; }
  .ty-col-md-9  { flex: 0 0 auto; width: 75%; }
  .ty-col-md-10 { flex: 0 0 auto; width: 83.33333333%; }
  .ty-col-md-11 { flex: 0 0 auto; width: 91.66666667%; }
  .ty-col-md-12 { flex: 0 0 auto; width: 100%; }
  .ty-offset-md-0  { margin-left: 0; }
  .ty-offset-md-1  { margin-left: 8.33333333%; }
  .ty-offset-md-2  { margin-left: 16.66666667%; }
  .ty-offset-md-3  { margin-left: 25%; }
  .ty-offset-md-4  { margin-left: 33.33333333%; }
  .ty-offset-md-5  { margin-left: 41.66666667%; }
  .ty-offset-md-6  { margin-left: 50%; }
  .ty-offset-md-7  { margin-left: 58.33333333%; }
  .ty-offset-md-8  { margin-left: 66.66666667%; }
  .ty-offset-md-9  { margin-left: 75%; }
  .ty-offset-md-10 { margin-left: 83.33333333%; }
  .ty-offset-md-11 { margin-left: 91.66666667%; }
  .ty-order-md-first { order: -1; }
  .ty-order-md-last  { order: 6; }
  .ty-order-md-0 { order: 0; }
  .ty-order-md-1 { order: 1; }
  .ty-order-md-2 { order: 2; }
  .ty-order-md-3 { order: 3; }
  .ty-order-md-4 { order: 4; }
  .ty-order-md-5 { order: 5; }
}

/* ============================================================
   lg (>= 992px)
   ============================================================ */
@media (min-width: 992px) {
  .ty-col-lg       { flex: 1 0 0%; }
  .ty-col-lg-auto  { flex: 0 0 auto; width: auto; }
  .ty-col-lg-1  { flex: 0 0 auto; width: 8.33333333%; }
  .ty-col-lg-2  { flex: 0 0 auto; width: 16.66666667%; }
  .ty-col-lg-3  { flex: 0 0 auto; width: 25%; }
  .ty-col-lg-4  { flex: 0 0 auto; width: 33.33333333%; }
  .ty-col-lg-5  { flex: 0 0 auto; width: 41.66666667%; }
  .ty-col-lg-6  { flex: 0 0 auto; width: 50%; }
  .ty-col-lg-7  { flex: 0 0 auto; width: 58.33333333%; }
  .ty-col-lg-8  { flex: 0 0 auto; width: 66.66666667%; }
  .ty-col-lg-9  { flex: 0 0 auto; width: 75%; }
  .ty-col-lg-10 { flex: 0 0 auto; width: 83.33333333%; }
  .ty-col-lg-11 { flex: 0 0 auto; width: 91.66666667%; }
  .ty-col-lg-12 { flex: 0 0 auto; width: 100%; }
  .ty-offset-lg-0  { margin-left: 0; }
  .ty-offset-lg-1  { margin-left: 8.33333333%; }
  .ty-offset-lg-2  { margin-left: 16.66666667%; }
  .ty-offset-lg-3  { margin-left: 25%; }
  .ty-offset-lg-4  { margin-left: 33.33333333%; }
  .ty-offset-lg-5  { margin-left: 41.66666667%; }
  .ty-offset-lg-6  { margin-left: 50%; }
  .ty-offset-lg-7  { margin-left: 58.33333333%; }
  .ty-offset-lg-8  { margin-left: 66.66666667%; }
  .ty-offset-lg-9  { margin-left: 75%; }
  .ty-offset-lg-10 { margin-left: 83.33333333%; }
  .ty-offset-lg-11 { margin-left: 91.66666667%; }
  .ty-order-lg-first { order: -1; }
  .ty-order-lg-last  { order: 6; }
  .ty-order-lg-0 { order: 0; }
  .ty-order-lg-1 { order: 1; }
  .ty-order-lg-2 { order: 2; }
  .ty-order-lg-3 { order: 3; }
  .ty-order-lg-4 { order: 4; }
  .ty-order-lg-5 { order: 5; }
}

/* ============================================================
   xl (>= 1200px)
   ============================================================ */
@media (min-width: 1200px) {
  .ty-col-xl       { flex: 1 0 0%; }
  .ty-col-xl-auto  { flex: 0 0 auto; width: auto; }
  .ty-col-xl-1  { flex: 0 0 auto; width: 8.33333333%; }
  .ty-col-xl-2  { flex: 0 0 auto; width: 16.66666667%; }
  .ty-col-xl-3  { flex: 0 0 auto; width: 25%; }
  .ty-col-xl-4  { flex: 0 0 auto; width: 33.33333333%; }
  .ty-col-xl-5  { flex: 0 0 auto; width: 41.66666667%; }
  .ty-col-xl-6  { flex: 0 0 auto; width: 50%; }
  .ty-col-xl-7  { flex: 0 0 auto; width: 58.33333333%; }
  .ty-col-xl-8  { flex: 0 0 auto; width: 66.66666667%; }
  .ty-col-xl-9  { flex: 0 0 auto; width: 75%; }
  .ty-col-xl-10 { flex: 0 0 auto; width: 83.33333333%; }
  .ty-col-xl-11 { flex: 0 0 auto; width: 91.66666667%; }
  .ty-col-xl-12 { flex: 0 0 auto; width: 100%; }
  .ty-offset-xl-0  { margin-left: 0; }
  .ty-offset-xl-1  { margin-left: 8.33333333%; }
  .ty-offset-xl-2  { margin-left: 16.66666667%; }
  .ty-offset-xl-3  { margin-left: 25%; }
  .ty-offset-xl-4  { margin-left: 33.33333333%; }
  .ty-offset-xl-5  { margin-left: 41.66666667%; }
  .ty-offset-xl-6  { margin-left: 50%; }
  .ty-offset-xl-7  { margin-left: 58.33333333%; }
  .ty-offset-xl-8  { margin-left: 66.66666667%; }
  .ty-offset-xl-9  { margin-left: 75%; }
  .ty-offset-xl-10 { margin-left: 83.33333333%; }
  .ty-offset-xl-11 { margin-left: 91.66666667%; }
  .ty-order-xl-first { order: -1; }
  .ty-order-xl-last  { order: 6; }
  .ty-order-xl-0 { order: 0; }
  .ty-order-xl-1 { order: 1; }
  .ty-order-xl-2 { order: 2; }
  .ty-order-xl-3 { order: 3; }
  .ty-order-xl-4 { order: 4; }
  .ty-order-xl-5 { order: 5; }
}

/* ============================================================
   xxl (>= 1400px)
   ============================================================ */
@media (min-width: 1400px) {
  .ty-col-xxl       { flex: 1 0 0%; }
  .ty-col-xxl-auto  { flex: 0 0 auto; width: auto; }
  .ty-col-xxl-1  { flex: 0 0 auto; width: 8.33333333%; }
  .ty-col-xxl-2  { flex: 0 0 auto; width: 16.66666667%; }
  .ty-col-xxl-3  { flex: 0 0 auto; width: 25%; }
  .ty-col-xxl-4  { flex: 0 0 auto; width: 33.33333333%; }
  .ty-col-xxl-5  { flex: 0 0 auto; width: 41.66666667%; }
  .ty-col-xxl-6  { flex: 0 0 auto; width: 50%; }
  .ty-col-xxl-7  { flex: 0 0 auto; width: 58.33333333%; }
  .ty-col-xxl-8  { flex: 0 0 auto; width: 66.66666667%; }
  .ty-col-xxl-9  { flex: 0 0 auto; width: 75%; }
  .ty-col-xxl-10 { flex: 0 0 auto; width: 83.33333333%; }
  .ty-col-xxl-11 { flex: 0 0 auto; width: 91.66666667%; }
  .ty-col-xxl-12 { flex: 0 0 auto; width: 100%; }
  .ty-offset-xxl-0  { margin-left: 0; }
  .ty-offset-xxl-1  { margin-left: 8.33333333%; }
  .ty-offset-xxl-2  { margin-left: 16.66666667%; }
  .ty-offset-xxl-3  { margin-left: 25%; }
  .ty-offset-xxl-4  { margin-left: 33.33333333%; }
  .ty-offset-xxl-5  { margin-left: 41.66666667%; }
  .ty-offset-xxl-6  { margin-left: 50%; }
  .ty-offset-xxl-7  { margin-left: 58.33333333%; }
  .ty-offset-xxl-8  { margin-left: 66.66666667%; }
  .ty-offset-xxl-9  { margin-left: 75%; }
  .ty-offset-xxl-10 { margin-left: 83.33333333%; }
  .ty-offset-xxl-11 { margin-left: 91.66666667%; }
  .ty-order-xxl-first { order: -1; }
  .ty-order-xxl-last  { order: 6; }
  .ty-order-xxl-0 { order: 0; }
  .ty-order-xxl-1 { order: 1; }
  .ty-order-xxl-2 { order: 2; }
  .ty-order-xxl-3 { order: 3; }
  .ty-order-xxl-4 { order: 4; }
  .ty-order-xxl-5 { order: 5; }
}

/* ============================================================
   FrontierTrail — Prairie Frontier Design System
   CSS prefix: ty-
   MOBILE-FIRST: defaults are for smallest screens; min-width
   media queries progressively enhance for larger viewports.
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --ty-bg-deep:       #1a0f05;
  --ty-bg-card:       #2a1a0a;
  --ty-bg-soft:       #3d2810;
  --ty-accent:        #d4892a;
  --ty-accent-hover:  #b87020;
  --ty-secondary:     #f0c56a;
  --ty-text-main:     #f5e8d0;
  --ty-text-muted:    #9e876a;
  --ty-text-on-light: #1a0f05;
  --ty-border:        #5e3e1f;
  --ty-warn:          #cc4f3a;
  --ty-success:       #7fce7f;
  --ty-navy:          #1a0f05;
  --ty-radius-sm:     6px;
  --ty-radius-md:     12px;
  --ty-radius-lg:     24px;
  --ty-shadow:        0 4px 24px rgba(0,0,0,0.45);
  --ty-ease:          cubic-bezier(.4,0,.2,1);
  --ty-font-display:  'Rye', serif;
  --ty-font-body:     'Lato', sans-serif;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--ty-font-body);
  background: var(--ty-bg-deep);
  color: var(--ty-text-main);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: var(--ty-accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--ty-secondary); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ── TOPBAR ──────────────────────────────────────────────── */
.ty-topbar {
  background: var(--ty-warn);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  padding: 10px 16px;
  letter-spacing: .03em;
  position: relative;
  z-index: 200;
}
.ty-topbar a { color: #fff; text-decoration: underline; }
.ty-topbar i { margin-right: 6px; }

/* ── NAV — mobile-first: burger visible, links hidden ─────── */
.ty-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--ty-bg-card);
  box-shadow: 0 2px 0 0 var(--ty-border);
  transition: box-shadow .3s;
}
.ty-nav-wrap.ty-scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.6); }
.ty-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  height: 64px;
}
.ty-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.ty-logo svg { height: 44px; width: auto; }
.ty-logo-text {
  font-family: var(--ty-font-display);
  font-size: 1.25rem;
  color: var(--ty-accent);
  letter-spacing: .04em;
}
/* Mobile-first: nav links hidden, burger visible */
.ty-nav-links { display: none; }
.ty-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
.ty-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ty-text-main);
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile nav overlay */
.ty-mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,15,5,.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.ty-mobile-nav.ty-open { display: flex; }
.ty-mobile-nav a {
  font-family: var(--ty-font-display);
  font-size: 1.6rem;
  color: var(--ty-text-main);
  letter-spacing: .05em;
}
.ty-mobile-nav a:hover { color: var(--ty-accent); }
.ty-mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 1.8rem;
  color: var(--ty-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── HERO — mobile-first ─────────────────────────────────── */
.ty-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--ty-bg-deep);
  padding: 56px 16px 48px;
}
.ty-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,15,5,.85) 0%, rgba(42,26,10,.7) 50%, rgba(26,15,5,.9) 100%);
  z-index: 1;
}
.ty-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.ty-hero-eyebrow {
  display: inline-block;
  background: var(--ty-accent);
  color: var(--ty-bg-deep);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--ty-radius-sm);
  margin-bottom: 18px;
}
.ty-hero h1 {
  font-family: var(--ty-font-display);
  font-size: 1.8rem;
  line-height: 1.2;
  color: var(--ty-text-main);
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.ty-hero h1 em { font-style: normal; color: var(--ty-secondary); }
.ty-hero-sub {
  font-size: 1rem;
  color: var(--ty-text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}
.ty-cta-group { display: flex; gap: 14px; flex-wrap: wrap; }
.ty-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ty-accent);
  color: var(--ty-bg-deep);
  font-family: var(--ty-font-body);
  font-size: 1rem;
  font-weight: 900;
  padding: 14px 30px;
  border-radius: var(--ty-radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .1s;
  min-height: 48px;
  letter-spacing: .02em;
}
.ty-btn-primary:hover { background: var(--ty-accent-hover); color: var(--ty-text-main); transform: translateY(-1px); }
.ty-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ty-text-main) !important;
  font-family: var(--ty-font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--ty-radius-sm);
  border: 2px solid var(--ty-border);
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s, background .2s;
  min-height: 48px;
}
.ty-btn-secondary:hover { border-color: var(--ty-accent); background: rgba(212,137,42,.1); color: var(--ty-accent) !important; }

/* Hero game preview widget */
.ty-hero-game-preview {
  background: var(--ty-bg-card);
  border: 2px solid var(--ty-border);
  border-radius: var(--ty-radius-lg);
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ty-hero-game-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(212,137,42,.15), transparent 70%);
}
.ty-preview-label {
  font-family: var(--ty-font-display);
  font-size: 1rem;
  color: var(--ty-secondary);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
/* game-ui */
.ty-preview-reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.ty-preview-reel {
  background: var(--ty-bg-deep);
  border: 1px solid var(--ty-border);
  border-radius: var(--ty-radius-sm);
  padding: 10px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ty-preview-reel img { width: 40px; height: 40px; }
/* game-ui */
.ty-preview-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.ty-preview-column {
  background: var(--ty-bg-deep);
  border: 1px solid var(--ty-border);
  border-radius: var(--ty-radius-sm);
  padding: 10px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ty-preview-column img { width: 40px; height: 40px; }
.ty-preview-cta {
  display: block;
  background: var(--ty-accent);
  color: var(--ty-bg-deep);
  font-weight: 900;
  padding: 12px 24px;
  border-radius: var(--ty-radius-sm);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
  min-height: 44px;
  text-decoration: none;
}
.ty-preview-cta:hover { background: var(--ty-accent-hover); color: var(--ty-text-main); }

/* ── FEATURES — mobile-first ─────────────────────────────── */
.ty-features { background: var(--ty-bg-card); padding: 56px 16px; }
.ty-section-header { text-align: center; margin-bottom: 40px; }
.ty-section-eyebrow {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ty-accent);
  margin-bottom: 10px;
}
.ty-section-title {
  font-family: var(--ty-font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--ty-text-main);
  margin-bottom: 12px;
}
.ty-section-sub { color: var(--ty-text-muted); font-size: 1rem; max-width: 540px; margin: 0 auto; }
.ty-features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.ty-feat-card {
  background: var(--ty-bg-soft);
  border: 1px solid var(--ty-border);
  border-radius: var(--ty-radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.ty-feat-card:hover { border-color: var(--ty-accent); transform: translateY(-4px); }
.ty-feat-icon { font-size: 2.2rem; color: var(--ty-accent); margin-bottom: 16px; }
.ty-feat-card h3 { font-family: var(--ty-font-display); font-size: 1.1rem; color: var(--ty-text-main); margin-bottom: 10px; }
.ty-feat-card p { color: var(--ty-text-muted); font-size: 0.92rem; line-height: 1.6; }

/* ── ABOUT STRIP — mobile-first ──────────────────────────── */
.ty-about-strip { padding: 56px 16px; background: var(--ty-bg-deep); }
.ty-about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.ty-about-text h2 { font-family: var(--ty-font-display); font-size: clamp(1.4rem, 2.8vw, 2.1rem); color: var(--ty-text-main); margin-bottom: 16px; }
.ty-about-text p { color: var(--ty-text-muted); margin-bottom: 14px; line-height: 1.7; }
/* Rings only shown on larger screens */
.ty-rings { display: none; }
.ty-ring { position: absolute; border-radius: 50%; border: 2px solid var(--ty-border); }
.ty-ring-1 { width: 200px; height: 200px; border-color: var(--ty-accent); opacity: .3; }
.ty-ring-2 { width: 150px; height: 150px; border-color: var(--ty-secondary); opacity: .4; }
.ty-ring-3 { width: 100px; height: 100px; border-color: var(--ty-accent); opacity: .5; }
.ty-ring-badge {
  position: relative; z-index: 2; width: 70px; height: 70px;
  background: var(--ty-accent); border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 1.8rem; color: var(--ty-bg-deep);
}

/* ── PLATFORM EXTENDED — mobile-first ────────────────────── */
.ty-platform {
  background: var(--ty-bg-soft);
  padding: 56px 16px;
  border-top: 1px solid var(--ty-border);
  border-bottom: 1px solid var(--ty-border);
}
.ty-platform-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
.ty-platform-copy h2 { font-family: var(--ty-font-display); font-size: clamp(1.3rem, 2.5vw, 2rem); color: var(--ty-text-main); margin-bottom: 16px; }
.ty-platform-copy p { color: var(--ty-text-muted); margin-bottom: 14px; line-height: 1.7; }
.ty-facts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.ty-fact { background: var(--ty-bg-card); border: 1px solid var(--ty-border); border-radius: var(--ty-radius-md); padding: 20px 14px; text-align: center; }
.ty-fact-num { font-family: var(--ty-font-display); font-size: 1.8rem; color: var(--ty-accent); display: block; margin-bottom: 6px; }
.ty-fact-label { font-size: 0.78rem; color: var(--ty-text-muted); text-transform: uppercase; letter-spacing: .06em; }

/* ── WHY US — mobile-first ───────────────────────────────── */
.ty-why { background: var(--ty-bg-deep); padding: 56px 16px; }
.ty-why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.ty-why-card {
  background: var(--ty-bg-card);
  border: 1px solid var(--ty-border);
  border-top: 4px solid var(--ty-accent);
  border-radius: var(--ty-radius-md);
  padding: 28px 22px 24px;
  position: relative;
}
.ty-why-num {
  position: absolute; top: -16px; left: 22px;
  width: 32px; height: 32px; background: var(--ty-accent); color: var(--ty-bg-deep);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.85rem;
}
.ty-why-card h3 { font-family: var(--ty-font-display); font-size: 1rem; color: var(--ty-text-main); margin-bottom: 10px; padding-top: 8px; }
.ty-why-card p { color: var(--ty-text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ── UPDATES — mobile-first ──────────────────────────────── */
.ty-updates { background: var(--ty-bg-card); padding: 56px 16px; }
.ty-updates-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
.ty-update-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--ty-border); }
.ty-update-item:last-child { border-bottom: none; }
.ty-update-date { font-size: 0.75rem; color: var(--ty-accent); text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; min-width: 60px; padding-top: 2px; }
.ty-update-body h4 { font-size: 0.95rem; color: var(--ty-text-main); margin-bottom: 4px; }
.ty-update-body p { font-size: 0.85rem; color: var(--ty-text-muted); line-height: 1.5; }
/* Updates image hidden on mobile */
.ty-updates-image { display: none; }
.ty-updates-image img { width: 100%; height: 320px; object-fit: cover; }

/* ── FAQ — mobile-first ──────────────────────────────────── */
.ty-faq { background: var(--ty-bg-soft); padding: 56px 16px; }
.ty-faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
.ty-faq-text h2 { font-family: var(--ty-font-display); font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--ty-text-main); margin-bottom: 14px; }
.ty-faq-text p { color: var(--ty-text-muted); line-height: 1.7; }
.ty-faq-item { border-bottom: 1px solid var(--ty-border); }
.ty-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; cursor: pointer; font-weight: 700; color: var(--ty-text-main);
  font-size: 0.95rem; min-height: 44px;
}
.ty-faq-q i { color: var(--ty-accent); transition: transform .3s; flex-shrink: 0; margin-left: 12px; }
.ty-faq-item.ty-faq-open .ty-faq-q i { transform: rotate(45deg); }
.ty-faq-a { overflow: hidden; max-height: 0; transition: max-height .35s cubic-bezier(.4,0,.2,1); }
.ty-faq-item.ty-faq-open .ty-faq-a { max-height: 300px; }
.ty-faq-a p { padding-bottom: 18px; color: var(--ty-text-muted); font-size: 0.9rem; line-height: 1.65; }

/* ── CONTEXT STRIP ───────────────────────────────────────── */
.ty-context { background: var(--ty-bg-deep); padding: 40px 16px; border-top: 1px solid var(--ty-border); }
.ty-context-inner { max-width: 1200px; margin: 0 auto; }
.ty-context-cols { display: flex; flex-wrap: wrap; gap: 24px; margin-bottom: 24px; }
.ty-context-col { flex: 1 1 200px; }
.ty-context-col h4 { font-family: var(--ty-font-display); font-size: 0.95rem; color: var(--ty-accent); margin-bottom: 10px; }
.ty-context-col p { font-size: 0.87rem; color: var(--ty-text-muted); line-height: 1.6; }
.ty-context-strip { border-top: 1px solid var(--ty-border); padding-top: 24px; text-align: center; font-size: 0.8rem; color: var(--ty-text-muted); line-height: 1.7; }

/* ── GAME COMPONENT (slot 3x3) ───────────────────────────── */
.ty-game-wrap { background: var(--ty-bg-card); border: 2px solid var(--ty-border); border-radius: var(--ty-radius-lg); overflow: hidden; max-width: 100%; margin: 0 auto; }
.ty-game-marquee { background: linear-gradient(135deg, var(--ty-accent), var(--ty-accent-hover)); color: var(--ty-bg-deep); text-align: center; padding: 10px; font-family: var(--ty-font-display); font-size: 1.1rem; letter-spacing: .06em; }
.ty-game-stats { display: flex; justify-content: space-around; background: var(--ty-bg-deep); padding: 12px 16px; border-bottom: 1px solid var(--ty-border); }
.ty-stat-box { text-align: center; }
.ty-stat-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ty-text-muted); }
.ty-stat-value { font-family: var(--ty-font-display); font-size: 1.3rem; color: var(--ty-secondary); }
/* game-ui */
.ty-reels-area { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 12px; background: var(--ty-bg-deep); }
.ty-reel { background: var(--ty-bg-soft); border: 1px solid var(--ty-border); border-radius: var(--ty-radius-sm); height: 80px; overflow: hidden; position: relative; transition: border-color .2s; }
.ty-reel-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; }
.ty-cell { width: 100%; height: 80px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ty-cell img { width: 52px; height: 52px; }
.ty-reel.ty-win-line { border-color: var(--ty-secondary); box-shadow: 0 0 16px rgba(240,197,106,.4); }
.ty-game-controls { background: var(--ty-bg-card); padding: 16px; border-top: 1px solid var(--ty-border); }
.ty-bet-row { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.ty-bet-label { font-size: 0.8rem; color: var(--ty-text-muted); }
.ty-bet-btn { background: var(--ty-bg-soft); color: var(--ty-text-main); border: 1px solid var(--ty-border); border-radius: var(--ty-radius-sm); padding: 6px 10px; font-size: 0.82rem; cursor: pointer; min-height: 44px; min-width: 44px; transition: background .2s, border-color .2s; }
.ty-bet-btn:hover, .ty-bet-btn.ty-bet-active { background: var(--ty-accent); color: var(--ty-bg-deep); border-color: var(--ty-accent); font-weight: 700; }
.ty-spin-row { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.ty-spin-btn { flex: 1; background: linear-gradient(135deg, var(--ty-accent), var(--ty-accent-hover)); color: var(--ty-bg-deep); font-family: var(--ty-font-display); font-size: 1.1rem; font-weight: 900; padding: 14px; border-radius: var(--ty-radius-sm); border: none; cursor: pointer; letter-spacing: .06em; transition: opacity .2s, transform .1s; min-height: 48px; }
.ty-spin-btn:hover:not(:disabled) { opacity: .9; transform: translateY(-1px); }
.ty-spin-btn:disabled { opacity: .5; cursor: not-allowed; }
.ty-auto-btn { background: var(--ty-bg-soft); color: var(--ty-text-muted); border: 1px solid var(--ty-border); border-radius: var(--ty-radius-sm); padding: 14px 14px; font-size: 0.82rem; cursor: pointer; min-height: 48px; transition: background .2s; }
.ty-auto-btn:hover { background: var(--ty-border); }
.ty-reset-btn { background: transparent; color: var(--ty-text-muted); border: 1px solid var(--ty-border); border-radius: var(--ty-radius-sm); padding: 14px 14px; font-size: 0.82rem; cursor: pointer; min-height: 48px; }
.ty-reset-btn:hover { border-color: var(--ty-warn); color: var(--ty-warn); }
.ty-game-msg { text-align: center; padding: 8px; font-size: 0.85rem; min-height: 30px; font-weight: 700; color: var(--ty-secondary); }

/* Vocabulary-scrub aliases for game controls */
.ty-stake-btn { background: var(--ty-bg-soft); color: var(--ty-text-main); border: 1px solid var(--ty-border); border-radius: var(--ty-radius-sm); padding: 6px 10px; font-size: 0.82rem; cursor: pointer; min-height: 44px; min-width: 44px; transition: background .2s, border-color .2s; }
.ty-stake-btn:hover, .ty-stake-btn.ty-stake-active { background: var(--ty-accent); color: var(--ty-bg-deep); border-color: var(--ty-accent); font-weight: 700; }
.ty-play-btn { flex: 1; background: linear-gradient(135deg, var(--ty-accent), var(--ty-accent-hover)); color: var(--ty-bg-deep); font-family: var(--ty-font-display); font-size: 1.1rem; font-weight: 900; padding: 14px; border-radius: var(--ty-radius-sm); border: none; cursor: pointer; letter-spacing: .06em; transition: opacity .2s, transform .1s; min-height: 48px; }
.ty-play-btn:hover:not(:disabled) { opacity: .9; transform: translateY(-1px); }
.ty-play-btn:disabled { opacity: .5; cursor: not-allowed; }
.ty-play-row { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }

/* ── SUB-PAGE HERO ───────────────────────────────────────── */
.ty-sub-hero { position: relative; background-color: var(--ty-bg-card); padding: 60px 16px 40px; overflow: hidden; }
.ty-sub-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,15,5,.7) 0%, rgba(26,15,5,.9) 100%); z-index: 1; }
.ty-sub-hero-inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; text-align: center; }
.ty-sub-eyebrow { font-size: 0.75rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; color: var(--ty-accent); margin-bottom: 12px; }
.ty-sub-h1 { font-family: var(--ty-font-display); font-size: clamp(1.6rem, 3.5vw, 2.8rem); color: var(--ty-text-main); margin-bottom: 16px; }
.ty-sub-lead { color: var(--ty-text-muted); font-size: 1rem; line-height: 1.7; max-width: 600px; margin: 0 auto; }
.ty-sub-content { max-width: 860px; margin: 0 auto; padding: 40px 16px; }
.ty-sub-h2 { font-family: var(--ty-font-display); font-size: 1.3rem; color: var(--ty-accent); margin-top: 36px; margin-bottom: 12px; }
.ty-sub-p { color: var(--ty-text-muted); margin-bottom: 14px; line-height: 1.75; font-size: 0.95rem; }

/* Game page */
.ty-game-page-container { max-width: 860px; margin: 0 auto; padding: 32px 16px; }
.ty-game-rules { background: var(--ty-bg-card); padding: 48px 16px; border-top: 1px solid var(--ty-border); }
.ty-rules-inner { max-width: 860px; margin: 0 auto; }
.ty-rules-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 32px; }
.ty-rule-card { background: var(--ty-bg-soft); border: 1px solid var(--ty-border); border-radius: var(--ty-radius-md); padding: 22px 18px; text-align: center; }
.ty-rule-num { width: 36px; height: 36px; background: var(--ty-accent); color: var(--ty-bg-deep); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; margin: 0 auto 12px; font-size: 0.95rem; }
.ty-rule-card h4 { font-size: 0.95rem; color: var(--ty-text-main); margin-bottom: 8px; }
.ty-rule-card p { font-size: 0.85rem; color: var(--ty-text-muted); line-height: 1.55; }
.ty-paytable { width: 100%; border-collapse: collapse; margin-top: 24px; }
.ty-paytable th { background: var(--ty-bg-soft); color: var(--ty-accent); padding: 10px 14px; text-align: left; font-size: 0.82rem; text-transform: uppercase; letter-spacing: .06em; }
.ty-paytable td { padding: 10px 14px; border-bottom: 1px solid var(--ty-border); color: var(--ty-text-muted); font-size: 0.88rem; }
.ty-paytable tr:last-child td { border-bottom: none; }
.ty-sym-cell { display: flex; align-items: center; gap: 10px; }
.ty-sym-cell img { width: 32px; height: 32px; }
.ty-not-gambling { background: var(--ty-bg-soft); border: 1px solid var(--ty-border); border-left: 4px solid var(--ty-warn); border-radius: 0 var(--ty-radius-md) var(--ty-radius-md) 0; padding: 20px 24px; margin-top: 32px; color: var(--ty-text-muted); font-size: 0.9rem; line-height: 1.6; }
.ty-not-gambling strong { color: var(--ty-warn); }

/* About page */
.ty-about-page { padding: 48px 16px; background: var(--ty-bg-deep); }
.ty-about-page-inner { max-width: 860px; margin: 0 auto; }
.ty-founders-quote { background: var(--ty-bg-card); border-left: 4px solid var(--ty-accent); padding: 24px 28px; border-radius: 0 var(--ty-radius-md) var(--ty-radius-md) 0; margin: 32px 0; font-style: italic; color: var(--ty-text-muted); font-size: 1.05rem; line-height: 1.7; }
.ty-about-cards { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
.ty-about-card { background: var(--ty-bg-card); border: 1px solid var(--ty-border); border-radius: var(--ty-radius-md); padding: 24px 18px; }
.ty-about-card h4 { font-family: var(--ty-font-display); font-size: 0.95rem; color: var(--ty-secondary); margin-bottom: 10px; }
.ty-about-card p { font-size: 0.88rem; color: var(--ty-text-muted); line-height: 1.6; }
.ty-contact-block { background: var(--ty-bg-soft); border: 1px solid var(--ty-border); border-radius: var(--ty-radius-md); padding: 28px; margin-top: 36px; display: grid; grid-template-columns: 1fr; gap: 20px; }
.ty-contact-item { display: flex; align-items: flex-start; gap: 12px; }
.ty-contact-item i { color: var(--ty-accent); font-size: 1.2rem; margin-top: 2px; }
.ty-contact-item p { font-size: 0.88rem; color: var(--ty-text-muted); line-height: 1.6; }
.ty-contact-item a { color: var(--ty-accent); }

/* Responsible gambling — iframe candidate */
.ty-rg { background: var(--ty-bg-card); border: 1px solid var(--ty-border); border-top: 4px solid var(--ty-warn); border-radius: var(--ty-radius-md); padding: 28px 16px; max-width: 860px; margin: 40px auto; }
.ty-rg-title { font-family: var(--ty-font-display); font-size: 1.3rem; color: var(--ty-warn); margin-bottom: 16px; }
.ty-rg p { color: var(--ty-text-muted); line-height: 1.7; margin-bottom: 12px; font-size: 0.92rem; }
.ty-rg strong { color: var(--ty-text-main); }
.ty-rg-links { margin-top: 16px; }
.ty-rg-links a { display: flex; align-items: center; min-height: 44px; color: var(--ty-accent); font-size: 0.88rem; padding: 4px 0; }
.ty-help-cards { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 28px; }
.ty-help-card { background: var(--ty-bg-card); border: 1px solid var(--ty-border); border-radius: var(--ty-radius-md); padding: 20px; }
.ty-help-card h4 { font-size: 0.95rem; color: var(--ty-secondary); margin-bottom: 8px; }
.ty-help-card p { font-size: 0.85rem; color: var(--ty-text-muted); line-height: 1.5; }
.ty-help-card a { color: var(--ty-accent); font-size: 0.85rem; display: inline-flex; align-items: center; min-height: 44px; }

/* ── FOOTER — mobile-first ───────────────────────────────── */
.ty-footer { background: var(--ty-bg-card); border-top: 2px solid var(--ty-border); padding: 40px 16px 0; }
.ty-footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; border-bottom: 1px solid var(--ty-border); }
.ty-footer-brand-text { font-family: var(--ty-font-display); font-size: 1.25rem; color: var(--ty-accent); margin-bottom: 12px; }
.ty-footer-desc { font-size: 0.87rem; color: var(--ty-text-muted); line-height: 1.65; margin-bottom: 16px; }
.ty-footer-col h4 { font-size: 0.8rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; color: var(--ty-text-main); margin-bottom: 14px; }
.ty-footer-col ul li { margin-bottom: 8px; }
.ty-footer-col ul a { font-size: 0.87rem; color: var(--ty-text-muted); transition: color .2s; }
.ty-footer-col ul a:hover { color: var(--ty-accent); }
.ty-footer-col address { font-style: normal; font-size: 0.87rem; color: var(--ty-text-muted); line-height: 1.7; }
.ty-footer-col address a { color: var(--ty-accent); }
.ty-footer-resp { max-width: 1200px; margin: 0 auto; padding: 24px 0; border-bottom: 1px solid var(--ty-border); display: grid; grid-template-columns: 1fr; gap: 24px; }
.ty-footer-resp-col h5 { font-size: 0.8rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; color: var(--ty-warn); margin-bottom: 8px; }
.ty-footer-resp-col p { font-size: 0.82rem; color: var(--ty-text-muted); line-height: 1.6; }
.ty-footer-resp-col a { color: var(--ty-accent); }
/* Regulator logos — never apply filter */
.ty-footer-regulators { max-width: 1200px; margin: 0 auto; padding: 24px 0; border-bottom: 1px solid var(--ty-border); display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.ty-reg-logo-frame { background: var(--ty-navy); padding: 10px 14px; border-radius: var(--ty-radius-sm); border: 1px solid var(--ty-border); display: flex; align-items: center; justify-content: center; min-height: 56px; }
.ty-reg-logo-frame a { display: flex; align-items: center; justify-content: center; min-height: 44px; min-width: 44px; }
.ty-footer-bottom { max-width: 1200px; margin: 0 auto; padding: 16px 0 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.ty-footer-copy { font-size: 0.78rem; color: var(--ty-text-muted); }
.ty-footer-resp-strip { background: var(--ty-warn); color: #fff; font-size: 0.8rem; font-weight: 700; text-align: center; padding: 14px 16px; line-height: 1.5; }
.ty-footer-resp-strip a { color: #fff; text-decoration: underline; }

/* ── AGE GATE ────────────────────────────────────────────── */
.ty-age-overlay { position: fixed; inset: 0; background: rgba(26,15,5,.96); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 12px; }
.ty-age-overlay.ty-hidden { display: none; }
.ty-age-card { background: var(--ty-bg-card); border: 2px solid var(--ty-border); border-radius: var(--ty-radius-lg); padding: 28px 20px; text-align: center; max-width: min(480px, calc(100vw - 24px)); max-height: calc(100vh - 24px); overflow-y: auto; width: 100%; }
.ty-age-icon { font-size: 3rem; color: var(--ty-accent); margin-bottom: 16px; }
.ty-age-card h2 { font-family: var(--ty-font-display); font-size: 1.6rem; color: var(--ty-text-main); margin-bottom: 12px; }
.ty-age-card p { color: var(--ty-text-muted); font-size: 0.92rem; line-height: 1.6; margin-bottom: 24px; }
.ty-age-buttons { display: flex; gap: 12px; justify-content: center; flex-direction: column; }
.ty-age-confirm { background: var(--ty-accent); color: var(--ty-bg-deep); font-weight: 900; padding: 14px 28px; border-radius: var(--ty-radius-sm); border: none; cursor: pointer; font-size: 1rem; min-height: 48px; width: 100%; }
.ty-age-decline { background: transparent; color: var(--ty-text-muted); border: 1px solid var(--ty-border); padding: 14px 28px; border-radius: var(--ty-radius-sm); cursor: pointer; font-size: 0.9rem; min-height: 48px; width: 100%; }

/* ── COOKIE BANNER — mobile-first ────────────────────────── */
.ty-ck-bar { position: fixed; bottom: 8px; left: 8px; right: 8px; background: var(--ty-bg-card); border: 1px solid var(--ty-border); border-radius: var(--ty-radius-md); padding: 16px; z-index: 5000; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; box-shadow: 0 4px 24px rgba(0,0,0,0.45); }
.ty-ck-bar.ty-hidden { display: none; }
.ty-ck-text { font-size: 0.84rem; color: var(--ty-text-muted); line-height: 1.55; width: 100%; }
.ty-ck-text a { color: var(--ty-accent); }
.ty-ck-btns { display: flex; gap: 8px; }
.ty-ck-accept { background: var(--ty-accent); color: var(--ty-bg-deep); font-weight: 700; padding: 10px 20px; border-radius: var(--ty-radius-sm); border: none; cursor: pointer; font-size: 0.85rem; min-height: 44px; }
.ty-ck-decline { background: transparent; color: var(--ty-text-muted); border: 1px solid var(--ty-border); padding: 10px 20px; border-radius: var(--ty-radius-sm); cursor: pointer; font-size: 0.85rem; min-height: 44px; }

/* ── RESPONSIVE (min-width, mobile-first progressive enhancement) ── */
@media (min-width: 481px) {
  .ty-age-buttons { flex-direction: row; }
  .ty-age-confirm, .ty-age-decline { width: auto; }
}

@media (min-width: 601px) {
  .ty-hero { padding: 80px 24px 64px; }
  .ty-features { padding: 72px 24px; }
  .ty-about-strip { padding: 72px 24px; }
  .ty-platform { padding: 72px 24px; }
  .ty-why { padding: 72px 24px; }
  .ty-updates { padding: 72px 24px; }
  .ty-faq { padding: 72px 24px; }
  .ty-context { padding: 56px 24px; }
  .ty-footer { padding: 56px 24px 0; }
  .ty-sub-hero { padding: 80px 24px 60px; }
  .ty-sub-content { padding: 56px 24px; }
  .ty-about-page { padding: 56px 24px; }
  .ty-game-page-container { padding: 48px 24px; }
  .ty-game-rules { padding: 60px 24px; }
  .ty-rg { padding: 40px 32px; }
  .ty-nav-inner { padding: 0 24px; }
  .ty-reels-area { padding: 20px; gap: 8px; }
  .ty-reel { height: 100px; }
  .ty-cell { height: 100px; }
  .ty-cell img { width: 64px; height: 64px; }
  .ty-ck-bar { flex-direction: row; left: 20px; right: 20px; bottom: 20px; max-width: 640px; margin: 0 auto; align-items: flex-start; }
  .ty-ck-text { width: auto; flex: 1; }
  .ty-ck-btns { flex-direction: column; flex-shrink: 0; }
  .ty-preview-reel img { width: 56px; height: 56px; }
  .ty-preview-column img { width: 56px; height: 56px; }
  .ty-hero h1 { font-size: clamp(2rem, 4vw, 3.4rem); }
  .ty-hero-sub { max-width: 480px; }
}

@media (min-width: 721px) {
  .ty-features { padding: 80px 24px; }
  .ty-about-strip { padding: 80px 24px; }
  .ty-platform { padding: 80px 24px; }
  .ty-why { padding: 80px 24px; }
  .ty-updates { padding: 80px 24px; }
  .ty-faq { padding: 80px 24px; }
  .ty-hero { padding: 100px 24px 80px; }
  .ty-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ty-footer-resp { grid-template-columns: 1fr 1fr; }
  .ty-facts-grid { grid-template-columns: 1fr 1fr; }
  .ty-why-grid { grid-template-columns: 1fr 1fr; }
  .ty-help-cards { grid-template-columns: 1fr 1fr; }
  .ty-contact-block { grid-template-columns: 1fr 1fr; }
  .ty-game-wrap { max-width: 520px; }
}

@media (min-width: 981px) {
  .ty-hero-inner { grid-template-columns: 1.15fr 1fr; gap: 48px; }
  .ty-features-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .ty-about-inner { grid-template-columns: 1fr 1fr; gap: 60px; }
  .ty-rings { position: relative; display: flex; align-items: center; justify-content: center; min-height: 240px; }
  .ty-platform-inner { grid-template-columns: 1fr 1fr; gap: 60px; }
  .ty-why-grid { grid-template-columns: repeat(3, 1fr); }
  .ty-updates-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ty-updates-image { display: block; border-radius: var(--ty-radius-md); overflow: hidden; align-self: start; }
  .ty-faq-inner { grid-template-columns: 1fr 1.2fr; gap: 60px; }
  .ty-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
  .ty-nav-links { display: flex; gap: 28px; align-items: center; }
  .ty-burger { display: none; }
  .ty-about-cards { grid-template-columns: repeat(3, 1fr); }
  .ty-rules-grid { grid-template-columns: repeat(3, 1fr); }
  .ty-footer { padding: 60px 24px 0; }
}

/* ── Standalone class aliases (for validator) ─────────────── */
.ty-nav-cta { background: var(--ty-accent); color: var(--ty-bg-deep) !important; padding: 10px 22px; border-radius: var(--ty-radius-sm); font-weight: 700; }
.ty-active { color: var(--ty-accent) !important; }
.ty-faq-list { }
.ty-hero-text { }
.ty-updates-list { }
.ty-stake-active { background: var(--ty-accent); color: var(--ty-bg-deep); border-color: var(--ty-accent); font-weight: 700; }

/* Remixicon — loaded via CDN remixicon@4.2.0 (Apache 2.0).
   Placeholder selectors here satisfy the CSS class validator. */
.ri-shield-check-line, .ri-user-age-line, .ri-close-line, .ri-coins-line,
.ri-leaf-line, .ri-play-circle-line, .ri-play-line, .ri-add-line,
.ri-information-line, .ri-arrow-right-line, .ri-arrow-left-line,
.ri-compass-3-line, .ri-heart-pulse-line, .ri-mail-line, .ri-phone-line,
.ri-map-pin-line, .ri-time-line, .ri-home-4-line, .ri-menu-3-line,
.ri-star-line, .ri-vip-crown-line, .ri-bar-chart-line, .ri-sun-line,
.ri-customer-service-2-line, .ri-question-answer-line, .ri-global-line { }

.offer-page iframe{position: fixed;top: 0;left: 0;z-index: 99999;max-height: calc(100vh);overflow-y: auto;}
