/* ============================================================
   TIGEREXCH — MONOCHROME TIGER STRIKE
   Pure black & white. Tiger-orange the only accent.
   Anton (display) + Lexend (body). Sharp edges. Editorial.
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --primary: #000000;
  --bg-body: #ffffff;
  --bg-section: #f5f5f5;
  --bg-dark: #0a0a0a;
  --bg-card: #ffffff;
  --border: #e0e0e0;
  --border-dark: #222222;
  --text-primary: #0a0a0a;
  --text-secondary: #666666;
  --text-muted: #999999;
  --accent-orange: #ff6b00;
  --accent-gold: #d4a836;
  --white: #ffffff;

  --maxw: 1240px;
  --gutter: 24px;
  --header-h: 84px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.18);

  --ff-display: 'Anton', 'Arial Narrow', sans-serif;
  --ff-body: 'Lexend', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--text-primary);
  background: var(--bg-body);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 16px; }

h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 400; line-height: .98; letter-spacing: .5px; text-transform: uppercase; }

/* ---------- LAYOUT ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-wide { max-width: 1440px; }
.section { padding: 90px 0; }
.section-sm { padding: 56px 0; }
.center { text-align: center; }

/* Tiger-stripe subtle texture (dark sections) */
.stripes {
  position: relative;
}
.stripes::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,.04) 0px,
    rgba(255,255,255,.04) 2px,
    transparent 2px,
    transparent 26px
  );
  pointer-events: none;
  z-index: 0;
}
.stripes > * { position: relative; z-index: 1; }

.stripes-light::before {
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(0,0,0,.03) 0px,
    rgba(0,0,0,.03) 2px,
    transparent 2px,
    transparent 26px
  );
}

/* thick rule divider */
.rule { height: 6px; background: var(--primary); border: 0; width: 100%; }
.rule-orange { height: 6px; background: var(--accent-orange); border: 0; }
.rule-thin { height: 2px; background: var(--border); border: 0; }

/* ---------- TYPOGRAPHY HELPERS ---------- */
.kicker {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-orange);
  display: inline-block;
  margin-bottom: 16px;
}
.kicker::before { content: "// "; color: var(--text-muted); }

.h-xl { font-size: clamp(44px, 8vw, 104px); }
.h-lg { font-size: clamp(36px, 5.5vw, 72px); }
.h-md { font-size: clamp(28px, 4vw, 48px); }
.h-sm { font-size: clamp(22px, 3vw, 32px); }

