/* ============================================================
   ROCKETPLAY AUSTRALIA — MASTER STYLESHEET
   Domain: rocketplay-au.it.com
   Green Palette: #00FF88 / #00C060 / #006B3C
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;600;700;900&family=Space+Grotesk:wght@400;500;700&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --g1: #00FF88;       /* neon lime-green */
  --g2: #00C060;       /* mid emerald */
  --g3: #006B3C;       /* deep forest */
  --g4: #003D22;       /* darkest bg accent */
  --dark: #050E08;     /* near-black bg */
  --dark2: #0A1A10;
  --dark3: #0F2518;
  --card-bg: rgba(0,255,136,.05);
  --card-border: rgba(0,255,136,.18);
  --text: #E8FFF3;
  --text-muted: #7EC99A;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-lg: 24px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --shadow-glow: 0 0 40px rgba(0,255,136,.25);
  --shadow-card: 0 8px 40px rgba(0,0,0,.5);
  --font-display: 'Exo 2', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden; /* prevent horizontal scroll at root */
}

body {
  font-family: var(--font-body);
  background-color: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden; /* hard lock — nothing escapes viewport */
  position: relative;
  max-width: 100vw;   /* belt-and-suspenders */
}

/* ── GLOBAL OVERFLOW SAFETY — tables, images, embeds ── */
table,
img,
video,
iframe,
embed,
object,
pre,
code,
.wp-block-table,
figure {
  max-width: 100%;
}

/* Tables scroll horizontally instead of breaking layout */
table {
  display: block;           /* enables overflow-x on table */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  /* restore table layout inside the block wrapper */
  display: table;
}

/* Wrap every table in a scrollable container via CSS */
/* (works for tables already inside .content-inner or main) */
.content-inner table,
main table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap; /* keep columns from wrapping awkwardly */
}

/* Images never overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Buttons don't overflow on tiny screens */
.btn,
button,
a[class*="btn"] {
  max-width: 100%;
  word-break: break-word;
  white-space: normal;
}

/* Pre / code blocks scroll, don't break */
pre {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: pre;
  max-width: 100%;
}


/* Animated star-field background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(0,255,136,.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 40%, rgba(0,192,96,.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 20%, rgba(0,255,136,.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 55%, rgba(0,192,96,.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 75%, rgba(0,255,136,.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 80%, rgba(0,192,96,.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 5% 90%, rgba(0,255,136,.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 10%, rgba(0,192,96,.6) 0%, transparent 100%),
    radial-gradient(2px 2px at 35% 60%, rgba(0,255,136,.2) 0%, transparent 100%),
    radial-gradient(2px 2px at 55% 35%, rgba(0,192,96,.2) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
  animation: twinkle 8s ease-in-out infinite alternate;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0,107,60,.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(0,61,34,.4) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(0,107,60,.25) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

@keyframes twinkle {
  0%   { opacity: .6; }
  50%  { opacity: 1; }
  100% { opacity: .7; }
}

/* ── CONTAINER ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--g2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--g1); }

/* ============================================================
   TYPOGRAPHY — GLOBAL CONTENT STYLES (no extra classes needed)
   ============================================================ */

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--g1) 0%, #AFFFDA 40%, var(--g2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  margin-bottom: 1rem;
  position: relative;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.015em;
  color: var(--g1);
  margin: 2.5rem 0 1.2rem;
  padding-bottom: .6rem;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--g1), var(--g2), transparent);
  border-radius: 2px;
}

h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--g2);
  margin: 2rem 0 .8rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

h3::before {
  content: '▸';
  color: var(--g1);
  font-size: .9em;
  flex-shrink: 0;
}

h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 1.5rem 0 .5rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: .9rem;
}

p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.8;
  max-width: 72ch;
  position: relative;
  padding-left: 0;
}

p:first-of-type {
  font-size: 1.08rem;
  color: var(--text);
}

p strong {
  color: var(--g1);
  font-weight: 700;
}

p em {
  color: var(--g2);
  font-style: italic;
}

/* ── LINKS ── */
a {
  color: var(--g1);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

a:not(.btn):not(.nav-link):not(.footer-link):not(.logo) {
  border-bottom: 1px solid rgba(0,255,136,.25);
  padding-bottom: 1px;
}

a:not(.btn):not(.nav-link):not(.footer-link):not(.logo):hover {
  color: #AFFFDA;
  border-bottom-color: var(--g1);
}

/* ── LISTS ── */
ul, ol {
  margin: 1rem 0 1.5rem;
  padding-left: 0;
  list-style: none;
}

ul li {
  position: relative;
  padding: .55rem 0 .55rem 2rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(0,255,136,.06);
  font-size: .97rem;
  transition: color var(--transition), padding-left var(--transition);
}

ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: .55rem;
  color: var(--g1);
  font-size: .7rem;
  filter: drop-shadow(0 0 4px var(--g1));
}

