/* =========================================================
   RoyalCric — Premium Cricket ID Provider
   Global stylesheet
   ========================================================= */

:root {
  --bg-0: #07090d;
  --bg-1: #0d1117;
  --bg-2: #131a24;
  --bg-3: #1a2332;
  --line: #222c3d;
  --text: #e6edf5;
  --muted: #8a97ab;
  --gold: #f5c518;
  --gold-2: #e6b800;
  --green: #22c55e;
  --green-2: #16a34a;
  --red: #ef4444;
  --blue: #3b82f6;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --shadow-gold: 0 10px 30px rgba(245,197,24,.18);
  --container: 1200px;
  --nav-h: 72px;
  --wa-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347M12.05 21.785h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 0 1 2.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0 0 12.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 0 0-3.48-8.413Z'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-0);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 { font-family: 'Poppins', Inter, sans-serif; font-weight: 700; line-height: 1.2; margin: 0 0 .6em; }
h1 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--muted); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-title { text-align: center; margin-bottom: 12px; color: var(--text); }
.section-sub { text-align: center; color: var(--muted); max-width: 640px; margin: 0 auto 48px; }

.gold { color: var(--gold); }
.green { color: var(--green); }

/* ------------ Top bar ------------ */
.topbar {
  background: linear-gradient(90deg, #0b0f17 0%, #131a24 50%, #0b0f17 100%);
  border-bottom: 1px solid var(--line);
  font-size: .82rem;
  color: var(--muted);
  padding: 8px 0;
}
.topbar .row { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: nowrap; }
.topbar .ticker {
  display: flex; gap: 20px; align-items: center;
  overflow: hidden; white-space: nowrap;
  flex: 1; min-width: 0;
}
/* show only the first span by default — prevents flash before JS rotates */
.topbar .ticker span { overflow: hidden; text-overflow: ellipsis; }
.topbar .ticker span ~ span { display: none; }
.topbar .ticker span::before { content: "●"; color: var(--green); margin-right: 6px; }
.topbar .socials { white-space: nowrap; }
.topbar .socials a { margin-left: 12px; color: var(--muted); }
.topbar .socials a:hover { color: var(--gold); }

/* ------------ Navbar ------------ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,9,13,.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  height: var(--nav-h);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand { display: flex; align-items: center; gap: 10px; font-family: Poppins, sans-serif; font-weight: 800; font-size: 1.35rem; letter-spacing: .5px; }
.brand-logo {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), #ff9a3c);
  display: grid; place-items: center; color: #0b0f17; font-weight: 900;
  box-shadow: var(--shadow-gold);
}
.brand b { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  padding: 10px 14px; border-radius: 8px; color: var(--text);
  font-size: .95rem; font-weight: 500; transition: .2s;
}
.nav-links a:hover, .nav-links a.active { background: var(--bg-2); color: var(--gold); }

.nav-cta { display: flex; gap: 10px; align-items: center; }
.hamburger { display: none; background: none; border: 0; color: var(--text); font-size: 1.5rem; cursor: pointer; }

/* ------------ Buttons ------------ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px;
  font-weight: 600; font-size: .95rem;
  border: 0; cursor: pointer; transition: .2s;
  text-decoration: none; white-space: nowrap;
}
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #0b0f17; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-green { background: linear-gradient(135deg, var(--green), var(--green-2)); color: #fff; }
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(34,197,94,.3); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* ------------ Hero ------------ */
.hero {
  position: relative; overflow: hidden;
  padding: 90px 0 60px;
  background:
    linear-gradient(180deg, rgba(7,9,13,.85) 0%, rgba(7,9,13,.92) 100%),
    radial-gradient(900px 500px at 20% 0%, rgba(245,197,24,.12), transparent 60%),
    radial-gradient(800px 500px at 100% 100%, rgba(34,197,94,.10), transparent 60%),
    linear-gradient(180deg, #0a0e15 0%, #07090d 100%);
}
.hero.with-bg::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?w=1800&q=80&auto=format&fit=crop');
  background-size: cover; background-position: center;
  opacity: .25; filter: blur(1px);
}
.hero > .container { position: relative; z-index: 1; }
.hero .grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.hero h1 span { color: var(--gold); }
.hero .sub { color: var(--muted); font-size: 1.1rem; margin-bottom: 28px; }
.hero .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero .badges { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .badge {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 999px;
  font-size: .85rem; color: var(--muted);
}
.hero .badge::before { content: "✓"; color: var(--green); font-weight: 800; }

/* Hero visual — ID card mockup */
.id-card {
  background: linear-gradient(135deg, #121a26, #1b2636);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.id-card::before {
  content: ""; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,.25), transparent 70%);
}
.id-card .row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.id-card .tag { font-size: .7rem; letter-spacing: 2px; color: var(--gold); }
.id-card .id-num { font-family: monospace; font-size: 1.4rem; color: var(--text); letter-spacing: 2px; margin: 8px 0 22px; }
.id-card .stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.id-card .stat { background: rgba(255,255,255,.03); border: 1px solid var(--line); padding: 12px; border-radius: 10px; }
.id-card .stat small { color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; }
.id-card .stat b { display: block; color: var(--gold); font-size: 1.3rem; margin-top: 4px; }
.id-card .pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--green); display: inline-block; margin-right: 8px; animation: pulse 1.4s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