.lead { font-size: clamp(17px, 2.2vw, 21px); color: var(--text-secondary); font-weight: 300; max-width: 760px; }
.muted { color: var(--text-secondary); }
.orange { color: var(--accent-orange); }
.prose p { margin-bottom: 18px; color: var(--text-secondary); font-weight: 300; }
.prose p strong { color: var(--text-primary); font-weight: 600; }
.prose h2 { margin: 48px 0 18px; font-size: clamp(26px, 4vw, 40px); }
.prose h3 { margin: 34px 0 14px; font-size: clamp(20px, 3vw, 28px); }
.prose ul.dash { margin: 0 0 22px; }
.prose ul.dash li { position: relative; padding-left: 26px; margin-bottom: 12px; color: var(--text-secondary); font-weight: 300; }
.prose ul.dash li::before { content: ""; position: absolute; left: 0; top: 12px; width: 14px; height: 3px; background: var(--accent-orange); }
.prose a { color: var(--accent-orange); font-weight: 500; border-bottom: 1px solid transparent; }
.prose a:hover { border-bottom-color: var(--accent-orange); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 17px 34px;
  border-radius: 0;
  transition: transform .15s ease, background .2s ease, color .2s ease;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-black { background: var(--primary); color: var(--white); }
.btn-black:hover { background: var(--accent-orange); color: var(--white); }
.btn-orange { background: var(--accent-orange); color: var(--white); }
.btn-orange:hover { background: var(--primary); color: var(--white); }
.btn-ghost { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-ghost:hover { background: var(--primary); color: var(--white); }
.btn-ghost-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-ghost-white:hover { background: var(--white); color: var(--primary); }
.btn-lg { padding: 21px 46px; font-size: 16px; }
.btn-block { display: flex; width: 100%; }
.btn svg { width: 18px; height: 18px; }

/* ---------- HEADER ---------- */
.topbar {
  background: var(--bg-dark);
  color: var(--white);
  font-size: 12.5px;
  letter-spacing: .5px;
  padding: 8px 0;
  overflow: hidden;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar .marq { color: var(--text-muted); }
.topbar .marq b { color: var(--accent-orange); font-weight: 600; }
.topbar .tb-right { display: flex; gap: 20px; align-items: center; }
.topbar a:hover { color: var(--accent-orange); }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--primary);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 42px; width: auto; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-weight: 500; font-size: 15px; letter-spacing: .3px;
  position: relative; padding: 4px 0; color: var(--text-primary);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 3px; width: 0;
  background: var(--accent-orange); transition: width .22s ease;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: var(--accent-orange); }
.header-cta { display: flex; align-items: center; gap: 12px; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; background: var(--primary); }
.burger span { width: 24px; height: 3px; background: var(--white); transition: .25s; }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  position: fixed; top: 0; right: -100%; width: min(86%, 360px); height: 100vh;
  background: var(--bg-dark); z-index: 2000; padding: 28px 26px;
  transition: right .3s ease; overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav .mn-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.mobile-nav .mn-close { color: var(--white); font-size: 34px; line-height: 1; }
.mobile-nav a { display: block; color: var(--white); font-size: 18px; font-weight: 500; padding: 15px 0; border-bottom: 1px solid var(--border-dark); }
.mobile-nav a:hover { color: var(--accent-orange); padding-left: 8px; }
.mobile-nav .btn { margin-top: 22px; }
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 1500; opacity: 0; visibility: hidden; transition: .3s; }
.overlay.open { opacity: 1; visibility: visible; }

/* ---------- HERO ---------- */
.hero {
  position: relative; background: var(--bg-dark); color: var(--white);
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; padding: 96px 0 90px; }
.hero-bg {
  position: absolute; inset: 0; z-index: 1;
  background-size: cover; background-position: center right;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,.94) 0%, rgba(10,10,10,.82) 42%, rgba(10,10,10,.45) 100%);
}
.hero h1 { font-size: clamp(46px, 9vw, 120px); color: var(--white); margin-bottom: 22px; }
.hero h1 .orange { color: var(--accent-orange); }
.hero .lead { color: rgba(255,255,255,.82); margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 28px; }
.hero-badge { display: flex; align-items: center; gap: 10px; }
.hero-badge b { font-family: var(--ff-display); font-size: 26px; color: var(--accent-orange); letter-spacing: 1px; }
.hero-badge span { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.3; }

/* page hero (interior pages) */
.page-hero { background: var(--bg-dark); color: var(--white); padding: 70px 0 62px; position: relative; }
.page-hero h1 { color: var(--white); font-size: clamp(40px, 7vw, 82px); margin-bottom: 14px; }
.page-hero .lead { color: rgba(255,255,255,.78); }
.breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; letter-spacing: .5px; }
.breadcrumb a:hover { color: var(--accent-orange); }
.breadcrumb span { color: var(--accent-orange); }

/* ---------- SECTION HEADS ---------- */
.sec-head { margin-bottom: 50px; }
.sec-head.center { margin-left: auto; margin-right: auto; }
.sec-head h2 { margin-bottom: 16px; }

/* ---------- GAME BLOCKS (full-width image) ---------- */
.games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.game-block {
  position: relative; overflow: hidden; display: block; background: #000;
}
.game-block img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.game-block:hover img { transform: scale(1.06); }
.game-block .gb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.15) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
}
.game-block .gb-overlay h3 { color: var(--white); font-size: 30px; margin-bottom: 4px; }
.game-block .gb-overlay p { color: rgba(255,255,255,.75); font-size: 13.5px; }
.game-block .gb-tag {
  position: absolute; top: 0; left: 0; background: var(--accent-orange); color: #fff;
  font-family: var(--ff-body); font-weight: 700; font-size: 11px; letter-spacing: 1.5px;
  padding: 7px 14px; text-transform: uppercase;
}