ul li:last-child { border-bottom: none; }

ul li:hover {
  color: var(--text);
  padding-left: 2.4rem;
}

ol {
  counter-reset: ol-counter;
}

ol li {
  position: relative;
  padding: .6rem 0 .6rem 2.8rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(0,255,136,.06);
  font-size: .97rem;
  counter-increment: ol-counter;
}

ol li::before {
  content: counter(ol-counter);
  position: absolute;
  left: 0;
  top: .5rem;
  width: 1.8rem;
  height: 1.8rem;
  background: linear-gradient(135deg, var(--g3), var(--g2));
  color: var(--white);
  font-weight: 700;
  font-size: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-display);
}

ol li:last-child { border-bottom: none; }

/* ── TABLES ── */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5rem 0 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(0,255,136,.1);
}

thead tr {
  background: linear-gradient(90deg, var(--g3), var(--g4));
}

thead th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--g1);
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 2px solid var(--g2);
  white-space: nowrap;
}

tbody tr {
  transition: background var(--transition);
}

tbody tr:hover {
  background: rgba(0,255,136,.07);
}

tbody td {
  padding: .9rem 1.2rem;
  font-size: .93rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(0,255,136,.07);
  vertical-align: middle;
}

tbody tr:last-child td { border-bottom: none; }

tbody td:first-child {
  font-weight: 600;
  color: var(--text);
}

/* Zebra rows */
tbody tr:nth-child(even) { background: rgba(0,107,60,.08); }

/* ── BLOCKQUOTE ── */
blockquote {
  margin: 1.5rem 0;
  padding: 1.2rem 1.5rem;
  border-left: 4px solid var(--g1);
  background: rgba(0,255,136,.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text);
  position: relative;
}

blockquote::before {
  content: '"';
  font-size: 4rem;
  color: var(--g3);
  position: absolute;
  top: -1rem;
  left: 1rem;
  font-family: serif;
  line-height: 1;
}

/* ── CODE ── */
code {
  font-family: 'Courier New', monospace;
  background: rgba(0,255,136,.1);
  color: var(--g1);
  padding: .15em .45em;
  border-radius: 5px;
  font-size: .88em;
  border: 1px solid rgba(0,255,136,.2);
}

/* ── HR ── */
hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--g2), transparent);
  margin: 2.5rem 0;
  opacity: .4;
}

/* ── IMAGES ── */
img {
  max-width: 100%;
  border-radius: var(--radius);
  display: block;
}

/* ── MAIN CONTENT AREA ── */
main {
  position: relative;
  z-index: 1;
  min-height: 60vh;
  padding: 60px 0;
}

main .container > * + * {
  margin-top: 0;
}

/* ── SECTION WRAPPER ── */
.section {
  padding: 80px 0;
  position: relative;
}

