/* ==========================================================================
   MGLION — Predator Bold Design System
   Fonts: Chakra Petch (headings) + Sarabun (body)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --primary: #03b37f;
  --primary-dark: #029a6d;
  --bg-body: #16191c;
  --bg-section: #1c2024;
  --bg-card: #22272c;
  --bg-overlay: rgba(0, 0, 0, 0.75);
  --border: #2d3339;
  --text-primary: #ffffff;
  --text-secondary: #8c9aa8;
  --accent: #00e6a0;
  --gold: #d4a836;

  --font-head: 'Chakra Petch', 'Segoe UI', sans-serif;
  --font-body: 'Sarabun', 'Segoe UI', sans-serif;

  --radius: 6px;
  --radius-lg: 10px;
  --maxw: 1200px;
  --gutter: 20px;

  --clip-angle: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  --clip-btn: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);

  --shadow-glow: 0 0 24px rgba(3, 179, 127, 0.28);
  --trans: 0.25s ease;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  font-weight: 400;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--primary); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-primary);
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 72px 0; position: relative; }
.section--alt { background: var(--bg-section); }
.section--tight { padding: 48px 0; }

/* Subtle diagonal stripe background pattern */
.stripe-bg {
  position: relative;
}
.stripe-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.015) 0,
    rgba(255, 255, 255, 0.015) 1px,
    transparent 1px,
    transparent 11px
  );
  pointer-events: none;
  z-index: 0;
}
.stripe-bg > * { position: relative; z-index: 1; }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.section-head .eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  margin-bottom: 16px;
  background: var(--bg-card);
}
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: 14px; }
.section-head p { color: var(--text-secondary); font-size: 1.02rem; }

.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 30px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
  line-height: 1;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--primary); color: #06231a; }
.btn--primary:hover { background: var(--accent); color: #06231a; box-shadow: var(--shadow-glow); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--text-primary); border: 1px solid var(--border); }
.btn--ghost:hover { border-color: var(--primary); color: var(--accent); transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: #241c05; }
.btn--gold:hover { background: #e6bb4a; transform: translateY(-2px); box-shadow: 0 0 24px rgba(212, 168, 54, 0.3); }
.btn--lg { padding: 17px 40px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn--wa { background: #25d366; color: #04310f; }
.btn--wa:hover { background: #2ee673; color: #04310f; transform: translateY(-2px); box-shadow: 0 0 24px rgba(37, 211, 102, 0.35); }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(22, 25, 28, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo img { height: 40px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 9px 12px;
  border-radius: var(--radius);
  transition: color var(--trans), background var(--trans);
}
.nav__links a:hover, .nav__links a.active { color: var(--text-primary); background: var(--bg-card); }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span { width: 26px; height: 3px; background: var(--text-primary); border-radius: 2px; transition: var(--trans); }
.nav__toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(12, 14, 16, 0.86), rgba(12, 14, 16, 0.93)),
              url('../images/cricket-india-srilanka.jpg') center/cover no-repeat;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(3,179,127,0.05) 0, rgba(3,179,127,0.05) 2px, transparent 2px, transparent 26px);
  pointer-events: none;
}
/* claw-mark decorative lines */
.hero__claws {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%) rotate(-18deg);
  display: flex;
  gap: 16px;
  opacity: 0.14;
  pointer-events: none;
}
.hero__claws span {
  display: block;
  width: 6px;
  height: 220px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  border-radius: 4px;
}
.hero__claws span:nth-child(2) { height: 280px; }
.hero__claws span:nth-child(3) { height: 240px; }
.hero .container { position: relative; z-index: 2; }
.hero__inner { max-width: 720px; padding: 60px 0; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(3, 179, 127, 0.1);
  border: 1px solid rgba(3, 179, 127, 0.35);
  padding: 7px 16px;
  border-radius: var(--radius);
  margin-bottom: 22px;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  line-height: 1.02;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.hero h1 .accent { color: var(--primary); display: block; }
.hero__sub { font-size: clamp(1rem, 2.2vw, 1.22rem); color: var(--text-secondary); max-width: 620px; margin-bottom: 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 44px; }
.hero__stats .stat b { font-family: var(--font-head); font-size: 1.9rem; color: var(--accent); display: block; line-height: 1; }
.hero__stats .stat span { font-size: 0.82rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; }

/* ==========================================================================
   Marquee ticker
   ========================================================================== */
.ticker {
  background: var(--primary-dark);
  color: #04241a;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  border-top: 1px solid rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(0,0,0,0.2);
}
.ticker__track { display: inline-flex; gap: 44px; animation: ticker 26s linear infinite; }
.ticker__track span { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; }
.ticker__track span::before { content: "◆"; margin-right: 44px; opacity: 0.55; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   Cards / Grids
   ========================================================================== */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 26px 24px;
  clip-path: var(--clip-angle);
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
}
.card:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: var(--shadow-glow); }
.card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: rgba(3, 179, 127, 0.12);
  border: 1px solid rgba(3, 179, 127, 0.3);
  color: var(--accent);
  margin-bottom: 16px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.12rem; margin-bottom: 10px; letter-spacing: 0.5px; }
