/* ==========================================================================
   Tiger247 - Vibrant Gradient Diagonals
   Fonts: Oswald (headings) / Quicksand (body)
   ========================================================================== */

:root {
  --orange: #f47422;
  --purple: #6610f2;
  --dark: #343a40;
  --dark-2: #2a2f34;
  --dark-3: #21252a;
  --white: #ffffff;
  --off-white: #f6f4fb;
  --grey: #6c757d;
  --light-grey: #e7e4ef;
  --text: #2b2f34;
  --text-muted: #5b6169;

  --grad: linear-gradient(120deg, var(--orange) 0%, #e8563e 45%, var(--purple) 100%);
  --grad-soft: linear-gradient(120deg, #fff2e8 0%, #f0e9ff 100%);
  --grad-rev: linear-gradient(300deg, var(--orange) 0%, var(--purple) 100%);

  --head: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  --body: 'Quicksand', 'Segoe UI', system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 12px 30px rgba(33, 20, 60, 0.12);
  --shadow-lg: 0 24px 60px rgba(33, 20, 60, 0.22);
  --cut: 4vw;
  --maxw: 1180px;
}

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

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

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

img { max-width: 100%; display: block; height: auto; }
a { color: var(--purple); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--orange); }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--head);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: .5px;
  color: var(--dark);
  text-transform: uppercase;
}

h1 { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 4vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 820px; }

.text-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--orange);
}

.center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--head);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background-position .5s ease;
  color: #fff;
  position: relative;
  line-height: 1;
}

.btn-primary {
  background: var(--grad);
  background-size: 180% 180%;
  background-position: 0% 50%;
  box-shadow: 0 10px 24px rgba(102, 16, 242, .28);
  color: #fff;
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-3px);
  background-position: 100% 50%;
  box-shadow: 0 16px 34px rgba(244, 116, 34, .4);
}

.btn-ghost {
  background: transparent;
  border: 2px solid rgba(255,255,255,.85);
  color: #fff;
  padding: 13px 32px;
}
.btn-ghost:hover { background: #fff; color: var(--purple); transform: translateY(-3px); }

.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { color: #fff; background: var(--dark-3); transform: translateY(-3px); }

.btn-wa { background: #25D366; color: #fff; box-shadow: 0 10px 24px rgba(37,211,102,.3); }
.btn-wa:hover { color: #fff; background: #1ebe5b; transform: translateY(-3px); }

.btn-lg { padding: 18px 44px; font-size: 1.1rem; }
.btn-block { display: flex; width: 100%; }

.pulse { animation: pulse 2.4s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 10px 24px rgba(102,16,242,.28), 0 0 0 0 rgba(244,116,34,.5); }
  70% { box-shadow: 0 10px 24px rgba(102,16,242,.28), 0 0 0 18px rgba(244,116,34,0); }
  100% { box-shadow: 0 10px 24px rgba(102,16,242,.28), 0 0 0 0 rgba(244,116,34,0); }
}

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
  background: transparent;
}
.nav.scrolled {
  background: var(--dark);
  padding: 10px 0;
  box-shadow: 0 6px 24px rgba(0,0,0,.28);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 40px; width: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,.25)); }
.nav.scrolled .nav-logo img { height: 36px; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  color: #fff;
  font-family: var(--head);
  font-weight: 500;
  font-size: .98rem;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 8px 14px;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 3px;
  border-radius: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links .btn { padding: 10px 22px; font-size: .9rem; color: #fff; }
.nav-links .btn::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 3px; border-radius: 3px;
  background: #fff; transition: .3s ease;
}
.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;
  background: var(--grad);
  background-size: 200% 200%;
  animation: gradShift 14s ease infinite;
  color: #fff;
  padding: 190px 0 170px;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 5vw), 0 100%);
  overflow: hidden;
}
@keyframes gradShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.18), transparent 45%),
              radial-gradient(circle at 85% 75%, rgba(0,0,0,.16), transparent 50%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }
.hero .eyebrow {
  display: inline-block;
  font-family: var(--head);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: .85rem;
  background: rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.35);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero h1 { color: #fff; text-shadow: 0 4px 24px rgba(0,0,0,.28); margin-bottom: 18px; }
.hero p.lead {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 500;
  max-width: 720px;
  margin: 0 auto 34px;
  color: rgba(255,255,255,.95);
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex; justify-content: center; gap: 44px; flex-wrap: wrap;
  margin-top: 54px;
}
.hero-stats .stat { text-align: center; }
.hero-stats .num {
  font-family: var(--head); font-weight: 700;
  font-size: 2.4rem; line-height: 1; display: block;
}
.hero-stats .lbl { font-size: .82rem; letter-spacing: 1.5px; text-transform: uppercase; opacity: .9; }

/* ---------- Sections ---------- */
.section { padding: 90px 0; position: relative; }
.section-sm { padding: 60px 0; }

.sec-dark {
  background: var(--dark);
  color: #e9ecef;
  clip-path: polygon(0 var(--cut), 100% 0, 100% calc(100% - var(--cut)), 0 100%);
  margin: calc(var(--cut) * -1) 0;
  padding: calc(90px + var(--cut)) 0;
  position: relative;
  z-index: 1;
}
.sec-dark h1, .sec-dark h2, .sec-dark h3, .sec-dark h4 { color: #fff; }
.sec-dark p { color: #c7ccd2; }

.sec-gradient {
  background: var(--grad);
  background-size: 200% 200%;
  animation: gradShift 16s ease infinite;
  color: #fff;
  clip-path: polygon(0 var(--cut), 100% 0, 100% calc(100% - var(--cut)), 0 100%);
  margin: calc(var(--cut) * -1) 0;
  padding: calc(90px + var(--cut)) 0;
  position: relative;
  z-index: 1;
}
.sec-gradient h2, .sec-gradient h3 { color: #fff; }
.sec-gradient p { color: rgba(255,255,255,.95); }

.sec-soft { background: var(--grad-soft); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 54px; }
.section-head .kicker {
  font-family: var(--head); font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; font-size: .85rem;
  color: var(--orange); display: block; margin-bottom: 12px;
}
.sec-dark .section-head .kicker, .sec-gradient .section-head .kicker { color: #ffd9bf; }
.section-head p { color: var(--text-muted); font-size: 1.08rem; }
.sec-dark .section-head p { color: #c7ccd2; }

/* ---------- Cards / gradient border ---------- */
.grid { display: grid; gap: 26px; }
.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: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid rgba(0,0,0,.05);
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.card-grad {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
}
.card-grad::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius);
  padding: 2px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.card-grad:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.sec-dark .card-grad, .sec-dark .card { background: var(--dark-2); border-color: rgba(255,255,255,.06); }
.sec-dark .card h3, .sec-dark .card-grad h3 { color: #fff; }
.sec-dark .card p, .sec-dark .card-grad p { color: #b8bec5; }

.card .icon, .card-grad .icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(102,16,242,.25);
}
.card h3, .card-grad h3 { margin-bottom: 10px; }
.card p, .card-grad p { color: var(--text-muted); font-size: .98rem; }

/* ---------- Sport cards (image) ---------- */
.sport-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
  min-height: 230px;
  display: flex;
  align-items: flex-end;
}
.sport-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  z-index: 0;
}
.sport-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(33,20,60,.9) 0%, rgba(33,20,60,.35) 55%, rgba(244,116,34,.15) 100%);
  z-index: 1;
}
.sport-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.sport-card:hover img { transform: scale(1.08); }
.sport-card .sport-body { position: relative; z-index: 2; padding: 22px; color: #fff; width: 100%; }
.sport-card .tag {
  display: inline-block; font-family: var(--head); font-weight: 600;
  font-size: .7rem; letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--grad); padding: 4px 12px; border-radius: 40px; margin-bottom: 8px;
}
.sport-card h3 { color: #fff; margin-bottom: 4px; }
.sport-card p { color: rgba(255,255,255,.85); font-size: .9rem; margin: 0; }

/* ---------- Feature / split rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.split-media { position: relative; }
.split-media .badge-float {
  position: absolute; bottom: -18px; right: -12px;
  background: #fff; border-radius: 14px; padding: 12px 18px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px;
  font-family: var(--head); font-weight: 600; color: var(--dark);
}
.split-media .badge-float .dot { width: 12px; height: 12px; border-radius: 50%; background: #25D366; box-shadow: 0 0 0 4px rgba(37,211,102,.25); }

.feature-list { margin-top: 22px; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .chk {
  flex: 0 0 auto; width: 28px; height: 28px; border-radius: 8px;
  background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 700; margin-top: 2px;
}
.feature-list b { color: inherit; }

/* ---------- Payments ---------- */
.pay-grid { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.pay-chip {
  background: #fff; border: 1px solid var(--light-grey);
  border-radius: 50px; padding: 12px 24px;
  font-family: var(--head); font-weight: 600; letter-spacing: .5px;
  color: var(--dark); box-shadow: 0 6px 16px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; align-items: center; gap: 10px;
}
.pay-chip:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pay-chip .em { font-size: 1.2rem; }

/* ---------- Stats strip ---------- */
.stats-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; text-align: center; }
.stats-strip .num { font-family: var(--head); font-weight: 700; font-size: 2.6rem; color: #fff; line-height: 1; }
.stats-strip .num span { color: #ffd9bf; }
.stats-strip .lbl { text-transform: uppercase; letter-spacing: 1.5px; font-size: .8rem; margin-top: 6px; color: rgba(255,255,255,.9); }

/* ---------- Tools ---------- */
.tools-wrap { display: grid; gap: 30px; }
.tool {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
  border: 1px solid rgba(0,0,0,.05);
}
.tool-head {
  background: var(--grad); color: #fff; padding: 22px 28px;
  display: flex; align-items: center; gap: 16px;
}
.tool-head .t-ico {
  width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex: 0 0 auto;
}
.tool-head h3 { color: #fff; margin: 0; }
.tool-head p { color: rgba(255,255,255,.9); margin: 2px 0 0; font-size: .88rem; }
.tool-body { padding: 28px; }

.field { margin-bottom: 18px; }
.field label {
  display: block; font-family: var(--head); font-weight: 500; letter-spacing: .5px;
  text-transform: uppercase; font-size: .82rem; color: var(--dark); margin-bottom: 8px;
}
.field input, .field select {
  width: 100%; padding: 13px 16px; border-radius: 10px;
  border: 2px solid var(--light-grey); background: #fff;
  font-family: var(--body); font-size: 1rem; color: var(--text);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(244,116,34,.15);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Handicap result bar */
.compare-bar {
  height: 34px; border-radius: 40px; overflow: hidden; display: flex;
  background: var(--light-grey); margin: 8px 0 6px; box-shadow: inset 0 2px 6px rgba(0,0,0,.1);
}
.compare-bar .a { background: linear-gradient(90deg, var(--orange), #ff9a56); transition: width .6s ease; display:flex; align-items:center; justify-content:flex-start; padding-left:12px; }
.compare-bar .b { background: linear-gradient(90deg, #8b52f5, var(--purple)); transition: width .6s ease; display:flex; align-items:center; justify-content:flex-end; padding-right:12px; }
.compare-bar span { color:#fff; font-family: var(--head); font-weight:600; font-size:.85rem; }
.result-box {
  margin-top: 18px; padding: 20px; border-radius: 12px;
  background: var(--grad-soft); border: 1px solid var(--light-grey);
}
.result-box .rrow { display:flex; justify-content:space-between; padding:6px 0; border-bottom:1px dashed rgba(0,0,0,.1); }
.result-box .rrow:last-child { border-bottom:none; }
.result-box .rrow b { font-family: var(--head); color: var(--purple); }
.result-note { margin-top: 12px; font-size: .95rem; color: var(--text-muted); font-style: italic; }

/* Tiger Hunt game */
.hunt-top { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; margin-bottom:18px; }
.hunt-score { display:flex; gap:22px; }
.hunt-score .box { text-align:center; }
.hunt-score .v { font-family: var(--head); font-weight:700; font-size:1.6rem; color: var(--purple); line-height:1; }
.hunt-score .k { font-size:.72rem; text-transform:uppercase; letter-spacing:1px; color: var(--text-muted); }
.hunt-grid { display:grid; grid-template-columns: repeat(5,1fr); gap:10px; max-width:420px; margin:0 auto; }
.tile {
  aspect-ratio: 1/1; border-radius:12px; border:none; cursor:pointer;
  background: linear-gradient(135deg, #1f8a3b, #f47422);
  position:relative; display:flex; align-items:center; justify-content:center;
  font-size:1.6rem; color:#fff; font-family: var(--head); font-weight:700;
  transition: transform .15s ease, box-shadow .2s ease;
  box-shadow: 0 6px 14px rgba(0,0,0,.14);
  overflow:hidden;
}
.tile::before {
  content:'🌿'; position:absolute; font-size:1.4rem; opacity:.35;
}
.tile:hover:not(:disabled) { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 20px rgba(0,0,0,.2); }
.tile:disabled { cursor: default; }
.tile.safe { background: linear-gradient(135deg,#e8f7ec,#d3f0da); color: var(--dark); box-shadow: inset 0 0 0 2px #1f8a3b; }
.tile.safe::before { content:''; }
.tile.tiger { background: linear-gradient(135deg,#ff5a3c,#6610f2); animation: shake .4s; }
.tile.tiger::before { content:''; }
@keyframes shake { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-6px)} 75%{transform:translateX(6px)} }
.hunt-msg { text-align:center; margin-top:18px; font-family: var(--head); font-weight:600; font-size:1.15rem; min-height:1.6rem; }
.hunt-msg.win { color:#1f8a3b; }
.hunt-msg.lose { color:#e8563e; }
.hunt-actions { display:flex; gap:12px; justify-content:center; margin-top:16px; flex-wrap:wrap; }

/* Over/Under predictor */
.pred-engine {
  margin: 18px 0; padding: 26px; border-radius: 14px; text-align:center;
  background: var(--dark); color:#fff; position:relative; overflow:hidden;
}
.pred-dial {
  width:120px; height:120px; border-radius:50%; margin:0 auto 14px;
  background: conic-gradient(var(--orange) 0deg, var(--purple) 360deg);
  display:flex; align-items:center; justify-content:center; position:relative;
}
.pred-dial::after { content:''; position:absolute; inset:12px; border-radius:50%; background: var(--dark); }
.pred-dial .spin-ico { position:relative; z-index:2; font-size:2rem; }
.pred-dial.spinning { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.pred-split { display:flex; height:44px; border-radius:40px; overflow:hidden; margin-top:14px; box-shadow: inset 0 2px 6px rgba(0,0,0,.3); }
.pred-split .over { background: linear-gradient(90deg,var(--orange),#ff9a56); display:flex; align-items:center; padding-left:16px; transition: width .8s ease; }
.pred-split .under { background: linear-gradient(90deg,#8b52f5,var(--purple)); display:flex; align-items:center; justify-content:flex-end; padding-right:16px; transition: width .8s ease; }
.pred-split span { color:#fff; font-family: var(--head); font-weight:700; }
.pred-context { margin-top:16px; padding:16px; border-radius:12px; background: var(--grad-soft); font-size:.95rem; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow); border:1px solid rgba(0,0,0,.05);
}
.sec-dark .faq-item { background: var(--dark-2); border-color: rgba(255,255,255,.07); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 24px; font-family: var(--head); font-weight: 500; font-size: 1.08rem;
  color: var(--dark); display: flex; justify-content: space-between; align-items: center; gap: 16px;
  letter-spacing: .3px;
}
.sec-dark .faq-q { color: #fff; }
.faq-q .ic {
  flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%;
  background: var(--grad); color:#fff; display:flex; align-items:center; justify-content:center;
  font-size: 1.2rem; transition: transform .3s ease;
}
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 24px 20px; color: var(--text-muted); margin: 0; }
.sec-dark .faq-a p { color: #b8bec5; }

/* ---------- Testimonials ---------- */
.testi-card { background:#fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); height:100%; position:relative; border:1px solid rgba(0,0,0,.05); }
.testi-card .stars { color: #f5a623; letter-spacing:2px; margin-bottom: 12px; font-size:1.05rem; }
.testi-card p { color: var(--text); font-size: 1rem; font-style: italic; }
.testi-user { display:flex; align-items:center; gap:12px; margin-top:18px; }
.testi-user .av {
  width:46px; height:46px; border-radius:50%; background: var(--grad);
  display:flex; align-items:center; justify-content:center; color:#fff;
  font-family: var(--head); font-weight:700; font-size:1.1rem; flex:0 0 auto;
}
.testi-user .who b { font-family: var(--head); color: var(--dark); display:block; letter-spacing:.5px; }
.testi-user .who span { font-size:.85rem; color: var(--text-muted); }

/* ---------- Responsible gaming banner ---------- */
.rg-banner {
  background: var(--dark-3); color:#cfd4da; border-radius: var(--radius);
  padding: 26px 30px; display:flex; align-items:center; gap:20px; flex-wrap:wrap;
  justify-content:center; text-align:center;
}
.rg-banner .rg-18 {
  flex:0 0 auto; width:60px; height:60px; border-radius:50%;
  border:3px solid var(--orange); color: var(--orange);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--head); font-weight:700; font-size:1.3rem;
}
.rg-banner p { margin:0; font-size:.98rem; }
.rg-banner a { color: #ff9a56; text-decoration: underline; font-weight:600; }

/* ---------- Auth / Forms ---------- */
.auth-wrap {
  min-height: 100vh; display:flex; align-items:center; justify-content:center;
  padding: 130px 20px 80px;
  background: var(--grad);
  background-size: 200% 200%; animation: gradShift 16s ease infinite;
  position:relative;
}
.auth-wrap::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(circle at 15% 20%, rgba(255,255,255,.15), transparent 45%),
              radial-gradient(circle at 85% 80%, rgba(0,0,0,.18), transparent 50%);
}
.auth-card {
  position:relative; z-index:2;
  background:#fff; border-radius: var(--radius-lg);
  width:100%; max-width: 460px; box-shadow: var(--shadow-lg);
  overflow:hidden;
}
.auth-card .auth-top {
  background: var(--dark); padding: 30px 34px 26px; text-align:center; position:relative;
}
.auth-card .auth-top::after {
  content:''; position:absolute; left:0; right:0; bottom:0; height:5px; background: var(--grad);
}
.auth-card .auth-top img { height: 40px; width:auto; margin:0 auto 14px; }
.auth-card .auth-top h1 { font-size: 1.7rem; color:#fff; margin-bottom:6px; }
.auth-card .auth-top p { color:#b8bec5; font-size:.92rem; margin:0; }
.auth-body { padding: 30px 34px 34px; }

.input-wrap { position: relative; }
.toggle-pw {
  position:absolute; right:12px; top:50%; transform: translateY(-50%);
  background:none; border:none; cursor:pointer; font-size:1.1rem; color: var(--grey);
  padding:4px 6px; line-height:1;
}
.toggle-pw:hover { color: var(--orange); }

.strength { margin-top: 10px; }
.strength-bars { display:flex; gap:6px; }
.strength-bars .sb { flex:1; height:6px; border-radius:4px; background: var(--light-grey); transition: background .3s ease; }
.strength-bars .sb.on-1 { background: #e8563e; }
.strength-bars .sb.on-2 { background: #f5a623; }
.strength-bars .sb.on-3 { background: #f4c430; }
.strength-bars .sb.on-4 { background: #1f8a3b; }
.strength-label { font-size:.8rem; margin-top:6px; color: var(--text-muted); font-family: var(--head); letter-spacing:.5px; }

.check-row { display:flex; gap:12px; align-items:flex-start; margin-bottom:14px; }
.check-row input[type=checkbox] { width:20px; height:20px; margin-top:3px; accent-color: var(--purple); flex:0 0 auto; cursor:pointer; }
.check-row label { font-size:.9rem; color: var(--text-muted); line-height:1.5; }
.check-row a { font-weight:600; }

.auth-alt { text-align:center; margin-top:20px; font-size:.95rem; color: var(--text-muted); }
.auth-alt a { font-weight:600; font-family: var(--head); letter-spacing:.5px; }
.forgot { text-align:right; margin-top:-8px; margin-bottom:16px; }
.forgot a { font-size:.86rem; font-family: var(--head); letter-spacing:.5px; }

.form-err { color:#e8563e; font-size:.82rem; margin-top:6px; min-height:1rem; font-weight:600; }

/* ---------- Contact ---------- */
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items:start; }
.contact-info .ci-item { display:flex; gap:16px; align-items:flex-start; margin-bottom:24px; }
.contact-info .ci-ico {
  width:52px; height:52px; border-radius:14px; background: var(--grad); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:1.4rem; flex:0 0 auto;
  box-shadow: 0 8px 18px rgba(102,16,242,.22);
}
.contact-info .ci-item h4 { margin-bottom:4px; }
.contact-info .ci-item p { color: var(--text-muted); margin:0; }
.contact-card { background:#fff; border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-lg); border:1px solid rgba(0,0,0,.05); }
textarea.field-ta {
  width:100%; padding:13px 16px; border-radius:10px; border:2px solid var(--light-grey);
  font-family: var(--body); font-size:1rem; resize:vertical; min-height:130px; color: var(--text);
}
textarea.field-ta:focus { outline:none; border-color: var(--orange); box-shadow:0 0 0 4px rgba(244,116,34,.15); }

/* ---------- Legal / prose ---------- */
.page-hero {
  background: var(--grad); background-size:200% 200%; animation: gradShift 16s ease infinite;
  color:#fff; padding: 160px 0 110px; text-align:center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4vw), 0 100%);
}
.page-hero h1 { color:#fff; text-shadow:0 4px 20px rgba(0,0,0,.25); }
.page-hero p { color: rgba(255,255,255,.95); max-width:640px; margin: 14px auto 0; font-size:1.1rem; }
.page-hero .crumb { font-family: var(--head); letter-spacing:1.5px; text-transform:uppercase; font-size:.82rem; opacity:.9; margin-bottom:14px; }
.page-hero .crumb a { color:#fff; }

.prose { max-width: 860px; margin: 0 auto; }
.prose h2 { margin: 38px 0 14px; padding-top: 6px; }
.prose h2:first-child { margin-top:0; }
.prose h3 { margin: 26px 0 10px; color: var(--purple); }
.prose p { color: var(--text); margin-bottom: 14px; }
.prose ul.bullet { margin: 0 0 16px; padding-left: 0; display:grid; gap:10px; }
.prose ul.bullet li { position: relative; padding-left: 30px; color: var(--text); }
.prose ul.bullet li::before {
  content:'▸'; position:absolute; left:6px; top:0; color: var(--orange); font-weight:700;
}
.prose .updated { color: var(--text-muted); font-size:.9rem; font-style:italic; margin-bottom: 28px; }
.legal-toc {
  background: var(--grad-soft); border-radius: var(--radius); padding: 24px 28px; margin-bottom: 34px;
  border:1px solid var(--light-grey);
}
.legal-toc h4 { margin-bottom:12px; }
.legal-toc ol { padding-left: 20px; display:grid; gap:6px; }
.legal-toc a { font-weight:500; }

.callout {
  border-left: 4px solid var(--orange);
  background: var(--grad-soft);
  padding: 18px 22px; border-radius: 0 12px 12px 0; margin: 22px 0;
}
.callout p { margin: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color:#c7ccd2; position: relative; padding: 70px 0 30px; }
.footer::before { content:''; position:absolute; top:0; left:0; right:0; height:5px; background: var(--grad); }
.footer-grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.footer-col h4 { color:#fff; font-size:1.05rem; margin-bottom:18px; letter-spacing:1px; }
.footer-col img.f-logo { height: 40px; width:auto; margin-bottom:16px; }
.footer-col p { font-size:.92rem; color:#a7adb5; }
.footer-col ul li { margin-bottom:10px; }
.footer-col ul a { color:#a7adb5; font-size:.94rem; }
.footer-col ul a:hover { color: var(--orange); }
.f-pay { display:flex; flex-wrap:wrap; gap:8px; margin-top:14px; }
.f-pay span { background: var(--dark-2); border-radius:6px; padding:5px 10px; font-size:.75rem; font-family:var(--head); letter-spacing:.5px; color:#cfd4da; }

.rg-badges { display:flex; flex-wrap:wrap; gap:12px; justify-content:center; padding: 26px 0; border-top:1px solid rgba(255,255,255,.08); border-bottom:1px solid rgba(255,255,255,.08); margin-bottom: 26px; }
.rg-badge {
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--head); font-weight:600; letter-spacing:1px; font-size:.8rem;
  color:#fff; background: var(--dark-2); border:1px solid rgba(255,255,255,.1);
  padding:10px 18px; border-radius:50px;
}
.rg-badge .b18 { color: var(--orange); font-weight:700; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; }
.footer-bottom p { font-size:.86rem; color:#8b9098; margin:0; }
.footer-disclaimer { font-size:.82rem; color:#8b9098; line-height:1.6; margin-top:18px; text-align:center; max-width:900px; margin-left:auto; margin-right:auto; }
.footer-disclaimer a { color:#ff9a56; }

/* ---------- Animations: reveal ---------- */
.reveal { opacity:0; transform: translateY(30px) translateX(-14px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity:1; transform: translateY(0) translateX(0); }
.reveal.d1 { transition-delay:.08s; } .reveal.d2 { transition-delay:.16s; } .reveal.d3 { transition-delay:.24s; } .reveal.d4 { transition-delay:.32s; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  :root { --cut: 5vw; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .stats-strip { grid-template-columns: repeat(2,1fr); gap:26px; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split.reverse .split-media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap:34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap:30px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(80vw, 320px);
    background: var(--dark);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 90px 26px 30px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform .35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,.4);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: 14px 6px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-links a::after { display:none; }
  .nav-links .btn { margin-top: 12px; justify-content:center; }
  .nav-toggle { display:flex; z-index: 1100; }
  .nav.scrolled, .nav { background: var(--dark); }
  .nav { padding: 12px 0; box-shadow: 0 4px 20px rgba(0,0,0,.25); }
  .hero { padding: 140px 0 130px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap:28px; }
  .footer-bottom { flex-direction: column; text-align:center; }
  .hero-stats { gap: 30px; }
  .section { padding: 64px 0; }
  .sec-dark, .sec-gradient { padding: calc(64px + var(--cut)) 0; }
}

/* Keep nav dark background always after we make it fixed; transparent only on top of hero for desktop already handled */

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity:1 !important; transform:none !important; }
  .hero, .sec-gradient, .auth-wrap, .page-hero { animation: none !important; }
}