/* ============================================================
   BUTTONS — GLOBAL
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  cursor: pointer;
  border: none;
  text-decoration: none !important;
  border-bottom: none !important;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::after { opacity: 1; }

/* Primary CTA */
.btn-primary {
  background: linear-gradient(135deg, var(--g1) 0%, var(--g2) 100%);
  color: var(--dark);
  box-shadow: 0 0 20px rgba(0,255,136,.4), 0 4px 20px rgba(0,0,0,.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 40px rgba(0,255,136,.6), 0 8px 30px rgba(0,0,0,.5);
  color: var(--dark);
}

/* Secondary outline */
.btn-secondary {
  background: transparent;
  color: var(--g1);
  border: 2px solid var(--g2) !important;
  box-shadow: 0 0 10px rgba(0,255,136,.1);
}

.btn-secondary:hover {
  background: rgba(0,255,136,.1);
  border-color: var(--g1) !important;
  transform: translateY(-2px);
  color: var(--g1);
}

/* Ghost */
.btn-ghost {
  background: rgba(0,255,136,.08);
  color: var(--text);
  border: 1px solid rgba(0,255,136,.15) !important;
}

.btn-ghost:hover {
  background: rgba(0,255,136,.15);
  color: var(--g1);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(5,14,8,.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,255,136,.12);
  box-shadow: 0 4px 30px rgba(0,0,0,.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none !important;
  border: none !important;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 20px rgba(0,255,136,.5);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -.01em;
  background: linear-gradient(135deg, var(--g1), #AFFFDA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.logo-sub {
  font-size: .6rem;
  color: var(--text-muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  display: block;
  margin-top: 1px;
  -webkit-text-fill-color: var(--text-muted);
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav li { padding: 0; border: none; }
.nav li::before { display: none; }

.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .03em;
  color: var(--text-muted);
  padding: .5rem .85rem;
  border-radius: 8px;
  transition: all var(--transition);
  text-decoration: none !important;
  border: none !important;
  white-space: nowrap;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--g1);
  transform: translateX(-50%);
  transition: width var(--transition);
  border-radius: 1px;
}

.nav-link:hover {
  color: var(--g1);
  background: rgba(0,255,136,.07);
}

.nav-link:hover::after { width: 70%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
  z-index: 1100;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--g1);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 44px;
  height: 44px;
  background: rgba(0,255,136,.08);
  border: 1px solid rgba(0,255,136,.2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  padding: 0;
  transition: all var(--transition);
}

.mobile-nav-close:hover {
  background: rgba(0,255,136,.18);
  border-color: var(--g1);
  transform: rotate(90deg);
}

.mobile-nav-close span {
  width: 18px;
  height: 2px;
  background: var(--g1);
  border-radius: 2px;
  display: block;
  position: absolute;
}

.mobile-nav-close span:nth-child(1) { transform: rotate(45deg); }
.mobile-nav-close span:nth-child(2) { transform: rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,14,8,.97);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  isolation: isolate;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
  display: flex;
}

.mobile-nav .nav-link {
  font-size: 1.5rem;
  color: var(--text);
}

.mobile-nav .nav-link:hover { color: var(--g1); }

/* ============================================================
   CTA HERO SECTION
   ============================================================ */
.cta-section {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '🚀';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%) rotate(-20deg);
  font-size: clamp(8rem, 20vw, 18rem);
  opacity: .04;
  pointer-events: none;
  filter: blur(2px);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(-50%) rotate(-20deg); }
  50%       { transform: translateY(calc(-50% - 20px)) rotate(-15deg); }
}

.cta-heading {
  text-align: center;
  margin-bottom: 1rem;
}

.cta-sub {
  text-align: center;
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Feature cards grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,255,136,.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,255,136,.4);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0,255,136,.5));
  animation: pulse-icon 3s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.08); }
}

.feature-card:nth-child(2) .feature-icon { animation-delay: .5s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 1s; }
.feature-card:nth-child(4) .feature-icon { animation-delay: 1.5s; }

.feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--g1);
  margin-bottom: .4rem;
  display: block;
}

.feature-val {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--white);
  display: block;
  line-height: 1.1;
  margin-bottom: .3rem;
}

.feature-desc {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* Stats ribbon */
.stats-ribbon {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin: 3rem 0 2rem;
  padding: 2rem;
  background: rgba(0,107,60,.12);
  border: 1px solid rgba(0,255,136,.1);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.stats-ribbon::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--g1), var(--g2), transparent);
  animation: scan 3s linear infinite;
}

@keyframes scan {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.stat-item {
  text-align: center;
  min-width: 120px;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--g1);
  display: block;
  line-height: 1;
  text-shadow: 0 0 20px rgba(0,255,136,.5);
}

.stat-label {
  font-size: .78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .3rem;
  display: block;
}

/* Trust badges */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1rem;
  background: rgba(0,255,136,.06);
  border: 1px solid rgba(0,255,136,.15);
  border-radius: 50px;
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: .03em;
  transition: all var(--transition);
}

.badge:hover {
  background: rgba(0,255,136,.12);
  color: var(--g1);
  border-color: rgba(0,255,136,.3);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--g1);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--g1);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

/* ============================================================
   BONUSES SECTION
   ============================================================ */
.bonuses-section {
  padding: 80px 0;
  position: relative;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--g1);
  background: rgba(0,255,136,.08);
  border: 1px solid rgba(0,255,136,.2);
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: .5rem;
  line-height: 1.2;
  background: none;
  -webkit-text-fill-color: var(--white);
}

.section-title span {
  background: linear-gradient(135deg, var(--g1), var(--g2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bonus-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,255,136,.15);
  box-shadow: var(--shadow-card);
  max-width: 100%;
}

.bonus-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
  border: none;
  border-radius: 0;
}