/* ------------ Stats strip ------------ */
.stats-strip {
  background: linear-gradient(90deg, var(--bg-1), var(--bg-2), var(--bg-1));
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.stats-strip .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats-strip .num { font-family: Poppins, sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--gold); }
.stats-strip .lbl { color: var(--muted); font-size: .9rem; }

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

.card {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: .25s;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow); }
.card .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(245,197,24,.12); color: var(--gold);
  display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 16px;
}
.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 0; font-size: .95rem; }

/* ------------ Match cards ------------ */
.match-card {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; transition: .25s;
}
.match-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.match-card .league { display: flex; justify-content: space-between; font-size: .8rem; color: var(--muted); margin-bottom: 14px; }
.match-card .league .live { color: var(--red); font-weight: 700; }
.match-card .league .live::before { content: "●"; margin-right: 4px; animation: pulse 1.2s infinite; }
.match-card .teams { display: flex; justify-content: space-between; align-items: center; margin: 14px 0; }
.match-card .team { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.match-card .flag {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, #2a3446, #1a2332);
  display: grid; place-items: center; color: var(--gold); font-weight: 800; font-size: .9rem;
}
.match-card .vs { color: var(--muted); font-size: .85rem; }
.match-card .odds { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin: 14px 0; }
.match-card .odd { background: var(--bg-3); border: 1px solid var(--line); padding: 10px; border-radius: 8px; text-align: center; font-size: .85rem; cursor: pointer; transition: .2s; }
.match-card .odd:hover { border-color: var(--gold); background: rgba(245,197,24,.08); }
.match-card .odd b { color: var(--gold); display: block; margin-top: 4px; }
.match-card .pred {
  padding: 10px 12px; background: rgba(34,197,94,.08);
  border-left: 3px solid var(--green); border-radius: 6px;
  font-size: .9rem; color: var(--text); margin-top: 10px;
}
.match-card .pred b { color: var(--green); }

/* ------------ Bonus cards ------------ */
.bonus-card {
  position: relative;
  background: linear-gradient(135deg, #1a2332, #0f1520);
  border: 2px solid var(--line); border-radius: var(--radius);
  padding: 36px 28px; text-align: center; overflow: hidden;
  transition: .3s;
}
.bonus-card:hover { border-color: var(--gold); transform: translateY(-6px); }
.bonus-card.featured { border-color: var(--gold); }
.bonus-card.featured::after {
  content: "POPULAR"; position: absolute; top: 14px; right: -34px;
  background: var(--gold); color: #0b0f17; font-weight: 800; font-size: .7rem;
  padding: 4px 40px; transform: rotate(40deg); letter-spacing: 2px;
}
.bonus-card .amount { font-family: Poppins, sans-serif; font-size: 3rem; font-weight: 800; color: var(--gold); line-height: 1; margin: 8px 0; }
.bonus-card .amount small { display: block; font-size: 1rem; color: var(--muted); font-weight: 500; letter-spacing: 2px; margin-bottom: 6px; }
.bonus-card h3 { margin: 12px 0; }
.bonus-card ul { list-style: none; padding: 0; margin: 20px 0 24px; text-align: left; }
.bonus-card li { padding: 8px 0; color: var(--muted); font-size: .92rem; border-bottom: 1px dashed var(--line); }
.bonus-card li::before { content: "✓ "; color: var(--green); font-weight: 800; }

/* ------------ Testimonials / proofs ------------ */
.testimonial {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px;
}
.testimonial .stars { color: var(--gold); margin-bottom: 10px; }
.testimonial blockquote { margin: 0 0 16px; color: var(--text); font-style: italic; }
.testimonial .author { display: flex; align-items: center; gap: 12px; }
.testimonial .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #ff9a3c);
  display: grid; place-items: center; color: #0b0f17; font-weight: 800;
}
.testimonial .author small { color: var(--muted); display: block; }

.proof-row {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px;
  padding: 14px 18px; margin-bottom: 10px;
}
.proof-row .user { display: flex; align-items: center; gap: 12px; }
.proof-row .avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-3); display: grid; place-items: center; color: var(--gold); font-weight: 700; }
.proof-row .amt { font-weight: 800; color: var(--green); }
.proof-row small { color: var(--muted); display: block; font-size: .78rem; }