.card p { color: var(--text-secondary); font-size: 0.95rem; }

/* Feature 2x4 square blocks */
.feature-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 28px 22px;
  text-align: center;
  transition: var(--trans);
  position: relative;
}
.feature-block::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.feature-block:hover { border-color: var(--primary); background: #262c31; }
.feature-block:hover::before { transform: scaleX(1); }
.feature-block .fb-icon { color: var(--accent); margin-bottom: 14px; display: inline-flex; }
.feature-block .fb-icon svg { width: 34px; height: 34px; }
.feature-block h4 { font-size: 1rem; margin-bottom: 8px; }
.feature-block p { font-size: 0.88rem; color: var(--text-secondary); }

/* ==========================================================================
   Games strip
   ========================================================================== */
.games-strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 6px 4px 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.games-strip::-webkit-scrollbar { height: 8px; }
.games-strip::-webkit-scrollbar-track { background: var(--bg-section); }
.games-strip::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.games-strip::-webkit-scrollbar-thumb:hover { background: var(--primary); }
.game-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  clip-path: var(--clip-angle);
  transition: var(--trans);
}
.game-card:hover { border-color: var(--primary); box-shadow: var(--shadow-glow); transform: translateY(-4px); }
.game-card__img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.game-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.game-card:hover .game-card__img img { transform: scale(1.06); }
.game-card__tag {
  position: absolute; top: 10px; left: 10px;
  font-family: var(--font-head); font-size: 0.68rem; letter-spacing: 1px; text-transform: uppercase;
  background: var(--primary); color: #06231a; padding: 4px 10px; border-radius: 4px; font-weight: 700;
}
.game-card__tag.hot { background: var(--gold); color: #241c05; }
.game-card__body { padding: 16px 18px; }
.game-card__body h4 { font-size: 1.02rem; margin-bottom: 4px; }
.game-card__body p { font-size: 0.85rem; color: var(--text-secondary); }

/* ==========================================================================
   Stats panels
   ========================================================================== */
.stat-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  padding: 30px 22px;
  text-align: center;
}
.stat-panel b {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-panel span { font-size: 0.85rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; }

/* ==========================================================================
   Bonus banner
   ========================================================================== */
.bonus-banner { border: 1px solid var(--border); overflow: hidden; clip-path: var(--clip-angle); }
.bonus-banner img { width: 100%; }

/* ==========================================================================
   Interactive Tools
   ========================================================================== */
.tool {
  background: var(--bg-card);
  border: 1px solid var(--border);
  clip-path: var(--clip-angle);
  padding: 30px;
}
.tool__head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.tool__head .tool__icon {
  width: 44px; height: 44px; display: grid; place-items: center;
  background: rgba(3,179,127,0.12); border: 1px solid rgba(3,179,127,0.3); color: var(--accent);
}
.tool__head h3 { font-size: 1.25rem; }
.tool__desc { color: var(--text-secondary); font-size: 0.92rem; margin-bottom: 22px; }

.field { margin-bottom: 16px; }
.field label {
  display: block; font-family: var(--font-head); font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-secondary); margin-bottom: 7px;
}
.field input[type="number"], .field input[type="text"], .field select {
  width: 100%;
  background: var(--bg-body);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 12px 14px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--trans);
}
.field input:focus, .field select:focus { outline: none; border-color: var(--primary); }
.field input[type="range"] { width: 100%; accent-color: var(--primary); }
.range-val { color: var(--accent); font-family: var(--font-head); font-weight: 700; }