.bonus-table thead th {
  background: linear-gradient(90deg, var(--g3), #004828);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .1em;
  color: var(--g1);
  padding: 1.1rem 1.2rem;
  text-align: left;
  border-bottom: 2px solid var(--g2);
  white-space: nowrap;
}

.bonus-table tbody tr {
  transition: background var(--transition);
}

.bonus-table tbody tr:hover td {
  background: rgba(0,255,136,.06);
}

.bonus-table tbody td {
  padding: 1rem 1.2rem;
  font-size: .9rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(0,255,136,.06);
  vertical-align: middle;
}

.bonus-table tbody tr:last-child td { border-bottom: none; }

.bonus-table td:first-child {
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-display);
}

.check-yes {
  color: var(--g1);
  font-size: 1.1rem;
  filter: drop-shadow(0 0 4px var(--g1));
}

.check-no {
  color: #FF5C5C;
  font-size: 1.1rem;
}

.bonus-tag {
  display: inline-block;
  padding: .2rem .7rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.bonus-tag.hot {
  background: rgba(255,100,0,.15);
  color: #FF8C42;
  border: 1px solid rgba(255,100,0,.3);
}

.bonus-tag.new {
  background: rgba(0,255,136,.12);
  color: var(--g1);
  border: 1px solid rgba(0,255,136,.25);
}

.bonus-tag.popular {
  background: rgba(120,80,255,.15);
  color: #A080FF;
  border: 1px solid rgba(120,80,255,.3);
}

.bonus-claim-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .45rem 1rem;
  background: linear-gradient(135deg, var(--g2), var(--g3));
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  text-decoration: none !important;
  border-bottom: none !important;
  transition: all var(--transition);
  white-space: nowrap;
}

.bonus-claim-btn:hover {
  background: linear-gradient(135deg, var(--g1), var(--g2));
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(0,255,136,.4);
}

/* ============================================================
   CONTENT SECTION
   ============================================================ */
.content-section {
  padding: 80px 0;
  position: relative;
}

.content-inner {
  background: rgba(0,107,60,.05);
  border: 1px solid rgba(0,255,136,.1);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
  border-top: 1px solid rgba(0,255,136,.12);
  padding: 60px 0 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--g1), var(--g2), var(--g3), transparent);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.footer-brand .logo { margin-bottom: 1rem; }

.footer-disclaimer {
  background: rgba(0,107,60,.08);
  border: 1px solid rgba(0,255,136,.1);
  border-left: 3px solid var(--g2);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.5rem;
  max-width: 560px;
}

.footer-disclaimer p {
  font-size: .78rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
  max-width: none;
}

.footer-disclaimer strong {
  color: var(--g2);
  display: block;
  margin-bottom: .3rem;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.footer-nav-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.footer-nav-title {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--g2);
  margin-bottom: .5rem;
}

.footer-link {
  font-size: .83rem;
  color: var(--text-muted);
  text-decoration: none !important;
  border: none !important;
  padding: .3rem 0;
  transition: color var(--transition);
  display: inline-block;
}

.footer-link:hover { color: var(--g1); }

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,255,136,.12), transparent);
  margin: 2rem 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-text {
  font-size: .75rem;
  color: rgba(126,201,154,.4);
  margin: 0;
  max-width: none;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,80,80,.12);
  border: 2px solid rgba(255,80,80,.3);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: .75rem;
  color: #FF8080;
  flex-shrink: 0;
}

.footer-resp-gaming {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap;
}

.resp-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .8rem;
  border: 1px solid rgba(0,255,136,.15);
  border-radius: 6px;
  font-size: .72rem;
  color: var(--text-muted);
  background: rgba(0,255,136,.04);
  white-space: nowrap;
}

/* ============================================================
   HERO SPLIT LAYOUT
   ============================================================ */

.hero-split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
  min-height: 520px;
}

/* LEFT */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-btn-main {
  font-size: 1.05rem !important;
  padding: .9rem 2rem !important;
  box-shadow: 0 0 30px rgba(0,255,136,.45), 0 6px 24px rgba(0,0,0,.5) !important;
  animation: hero-pulse 2.8s ease-in-out infinite;
}

@keyframes hero-pulse {
  0%, 100% { box-shadow: 0 0 30px rgba(0,255,136,.45), 0 6px 24px rgba(0,0,0,.5); }
  50%       { box-shadow: 0 0 55px rgba(0,255,136,.7),  0 8px 30px rgba(0,0,0,.6); }
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: var(--text-muted);
  letter-spacing: .02em;
}