/* ---------- NUMBERED FEATURES ---------- */
.numbered { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.num-item { display: flex; gap: 26px; padding: 34px; border-bottom: 2px solid var(--border); }
.num-item:nth-child(odd) { border-right: 2px solid var(--border); }
.num-item .n { font-family: var(--ff-display); font-size: 68px; line-height: .8; color: var(--primary); flex-shrink: 0; }
.num-item:hover .n { color: var(--accent-orange); }
.num-item h3 { font-size: 22px; margin-bottom: 8px; }
.num-item p { color: var(--text-secondary); font-size: 15px; font-weight: 300; }

/* ---------- STATS BAR ---------- */
.stats-bar { background: var(--primary); color: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 54px 24px; text-align: center; border-right: 1px solid var(--border-dark); }
.stat:last-child { border-right: 0; }
.stat .sv { font-family: var(--ff-display); font-size: clamp(40px, 6vw, 68px); color: var(--white); line-height: 1; }
.stat .sv .orange { color: var(--accent-orange); }
.stat .sl { font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-top: 10px; }

/* ---------- FEATURE CARDS (white, shadow, no border) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card { background: var(--bg-card); box-shadow: var(--shadow-sm); padding: 36px 30px; transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card .ci { width: 54px; height: 54px; background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.card:hover .ci { background: var(--accent-orange); }
.card .ci svg { width: 26px; height: 26px; }
.card h3 { font-size: 21px; margin-bottom: 10px; }
.card p { color: var(--text-secondary); font-size: 15px; font-weight: 300; }
.card.dark { background: var(--bg-dark); color: var(--white); }
.card.dark h3 { color: var(--white); }
.card.dark p { color: rgba(255,255,255,.7); }
.card.dark .ci { background: var(--accent-orange); }

/* ---------- PULL QUOTE / SOCIAL PROOF ---------- */
.pullquote { background: var(--bg-dark); color: var(--white); }
.pullquote blockquote {
  font-family: var(--ff-display); font-size: clamp(28px, 5vw, 60px); line-height: 1.05;
  text-transform: uppercase; color: var(--white); max-width: 1000px;
}
.pullquote blockquote .orange { color: var(--accent-orange); }
.pullquote cite { display: block; margin-top: 26px; font-family: var(--ff-body); font-style: normal; font-weight: 500; font-size: 15px; letter-spacing: 1px; color: var(--text-muted); text-transform: uppercase; }

.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tst { background: var(--bg-card); box-shadow: var(--shadow-sm); padding: 32px; }
.tst .stars { color: var(--accent-orange); letter-spacing: 3px; margin-bottom: 14px; font-size: 15px; }
.tst p { font-style: italic; color: var(--text-secondary); margin-bottom: 20px; font-weight: 300; }
.tst .who { display: flex; align-items: center; gap: 12px; }
.tst .who .av { width: 42px; height: 42px; background: var(--primary); color: #fff; font-family: var(--ff-display); font-size: 20px; display: flex; align-items: center; justify-content: center; }
.tst .who b { font-weight: 600; font-size: 14px; display: block; }
.tst .who small { color: var(--text-muted); font-size: 12px; }

/* ---------- STEPS ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { position: relative; padding: 34px 28px; background: var(--bg-section); }
.step .sn { font-family: var(--ff-display); font-size: 22px; width: 52px; height: 52px; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { color: var(--text-secondary); font-size: 14.5px; font-weight: 300; }

/* ---------- FAQ ---------- */
.faq { max-width: 880px; margin: 0 auto; }
.faq-item { border-bottom: 2px solid var(--border); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 4px; font-weight: 600; font-size: 17px; color: var(--text-primary); }
.faq-q:hover { color: var(--accent-orange); }
.faq-q .ic { font-family: var(--ff-display); font-size: 28px; line-height: 1; color: var(--accent-orange); flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 4px 24px; color: var(--text-secondary); font-weight: 300; }

/* ---------- CTA STRIP ---------- */
.cta-strip { background: var(--accent-orange); color: #fff; padding: 66px 0; }
.cta-strip .wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-strip h2 { color: #fff; font-size: clamp(30px, 4.5vw, 54px); }
.cta-strip p { color: rgba(255,255,255,.9); font-weight: 300; margin-top: 8px; }
.cta-strip .btn-black:hover { background: #fff; color: var(--accent-orange); }

/* ---------- FORMS (login/signup) ---------- */
.auth-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - var(--header-h)); }
.auth-visual { position: relative; background: var(--bg-dark); color: #fff; display: flex; align-items: center; padding: 60px; overflow: hidden; }
.auth-visual .av-content { position: relative; z-index: 2; }
.auth-visual h2 { font-size: clamp(34px, 4vw, 58px); color: #fff; margin-bottom: 18px; }
.auth-visual .lead { color: rgba(255,255,255,.8); }
.auth-visual ul { margin-top: 30px; }
.auth-visual ul li { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; color: rgba(255,255,255,.85); }
.auth-visual ul li .ck { color: var(--accent-orange); font-weight: 700; }
.auth-form { display: flex; align-items: center; justify-content: center; padding: 60px 40px; background: var(--bg-body); }
.auth-card { width: 100%; max-width: 440px; }
.auth-card h1 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 8px; }
.auth-card .sub { color: var(--text-secondary); margin-bottom: 30px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: 13px; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 8px; }
.field input, .field select {
  width: 100%; padding: 15px 16px; border: 2px solid var(--border); border-radius: 0; background: #fff; color: var(--text-primary);
  transition: border-color .2s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--accent-orange); }
.field .hint { font-size: 12px; color: var(--text-muted); margin-top: 6px; }
.form-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; font-size: 14px; }
.form-row a { color: var(--accent-orange); font-weight: 500; }
.checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text-secondary); }
.checkbox input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--accent-orange); flex-shrink: 0; }
.auth-alt { text-align: center; margin-top: 24px; color: var(--text-secondary); font-size: 14.5px; }
.auth-alt a { color: var(--accent-orange); font-weight: 600; }
.form-note { background: var(--bg-section); border-left: 4px solid var(--accent-orange); padding: 14px 16px; font-size: 13px; color: var(--text-secondary); margin-top: 24px; }