.tool__result {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px dashed var(--border);
}
.result-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid rgba(45,51,57,0.5); }
.result-row:last-child { border-bottom: none; }
.result-row span { color: var(--text-secondary); font-size: 0.92rem; }
.result-row b { font-family: var(--font-head); font-size: 1.1rem; color: var(--text-primary); }
.result-row b.pos { color: var(--accent); }
.result-row b.neg { color: #ff6b6b; }
.result-row.highlight { background: rgba(3,179,127,0.06); padding: 12px; margin: 8px -12px 0; border-radius: var(--radius); border-bottom: none; }

/* Treasure Hunt */
.hunt-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; flex-wrap: wrap; gap: 12px; }
.hunt-stat { text-align: center; }
.hunt-stat b { font-family: var(--font-head); font-size: 1.5rem; display: block; color: var(--accent); line-height: 1; }
.hunt-stat span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-secondary); }
.hunt-lives { color: #ff6b6b; font-size: 1.3rem; letter-spacing: 3px; }
.hunt-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 18px; }
.hunt-tile {
  aspect-ratio: 1;
  background: var(--bg-body);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid; place-items: center;
  font-size: 1.6rem;
  cursor: pointer;
  transition: var(--trans);
  user-select: none;
}
.hunt-tile:hover:not(.revealed) { border-color: var(--primary); background: #262c31; transform: scale(1.04); }
.hunt-tile.revealed { cursor: default; }
.hunt-tile.prize { background: rgba(3,179,127,0.15); border-color: var(--primary); }
.hunt-tile.skull { background: rgba(255,107,107,0.14); border-color: #ff6b6b; }
.hunt-tile.empty { background: var(--bg-section); opacity: 0.55; }
.hunt-msg { text-align: center; font-family: var(--font-head); letter-spacing: 1px; min-height: 26px; margin-bottom: 16px; }

/* Live Score Simulator */
.sim-scoreboard {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px;
}
.sim-box { background: var(--bg-body); border: 1px solid var(--border); border-top: 3px solid var(--primary); padding: 16px 10px; text-align: center; }
.sim-box b { font-family: var(--font-head); font-size: 1.8rem; color: var(--accent); display: block; line-height: 1; }
.sim-box span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-secondary); }
.sim-balls { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; min-height: 44px; }
.sim-ball {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700;
  background: var(--bg-body); border: 2px solid var(--border);
  animation: pop 0.3s ease;
}
@keyframes pop { from { transform: scale(0.3); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.sim-ball.run4 { border-color: var(--primary); color: var(--accent); }
.sim-ball.run6 { border-color: var(--gold); color: var(--gold); }
.sim-ball.wicket { border-color: #ff6b6b; color: #ff6b6b; }
.sim-ball.dot { color: var(--text-secondary); }
.sim-summary { text-align: center; padding: 16px; background: rgba(3,179,127,0.06); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 18px; display: none; }
.sim-summary.show { display: block; }
.sim-summary b { color: var(--accent); font-family: var(--font-head); }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-item { border: 1px solid var(--border); background: var(--bg-card); margin-bottom: 12px; overflow: hidden; }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q:hover { color: var(--accent); }
.faq-q .icon { flex: 0 0 auto; font-size: 1.4rem; color: var(--primary); transition: transform var(--trans); line-height: 1; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a__inner { padding: 0 22px 20px; color: var(--text-secondary); font-size: 0.96rem; }
.faq-item.open .faq-a { max-height: 500px; }

/* ==========================================================================
   Content prose (legal + article pages)
   ========================================================================== */
.prose { max-width: 860px; margin: 0 auto; }
.prose h2 { font-size: 1.7rem; margin: 38px 0 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.prose h3 { font-size: 1.25rem; margin: 28px 0 12px; color: var(--accent); }
.prose p { margin-bottom: 16px; color: #c3ccd4; }
.prose ul, .prose ol { margin: 0 0 18px 22px; color: #c3ccd4; }
.prose ul li { list-style: none; position: relative; padding-left: 18px; margin-bottom: 9px; }
.prose ul li::before { content: "▸"; position: absolute; left: 0; color: var(--primary); }
.prose ol { list-style: decimal; }
.prose ol li { margin-bottom: 9px; padding-left: 4px; }
.prose ol li::marker { color: var(--primary); font-family: var(--font-head); font-weight: 700; }
.prose a { text-decoration: underline; }
.prose strong { color: var(--text-primary); }
.prose .lede { font-size: 1.12rem; color: var(--text-secondary); margin-bottom: 24px; }

/* Page hero (inner pages) */
.page-hero {
  padding: 56px 0 40px;
  background: linear-gradient(rgba(18,20,23,0.9), rgba(18,20,23,0.97)), var(--bg-section);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(3,179,127,0.04) 0, rgba(3,179,127,0.04) 2px, transparent 2px, transparent 24px);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 12px; }
.page-hero p { color: var(--text-secondary); max-width: 640px; font-size: 1.05rem; }
.breadcrumb { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 16px; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px; }
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--primary); }

/* ==========================================================================
   Auth (login / signup) & APK
   ========================================================================== */
.auth-wrap { max-width: 460px; margin: 0 auto; }
.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  clip-path: var(--clip-angle);
  padding: 36px 32px;
}
.auth-card h2 { font-size: 1.5rem; margin-bottom: 6px; text-align: center; }
.auth-card .sub { text-align: center; color: var(--text-secondary); font-size: 0.92rem; margin-bottom: 26px; }
.auth-note {
  background: rgba(3,179,127,0.07);
  border: 1px solid rgba(3,179,127,0.25);
  border-left: 3px solid var(--primary);
  padding: 14px 16px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-top: 20px;
  border-radius: var(--radius);
}
.auth-alt { text-align: center; margin-top: 20px; font-size: 0.9rem; color: var(--text-secondary); }

.apk-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.apk-meta { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin: 26px 0; }
.apk-meta .m { background: var(--bg-card); border: 1px solid var(--border); padding: 14px 16px; }
.apk-meta .m span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-secondary); display: block; margin-bottom: 3px; }
.apk-meta .m b { font-family: var(--font-head); color: var(--text-primary); font-size: 1.05rem; }
.apk-steps { counter-reset: step; }
.apk-steps li {
  position: relative; padding-left: 52px; margin-bottom: 20px; counter-increment: step;
}
.apk-steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 36px; height: 36px; display: grid; place-items: center;
  background: var(--primary); color: #06231a;
  font-family: var(--font-head); font-weight: 700; border-radius: var(--radius);
}
.apk-steps li h4 { font-size: 1.02rem; margin-bottom: 4px; }
.apk-steps li p { color: var(--text-secondary); font-size: 0.92rem; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #04241a;
  text-align: center;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(0,0,0,0.06) 0, rgba(0,0,0,0.06) 2px, transparent 2px, transparent 22px);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #04241a; font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: 12px; }