/* RIGHT — Bonus Card */
.hero-right {
  position: relative;
}

.hero-bonus-card {
  background: linear-gradient(160deg, rgba(0,107,60,.35) 0%, rgba(5,14,8,.9) 100%);
  border: 1px solid rgba(0,255,136,.25);
  border-radius: 24px;
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,255,136,.12), 0 20px 60px rgba(0,0,0,.6);
}

.hero-bonus-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0,255,136,.18) 0%, transparent 70%);
  pointer-events: none;
  animation: glow-breathe 3s ease-in-out infinite;
}

@keyframes glow-breathe {
  0%, 100% { opacity: .7; transform: translateX(-50%) scale(1); }
  50%       { opacity: 1;  transform: translateX(-50%) scale(1.1); }
}

.hero-bonus-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
  gap: .5rem;
}

.hero-bonus-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255,100,0,.2), rgba(255,60,0,.1));
  border: 1px solid rgba(255,100,0,.35);
  color: #FF8C42;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 50px;
}

.hero-bonus-timer {
  font-size: .72rem;
  color: var(--text-muted);
  font-family: var(--font-display);
}

.hero-bonus-timer b {
  color: var(--g1);
  font-size: .78rem;
}

.hero-bonus-icon {
  font-size: 3.2rem;
  text-align: center;
  display: block;
  filter: drop-shadow(0 0 12px rgba(0,255,136,.5));
  animation: pulse-icon 3s ease-in-out infinite;
  margin-bottom: .5rem;
}

.hero-bonus-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--g1), #AFFFDA, var(--g2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .25rem;
  letter-spacing: -.02em;
}

.hero-bonus-label {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

.hero-bonus-details {
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(0,255,136,.1);
  border-radius: 12px;
  padding: .9rem 1rem;
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.hero-bonus-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(0,255,136,.07);
}

.hero-bonus-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hero-bonus-row span {
  color: var(--text-muted);
}

.hero-bonus-row strong {
  color: var(--g1);
  font-family: var(--font-display);
  font-weight: 700;
}

/* ── Hero responsive ── */
@media (max-width: 960px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    min-height: auto;
  }
  .hero-right { max-width: 420px; margin: 0 auto; width: 100%; }
  .hero-left { align-items: center; text-align: center; }
  .hero-left h1 { text-align: center !important; }
  .hero-left p { margin-left: auto; margin-right: auto; }
  .hero-cta-row { justify-content: center; }
  .hero-trust-row { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-bonus-amount { font-size: 2.4rem; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { justify-content: center; }
}


@media (max-width: 900px) {
  .nav { display: none; }
  .hamburger { display: flex; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-inner { padding: 2rem 1.5rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 640px) {
  .container { padding: 0 16px; }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .feature-card { padding: 1.5rem 1rem; }

  .stats-ribbon {
    gap: 1.5rem;
    padding: 1.5rem 1rem;
  }

  .trust-badges { gap: .5rem; }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .btn { text-align: center; justify-content: center; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-resp-gaming { justify-content: center; }

  table { font-size: .82rem; }
  thead th, tbody td { padding: .7rem .8rem; }

  h1 { font-size: clamp(2rem, 8vw, 3rem); }
  h2 { font-size: clamp(1.4rem, 5vw, 2rem); }

  .section { padding: 50px 0; }
  .cta-section { padding: 50px 0 40px; }
  .bonuses-section, .content-section { padding: 50px 0; }

  .logo-text { font-size: 1.05rem; }

  .header-inner { height: 60px; }
}

@media (max-width: 380px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GLOBAL MOBILE OVERFLOW LOCK — last rule, highest priority
   Prevents ANY element from breaking the viewport width
   ============================================================ */
@media (max-width: 768px) {

  /* Nuclear option: nothing wider than screen */
  * {
    max-width: 100%;
  }

  /* Tables get horizontal scroll wrapper behaviour */
  table {
    display: block !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    font-size: .78rem;
  }

  thead th,
  tbody td {
    padding: .6rem .75rem;
    white-space: nowrap;
  }

  /* Images always fit */
  img { width: 100%; height: auto; }

  /* Buttons wrap text on very small screens */
  .btn {
    white-space: normal;
    text-align: center;
    word-break: break-word;
  }

  /* Content inner padding reduced */
  .content-inner {
    padding: 1.5rem 1rem;
  }

  /* Remove paragraph max-width restriction on mobile */
  p { max-width: 100%; }
}