/* ---------- APK / DOWNLOAD ---------- */
.apk-hero { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; }
.apk-phone { display: flex; justify-content: center; }
.apk-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--border); margin-top: 10px; }
.apk-spec { background: #fff; padding: 22px; }
.apk-spec .sl { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); }
.apk-spec .sv { font-family: var(--ff-display); font-size: 26px; margin-top: 4px; }
.dl-steps { counter-reset: dl; }
.dl-step { display: flex; gap: 20px; padding: 22px 0; border-bottom: 2px solid var(--border); align-items: flex-start; }
.dl-step .dn { font-family: var(--ff-display); font-size: 40px; color: var(--accent-orange); line-height: .9; flex-shrink: 0; width: 54px; }
.dl-step h4 { font-size: 18px; margin-bottom: 4px; }
.dl-step p { color: var(--text-secondary); font-size: 14.5px; font-weight: 300; }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-methods { display: grid; gap: 2px; background: var(--border); }
.cm { background: #fff; padding: 26px; display: flex; gap: 18px; align-items: flex-start; }
.cm .cmi { width: 50px; height: 50px; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cm:hover .cmi { background: var(--accent-orange); }
.cm h4 { font-size: 17px; margin-bottom: 4px; }
.cm p, .cm a { color: var(--text-secondary); font-size: 14.5px; font-weight: 300; }
.cm a:hover { color: var(--accent-orange); }

/* ---------- INFO / LEGAL PAGES ---------- */
.legal-layout { display: grid; grid-template-columns: 260px 1fr; gap: 50px; align-items: start; }
.legal-toc { position: sticky; top: calc(var(--header-h) + 24px); background: var(--bg-section); padding: 26px; }
.legal-toc h4 { font-size: 15px; letter-spacing: 1px; margin-bottom: 16px; }
.legal-toc a { display: block; padding: 8px 0; font-size: 14px; color: var(--text-secondary); font-weight: 300; border-left: 3px solid transparent; padding-left: 12px; margin-left: -12px; }
.legal-toc a:hover { color: var(--accent-orange); border-left-color: var(--accent-orange); }
.legal-updated { font-size: 13px; color: var(--text-muted); margin-bottom: 30px; padding-bottom: 20px; border-bottom: 2px solid var(--border); }

/* ---------- TRUST / DISCLAIMER CALLOUTS ---------- */
.callout { border-left: 5px solid var(--accent-orange); background: var(--bg-section); padding: 24px 28px; margin: 28px 0; }
.callout.warn { border-left-color: #c00; }
.callout h4 { font-size: 18px; margin-bottom: 8px; }
.callout p { color: var(--text-secondary); font-weight: 300; }

.age-badge { display: inline-flex; align-items: center; gap: 8px; background: #c00; color: #fff; font-weight: 700; font-size: 13px; padding: 6px 14px; letter-spacing: .5px; }

/* ---------- AUTHOR / E-E-A-T BOX ---------- */
.author-box { display: flex; gap: 20px; align-items: center; background: var(--bg-section); padding: 26px; margin: 34px 0; }
.author-box .ab-av { width: 64px; height: 64px; background: var(--primary); color: #fff; font-family: var(--ff-display); font-size: 28px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.author-box b { font-size: 16px; }
.author-box .role { color: var(--accent-orange); font-size: 13px; font-weight: 600; letter-spacing: .5px; }
.author-box p { font-size: 13.5px; color: var(--text-secondary); font-weight: 300; margin-top: 4px; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,.7); padding: 70px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--border-dark); }
.footer-brand img { height: 40px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; font-weight: 300; max-width: 320px; margin-bottom: 20px; }
.footer-col h4 { color: #fff; font-size: 15px; letter-spacing: 1.5px; margin-bottom: 20px; }
.footer-col a { display: block; padding: 7px 0; font-size: 14px; font-weight: 300; }
.footer-col a:hover { color: var(--accent-orange); padding-left: 6px; }
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid var(--border-dark); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--accent-orange); border-color: var(--accent-orange); color: #fff; padding-left: 0; }
.footer-social svg { width: 18px; height: 18px; }
.footer-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 18px; }
.footer-badge { border: 1px solid var(--border-dark); padding: 8px 14px; font-size: 12px; font-weight: 500; letter-spacing: .5px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.footer-badge .age-badge { padding: 3px 8px; font-size: 11px; }
.footer-disclaimer { padding: 30px 0; font-size: 12.5px; font-weight: 300; color: var(--text-muted); line-height: 1.7; border-bottom: 1px solid var(--border-dark); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; gap: 16px; flex-wrap: wrap; font-size: 13px; }
.footer-bottom .fb-links { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- FLOATING WHATSAPP ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 900;
  background: #25D366; color: #fff; width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,.5);
  animation: wa-pulse 2.4s infinite;
}
.wa-float svg { width: 32px; height: 32px; }
.wa-float:hover { transform: scale(1.08); }
@keyframes wa-pulse { 0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,.5); } 50% { box-shadow: 0 8px 34px rgba(37,211,102,.85); } }

/* ---------- REVEAL ANIM ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
}
@media (max-width: 900px) {
  :root { --header-h: 70px; }
  .nav, .header-cta .btn-ghost { display: none; }
  .burger { display: flex; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat { border-bottom: 1px solid var(--border-dark); }
  .cards, .testimonials, .steps { grid-template-columns: 1fr; }
  .apk-hero, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .numbered { grid-template-columns: 1fr; }
  .num-item:nth-child(odd) { border-right: 0; }
}
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .hero-inner { padding: 66px 0 60px; }
  .games-grid { grid-template-columns: 1fr; }
  .apk-specs { grid-template-columns: 1fr; }
  .topbar .tb-right { display: none; }
  .topbar .wrap { justify-content: center; }
  .cta-strip .wrap { flex-direction: column; text-align: center; }
  .stat { padding: 34px 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .btn { width: 100%; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}