/* ------------ Live blog ------------ */
.live-blog { display: grid; grid-template-columns: 1fr 320px; gap: 30px; }
.blog-entry {
  border-left: 3px solid var(--gold); padding: 0 0 22px 22px; margin-left: 8px; position: relative;
}
.blog-entry::before {
  content: ""; position: absolute; left: -9px; top: 4px; width: 15px; height: 15px;
  border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(245,197,24,.2);
}
.blog-entry .time { color: var(--gold); font-weight: 700; font-size: .85rem; letter-spacing: 1px; }
.blog-entry h4 { margin: 6px 0 4px; }
.blog-entry p { margin: 0; font-size: .95rem; }

.sidebar-card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; margin-bottom: 20px;
}
.sidebar-card h4 { margin-bottom: 14px; color: var(--gold); }
.scoreboard { text-align: center; }
.scoreboard .teams { display: flex; justify-content: space-around; align-items: center; margin: 14px 0; }
.scoreboard .t { font-weight: 700; }
.scoreboard .t small { display: block; color: var(--muted); font-weight: 500; }
.scoreboard .t b { font-size: 1.6rem; color: var(--gold); }

/* ------------ Dream11 ------------ */
.d11-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; }
.d11-pitch {
  background: linear-gradient(180deg, #0f3d20, #0a2614);
  border: 2px solid #1a5a2e; border-radius: var(--radius);
  padding: 30px; position: relative; min-height: 500px;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 40px, rgba(255,255,255,.03) 40px 42px),
    linear-gradient(180deg, #0f3d20, #0a2614);
}
.d11-pitch h3 { color: var(--gold); text-align: center; margin-bottom: 20px; }
.d11-row { display: flex; justify-content: center; gap: 20px; margin-bottom: 24px; flex-wrap: wrap; }
.d11-player {
  text-align: center; width: 80px;
}
.d11-player .jersey {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 6px;
  background: linear-gradient(135deg, var(--gold), #ff9a3c);
  display: grid; place-items: center; color: #0b0f17; font-weight: 800;
  border: 3px solid #fff;
}
.d11-player.cap .jersey { border-color: var(--green); }
.d11-player.vc .jersey { border-color: var(--blue); }
.d11-player small { color: #fff; font-size: .75rem; text-shadow: 0 1px 3px rgba(0,0,0,.6); }
.d11-player .role { font-size: .65rem; color: var(--gold); }

/* ------------ FAQ ------------ */
.faq-item {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px;
  margin-bottom: 12px; overflow: hidden;
}
.faq-q {
  padding: 18px 22px; cursor: pointer; display: flex; justify-content: space-between;
  font-weight: 600; transition: .2s;
}
.faq-q:hover { background: var(--bg-3); }
.faq-q .icon { color: var(--gold); font-size: 1.2rem; transition: .3s; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s; padding: 0 22px; color: var(--muted); }
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 20px; }

/* ------------ Forms ------------ */
.form { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.form label { display: block; margin-bottom: 6px; color: var(--muted); font-size: .9rem; font-weight: 500; }
.form input, .form select, .form textarea {
  width: 100%; padding: 12px 14px; margin-bottom: 16px;
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 8px;
  color: var(--text); font-size: 1rem; font-family: inherit;
  transition: .2s;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: 0; border-color: var(--gold); background: #131a24; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form .hint { color: var(--muted); font-size: .8rem; margin-top: -10px; margin-bottom: 12px; }

/* ------------ Steps ------------ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { text-align: center; position: relative; }
.step .n {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #0b0f17; display: grid; place-items: center;
  font-family: Poppins; font-size: 1.6rem; font-weight: 800;
  margin: 0 auto 16px;
}
.step h4 { margin-bottom: 6px; }
.step p { font-size: .9rem; }

/* ------------ Comparison table ------------ */
.compare { width: 100%; border-collapse: collapse; margin-top: 20px; }
.compare th, .compare td { padding: 14px; text-align: center; border-bottom: 1px solid var(--line); }
.compare th { background: var(--bg-3); color: var(--gold); font-weight: 700; }
.compare td:first-child { text-align: left; color: var(--text); font-weight: 500; }
.compare .us { background: rgba(245,197,24,.06); }
.compare .check { color: var(--green); font-size: 1.2rem; }
.compare .x { color: var(--red); font-size: 1.2rem; }

/* ------------ Blog list ------------ */
.blog-card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: .25s;
}
.blog-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.blog-card .thumb {
  height: 180px; background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  display: grid; place-items: center; font-size: 3rem; color: var(--gold);
  position: relative; overflow: hidden;
}
.blog-card .thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.blog-card:hover .thumb img { transform: scale(1.06); }
.blog-card .thumb::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at center, transparent 40%, rgba(0,0,0,.4) 100%);
  pointer-events: none;
}

/* ------------ Image utilities ------------ */
.img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-rounded { border-radius: var(--radius); overflow: hidden; }
.img-tile {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); aspect-ratio: 16/10;
}
.img-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.img-tile:hover img { transform: scale(1.05); }
.img-tile .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.85));
  display: flex; align-items: flex-end; padding: 20px; color: #fff;
}
.img-tile .tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: #0b0f17; font-size: .7rem; font-weight: 800;
  padding: 4px 10px; border-radius: 6px; letter-spacing: 1px;
}
.avatar-img {
  width: 100px; height: 100px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--gold); margin: 0 auto 14px; display: block;
}
.avatar-sm {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
}
.feature-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--line);
}
.bank-screenshot {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 10px; margin-bottom: 14px;
}
.blog-card .body { padding: 20px; }
.blog-card .tag { font-size: .7rem; color: var(--gold); letter-spacing: 2px; font-weight: 700; }
.blog-card h3 { font-size: 1.1rem; margin: 8px 0; }
.blog-card .meta { color: var(--muted); font-size: .82rem; margin-top: 10px; }