.cta-band p { color: #06331f; max-width: 560px; margin: 0 auto 26px; font-weight: 500; }
.cta-band .btn--wa { background: #04241a; color: var(--accent); }
.cta-band .btn--wa:hover { background: #021711; color: var(--accent); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: #101315; border-top: 1px solid var(--border); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 34px; }
.footer-col h5 { font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 18px; color: var(--text-primary); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-secondary); font-size: 0.92rem; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-brand img { height: 42px; margin-bottom: 16px; }
.footer-brand p { color: var(--text-secondary); font-size: 0.92rem; margin-bottom: 16px; max-width: 320px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; display: grid; place-items: center;
  background: var(--bg-card); border: 1px solid var(--border); color: var(--text-secondary);
  transition: var(--trans);
}
.footer-social a:hover { border-color: var(--primary); color: var(--accent); }
.footer-social svg { width: 18px; height: 18px; }
.age-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,107,0.1); border: 1px solid rgba(255,107,107,0.35);
  color: #ff8a8a; font-family: var(--font-head); font-weight: 700; font-size: 0.8rem;
  padding: 6px 12px; border-radius: var(--radius); margin-top: 14px;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 44px;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--text-secondary); font-size: 0.85rem; }
.footer-bottom .fb-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom .fb-links a { color: var(--text-secondary); font-size: 0.85rem; }
.footer-disclaimer { color: #6a7581; font-size: 0.78rem; line-height: 1.6; padding: 18px 0 30px; text-align: center; max-width: 900px; margin: 0 auto; }

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  transition: transform var(--trans);
  animation: waPulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float svg { width: 30px; height: 30px; }
@keyframes waPulse {
  0% { box-shadow: 0 6px 20px rgba(0,0,0,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 6px 20px rgba(0,0,0,0.4), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 20px rgba(0,0,0,0.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* ==========================================================================
   Misc utility
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.lead-list { margin-top: 18px; }
.lead-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; color: #c3ccd4; }
.lead-list li svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--primary); margin-top: 2px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.pill { font-family: var(--font-head); font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; padding: 8px 14px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text-secondary); }
.pill:hover { border-color: var(--primary); color: var(--accent); }

.info-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 18px 20px; border-radius: var(--radius); margin: 22px 0;
}
.info-box h4 { color: var(--gold); font-size: 1rem; margin-bottom: 8px; }
.info-box p { color: var(--text-secondary); font-size: 0.92rem; margin: 0; }

.table-wrap { overflow-x: auto; margin: 22px 0; }
table.data { width: 100%; border-collapse: collapse; min-width: 460px; }
table.data th, table.data td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
table.data th { font-family: var(--font-head); text-transform: uppercase; font-size: 0.78rem; letter-spacing: 1px; color: var(--accent); background: var(--bg-card); }
table.data td { color: #c3ccd4; }
table.data tr:hover td { background: rgba(3,179,127,0.03); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split, .apk-hero { grid-template-columns: 1fr; gap: 28px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .nav__links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg-section);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    gap: 4px;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 13px 14px; font-size: 0.95rem; }
  .nav__toggle { display: flex; }
  .nav__cta .btn--ghost { display: none; }
  .hero { min-height: auto; }
  .hero__inner { padding: 50px 0; }
}
@media (max-width: 620px) {
  .section { padding: 52px 0; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sim-scoreboard { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .sim-box b { font-size: 1.4rem; }
  .apk-meta { grid-template-columns: 1fr; }
  .hunt-grid { gap: 7px; }
  .hunt-tile { font-size: 1.3rem; }
  .tool { padding: 22px 18px; }
  .hero__stats { gap: 22px; }
  .btn { padding: 13px 22px; font-size: 0.88rem; }
}
@media (max-width: 380px) {
  .hunt-tile { font-size: 1.05rem; }
}