/* ------------ WhatsApp icon (reusable) ------------ */
.wa-ico {
  display: inline-block; width: 1.1em; height: 1.1em;
  vertical-align: -.2em; flex: none;
  background-color: currentColor;
  -webkit-mask: var(--wa-svg) center / contain no-repeat;
  mask: var(--wa-svg) center / contain no-repeat;
}
.topbar .socials a .wa-ico { width: .9em; height: .9em; margin-right: 4px; }
.btn .wa-ico { width: 1.15em; height: 1.15em; vertical-align: -.22em; }

/* Icon-only WhatsApp nav button */
.btn-wa-icon {
  background: linear-gradient(135deg, #25d366, #16a34a); color: #fff;
  padding: 11px; border-radius: 10px;
}
.btn-wa-icon .wa-ico { width: 20px; height: 20px; vertical-align: middle; }
.btn-wa-icon:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,.4); }

/* ------------ Floating WhatsApp ------------ */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.45);
  animation: float 2s ease-in-out infinite;
}
.wa-float .wa-ico { width: 32px; height: 32px; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.wa-float::after {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid #25d366; animation: ring 1.8s infinite;
}
@keyframes ring { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }

/* ------------ CTA banner ------------ */
.cta-banner {
  background: linear-gradient(90deg, #1a2332, #131a24 50%, #1a2332);
  border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold);
  padding: 50px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: ""; position: absolute; width: 300px; height: 300px;
  border-radius: 50%; filter: blur(80px); opacity: .35;
}
.cta-banner::before { background: var(--gold); top: -150px; left: -100px; }
.cta-banner::after { background: var(--green); bottom: -150px; right: -100px; }
.cta-banner .container { position: relative; z-index: 1; }

/* ------------ Footer ------------ */
footer {
  background: #05070b; border-top: 1px solid var(--line);
  padding: 60px 0 20px;
}
footer .grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
footer h5 { color: var(--gold); margin-bottom: 14px; font-family: Poppins; font-size: .95rem; letter-spacing: 1px; text-transform: uppercase; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { padding: 6px 0; }
footer a { color: var(--muted); font-size: .9rem; }
footer a:hover { color: var(--gold); }
footer .legal { border-top: 1px solid var(--line); padding-top: 20px; text-align: center; color: var(--muted); font-size: .8rem; }
footer .disclaimer { background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.25); border-radius: 8px; padding: 14px; color: var(--muted); font-size: .82rem; margin-bottom: 24px; }

/* ------------ Breadcrumbs / page header ------------ */
.page-head {
  padding: 60px 0 40px;
  background: radial-gradient(600px 300px at 50% 0%, rgba(245,197,24,.1), transparent 70%), var(--bg-1);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-head h1 { margin-bottom: 8px; }
.page-head .crumbs { color: var(--muted); font-size: .9rem; }
.page-head .crumbs a { color: var(--gold); }

/* ------------ Tabs ------------ */
.tabs { display: flex; gap: 6px; border-bottom: 1px solid var(--line); margin-bottom: 28px; overflow-x: auto; }
.tabs button {
  background: transparent; border: 0; color: var(--muted);
  padding: 12px 18px; font-size: .95rem; font-weight: 500; cursor: pointer;
  border-bottom: 2px solid transparent; transition: .2s; white-space: nowrap;
}
.tabs button.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ------------ Responsive ------------ */
@media (max-width: 1100px) {
  .live-blog { grid-template-columns: 1fr 280px; }
}

@media (max-width: 960px) {
  .container { padding: 0 18px; }
  .hero .grid, .live-blog, .d11-grid { grid-template-columns: 1fr; }
  .card-grid, .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  footer .grid { grid-template-columns: 1fr 1fr; }
  .stats-strip .grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  /* Compact topbar on tablet — single ticker line, no socials */
  .topbar { padding: 6px 0; font-size: .75rem; }
  .topbar .row { justify-content: center; text-align: center; gap: 8px; }
  .topbar .socials { display: none; }
  .topbar .ticker { justify-content: center; }
  .section { padding: 64px 0; }
  /* hero card and pitch shrink */
  .id-card { padding: 22px; }
  .id-card .id-num { font-size: 1.2rem; }
  .id-card .stat b { font-size: 1.1rem; }
  .d11-pitch { min-height: 0; padding: 20px; }
  .d11-row { gap: 14px; }
  /* page-head image grid stacks */
  .page-head { padding: 48px 0 32px; }
  /* form 2-col → 1-col handled below */
  /* show hamburger from this width */
  .hamburger { display: block; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--bg-1); border-top: 1px solid var(--line);
    padding: 14px; gap: 4px; transform: translateY(-110%); transition: .25s;
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 16px; font-size: 1rem; }
  /* generic two-column grids stack */
  [style*="grid-template-columns:1.1fr .9fr"],
  [style*="grid-template-columns:1.2fr .8fr"],
  [style*="grid-template-columns:2fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
}

@media (max-width: 720px) {
  :root { --nav-h: 64px; }
  /* Hide the topbar on phones so the navbar sits at the very top */
  .topbar { display: none; }
  h1 { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  h2 { font-size: clamp(1.4rem, 6vw, 1.9rem); }
  .card-grid, .card-grid.cols-2, .card-grid.cols-4, .form .row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .section { padding: 50px 0; }
  .section-sm { padding: 36px 0; }
  .hero { padding: 40px 0 30px; }
  .hero .actions .btn { width: 100%; justify-content: center; }
  .hero .badges { gap: 8px; }
  .hero .badge { font-size: .78rem; padding: 6px 12px; }
  .nav-cta .btn-label { display: none; }
  .nav-cta .btn { padding: 10px 14px; font-size: .85rem; }
  .brand { font-size: 1.15rem; }
  .brand-logo { width: 32px; height: 32px; }
  .topbar { font-size: .75rem; }
  .topbar .ticker span { white-space: normal; }
  footer { padding: 40px 0 16px; }
  footer .grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-banner { padding: 36px 0; }
  .compare th, .compare td { padding: 10px 8px; font-size: .82rem; }
  .form { padding: 22px; }
  .btn-lg { padding: 14px 22px; font-size: 1rem; }
  .match-card .teams { font-size: .9rem; }
  .match-card .flag { width: 32px; height: 32px; font-size: .8rem; }
  .testimonial { padding: 20px; }
  .blog-entry { padding-left: 18px; }
  .wa-float { width: 52px; height: 52px; bottom: 18px; right: 18px; font-size: 1.5rem; }
  .stats-strip .num { font-size: 1.7rem; }
  .stats-strip .lbl { font-size: .82rem; }
  .bonus-card { padding: 28px 22px; }
  .bonus-card .amount { font-size: 2.4rem; }
  .id-card .stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .id-card .stat { padding: 10px; }
  .step .n { width: 48px; height: 48px; font-size: 1.4rem; }
  .page-head { padding: 36px 0 24px; }
  /* tabs scroll smoother on mobile */
  .tabs { gap: 2px; }
  .tabs button { padding: 10px 14px; font-size: .88rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  h1 { font-size: 1.6rem; }
  .stats-strip .grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stats-strip .num { font-size: 1.5rem; }
  .id-card { padding: 18px; }
  .id-card .id-num { font-size: 1rem; letter-spacing: 1px; }
  .d11-row { gap: 8px; }
  .d11-player { width: 64px; }
  .d11-player .jersey { width: 44px; height: 44px; font-size: .8rem; }
  .d11-player small { font-size: .68rem; }
  .match-card { padding: 16px; }
  .match-card .odds { gap: 6px; }
  .match-card .odd { padding: 8px 4px; font-size: .78rem; }
  .nav .wrap { gap: 6px; }
  .brand b, .brand span:not(.brand-logo) { font-size: 1rem; }
  .testimonial blockquote { font-size: .92rem; }
  .form input, .form select, .form textarea { padding: 10px 12px; font-size: .95rem; }
  .blog-card .thumb { height: 150px; }
  .feature-img { aspect-ratio: 4/3; }
}

/* Touch tap target safety */
@media (hover: none) {
  .btn { min-height: 44px; }
  .nav-links a { min-height: 44px; display: flex; align-items: center; }
  .faq-q { min-height: 56px; }
}
