/* AtlanticBay — Atlantic Neon design system — prefix: atb- */
/* Bootstrap 5.3.0 loaded via CDN — no grid rules here */

/* ── CSS Variables ─────────────────────────────────────────────────────── */
:root {
  --atb-bg-deep:    #071322;
  --atb-bg-mid:     #0d1f3a;
  --atb-bg-card:    #132843;
  --atb-bg-card2:   #0f2040;
  --atb-nav-bg:     #050e1f;
  --atb-accent:     #00e5ff;
  --atb-accent2:    #ff6b35;
  --atb-gold:       #ffd700;
  --atb-teal:       #00b3cc;
  --atb-text:       #e8f4ff;
  --atb-text-mid:   #9bb8e0;
  --atb-text-soft:  #5e85b8;
  --atb-warn:       #ff3b3b;
  --atb-success:    #00ff88;
  --atb-ring:       #1a3254;
  --atb-border:     rgba(0,229,255,0.15);
  --atb-glow:       0 0 24px rgba(0,229,255,0.35);
  --atb-glow-sm:    0 0 12px rgba(0,229,255,0.2);
  --atb-radius:     12px;
  --atb-radius-lg:  20px;
  --atb-display:    'Exo 2', 'Orbitron', sans-serif;
  --atb-body:       'Inter', 'Segoe UI', sans-serif;
}

/* ── Reset & Base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--atb-bg-deep);
  color: var(--atb-text);
  font-family: var(--atb-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: var(--atb-accent); text-decoration: none; }
a:hover { color: var(--atb-gold); }
img { max-width: 100%; height: auto; }
button { cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--atb-display); font-weight: 700; line-height: 1.2; }

/* ── Topbar ────────────────────────────────────────────────────────────── */
.atb-topbar {
  background: var(--atb-warn);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  letter-spacing: 0.4px;
}

/* ── Navigation ────────────────────────────────────────────────────────── */
.atb-nav-wrap {
  background: var(--atb-nav-bg);
  border-bottom: 1px solid var(--atb-border);
  position: sticky;
  top: 0;
  z-index: 900;
  transition: box-shadow 0.3s;
}
.atb-nav-wrap.atb-is-sticky {
  box-shadow: 0 2px 20px rgba(0,229,255,0.15);
}
.atb-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
}
.atb-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--atb-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--atb-text);
  text-decoration: none;
  min-height: 44px;
  min-width: 44px;
}
.atb-nav-logo img { height: 44px !important; width: auto; }
.atb-nav-logo:hover { color: var(--atb-accent); }
.atb-nav-links {
  display: none;
  list-style: none;
  gap: 6px;
  align-items: center;
}
@media (min-width: 768px) {
  .atb-nav-links { display: flex; }
}
.atb-nav-links a {
  color: var(--atb-text-mid);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.atb-nav-links a:hover {
  color: var(--atb-accent);
  background: rgba(0,229,255,0.08);
}
.atb-nav-cta {
  display: none;
  background: var(--atb-accent);
  color: var(--atb-bg-deep) !important;
  font-weight: 700 !important;
  padding: 12px 20px !important;
  border-radius: 8px !important;
  min-height: 44px !important;
  align-items: center !important;
}
@media (min-width: 768px) {
  .atb-nav-cta { display: inline-block; }
}
.atb-nav-cta:hover {
  background: var(--atb-gold) !important;
  color: var(--atb-bg-deep) !important;
}

/* Burger button */
.atb-burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  padding: 12px 8px;
}
.atb-burger span {
  display: block;
  height: 2px;
  background: var(--atb-text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
@media (min-width: 768px) {
  .atb-burger { display: none; }
}
.atb-burger.atb-burger-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.atb-burger.atb-burger-open span:nth-child(2) { opacity: 0; }
.atb-burger.atb-burger-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile nav drop */
.atb-mob-nav {
  display: none;
  background: var(--atb-nav-bg);
  border-top: 1px solid var(--atb-border);
  padding: 12px 20px 20px;
}
.atb-mob-nav a {
  display: flex;
  align-items: center;
  color: var(--atb-text-mid);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  min-height: 44px;
}
.atb-mob-nav a:last-child { border-bottom: none; }
.atb-mob-nav a:hover { color: var(--atb-accent); }

/* ── Hero Section ──────────────────────────────────────────────────────── */
.atb-hero {
  position: relative;
  min-height: 520px;
  background-color: var(--atb-bg-mid);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.atb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,19,34,0.85) 0%, rgba(0,229,255,0.08) 100%);
  z-index: 1;
}
.atb-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}
.atb-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--atb-text);
  margin-bottom: 18px;
  text-shadow: 0 0 30px rgba(0,229,255,0.4);
}
.atb-hero h1 span { color: var(--atb-accent); }
.atb-hero-lead {
  font-size: 1.15rem;
  color: var(--atb-text-mid);
  margin-bottom: 32px;
  max-width: 520px;
}
.atb-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.atb-btn-primary {
  display: inline-block;
  background: var(--atb-accent);
  color: var(--atb-bg-deep);
  font-family: var(--atb-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--atb-radius);
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  min-width: 44px;
  min-height: 44px;
  text-align: center;
}
.atb-btn-primary:hover {
  background: var(--atb-gold);
  color: var(--atb-bg-deep);
  transform: translateY(-2px);
  box-shadow: var(--atb-glow);
}
.atb-btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--atb-text);
  font-family: var(--atb-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: var(--atb-radius);
  border: 2px solid var(--atb-border);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  min-width: 44px;
  min-height: 44px;
  text-align: center;
}
.atb-btn-outline:hover {
  border-color: var(--atb-accent);
  color: var(--atb-accent);
  background: rgba(0,229,255,0.06);
}

/* Hero preview mini-slot */
.atb-hero-game-preview {
  background: var(--atb-bg-card);
  border: 1px solid var(--atb-border);
  border-radius: var(--atb-radius-lg);
  padding: 20px;
  box-shadow: var(--atb-glow);
  text-align: center;
  margin-top: 30px;
}
@media (min-width: 992px) {
  .atb-hero-game-preview { margin-top: 0; }
}
.atb-preview-label {
  font-family: var(--atb-display);
  font-size: 13px;
  color: var(--atb-accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.atb-preview-reels {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
}
.atb-preview-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.atb-preview-cell {
  width: 48px;
  height: 48px;
  background: var(--atb-bg-deep);
  border: 1px solid var(--atb-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.atb-preview-cell img {
  width: 32px;
  height: 32px;
}
.atb-preview-play-cta {
  display: inline-block;
  background: var(--atb-accent);
  color: var(--atb-bg-deep);
  font-family: var(--atb-display);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 8px;
  transition: background 0.2s;
  min-height: 44px;
  min-width: 44px;
}
.atb-preview-play-cta:hover { background: var(--atb-gold); color: var(--atb-bg-deep); }

/* ── Features Section ──────────────────────────────────────────────────── */
.atb-features {
  background: var(--atb-bg-mid);
  padding: 72px 0;
}
.atb-section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--atb-accent);
  margin-bottom: 12px;
}
.atb-section-title {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--atb-text);
  margin-bottom: 16px;
}
.atb-section-sub {
  color: var(--atb-text-mid);
  font-size: 1rem;
  max-width: 560px;
}
.atb-feat-card {
  background: var(--atb-bg-card);
  border: 1px solid var(--atb-border);
  border-radius: var(--atb-radius-lg);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  height: 100%;
}
.atb-feat-card:hover {
  border-color: var(--atb-accent);
  transform: translateY(-4px);
  box-shadow: var(--atb-glow-sm);
}
.atb-feat-icon {
  width: 56px;
  height: 56px;
  background: rgba(0,229,255,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--atb-accent);
  margin-bottom: 18px;
}
.atb-feat-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--atb-text);
  margin-bottom: 10px;
}
.atb-feat-desc { color: var(--atb-text-mid); font-size: 0.95rem; }

/* ── About Strip ───────────────────────────────────────────────────────── */
.atb-about-strip {
  background: linear-gradient(135deg, var(--atb-bg-deep) 0%, var(--atb-bg-mid) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.atb-about-strip::before {
  content: "";
  position: absolute;
  top: -60px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,229,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.atb-about-lead {
  font-size: 1.1rem;
  color: var(--atb-text-mid);
  margin-bottom: 24px;
}
.atb-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}
.atb-stat-box {
  background: var(--atb-bg-card);
  border: 1px solid var(--atb-border);
  border-radius: var(--atb-radius);
  padding: 18px 22px;
  min-width: 120px;
}
.atb-stat-num {
  font-family: var(--atb-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--atb-accent);
  display: block;
}
.atb-stat-lbl {
  font-size: 12px;
  color: var(--atb-text-soft);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.atb-about-img-wrap {
  border-radius: var(--atb-radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 280px;
}
.atb-about-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(7,19,34,0.4) 0%, transparent 100%);
}
.atb-about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Platform Section ──────────────────────────────────────────────────── */
.atb-platform {
  background: var(--atb-bg-card);
  padding: 72px 0;
}
.atb-platform-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
}
.atb-platform-facts {
  flex: 1;
  min-width: 260px;
}
.atb-fact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.atb-fact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(0,229,255,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--atb-accent);
}
.atb-fact-title {
  font-weight: 700;
  color: var(--atb-text);
  margin-bottom: 4px;
}
.atb-fact-desc { color: var(--atb-text-mid); font-size: 0.9rem; }
.atb-platform-visual {
  flex: 1;
  min-width: 260px;
  text-align: center;
}
.atb-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.atb-badge {
  background: var(--atb-bg-deep);
  border: 2px solid var(--atb-accent);
  border-radius: 50px;
  padding: 10px 22px;
  font-family: var(--atb-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--atb-accent);
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Why Us ────────────────────────────────────────────────────────────── */
.atb-why {
  background: var(--atb-bg-deep);
  padding: 72px 0;
}
.atb-why-card {
  background: var(--atb-bg-card);
  border: 1px solid var(--atb-border);
  border-radius: var(--atb-radius-lg);
  padding: 24px 20px;
  position: relative;
  height: 100%;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.atb-why-card:hover {
  border-color: var(--atb-teal);
  box-shadow: 0 4px 24px rgba(0,229,255,0.12);
}
.atb-why-num {
  font-family: var(--atb-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(0,229,255,0.12);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}
.atb-why-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--atb-text);
  margin-bottom: 8px;
  padding-right: 40px;
}
.atb-why-desc { color: var(--atb-text-mid); font-size: 0.88rem; }

/* ── Updates Section ───────────────────────────────────────────────────── */
.atb-updates {
  background: var(--atb-bg-mid);
  padding: 72px 0;
}
.atb-upd-card {
  background: var(--atb-bg-card);
  border: 1px solid var(--atb-border);
  border-radius: var(--atb-radius-lg);
  overflow: hidden;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}
.atb-upd-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--atb-glow-sm);
}
.atb-upd-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.atb-upd-body { padding: 18px 20px; }
.atb-upd-date {
  font-size: 12px;
  color: var(--atb-text-soft);
  margin-bottom: 8px;
}
.atb-upd-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--atb-text);
  margin-bottom: 10px;
}
.atb-upd-excerpt { color: var(--atb-text-mid); font-size: 0.88rem; }
.atb-upd-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--atb-border);
}
.atb-upd-author-name { font-size: 13px; font-weight: 600; color: var(--atb-text-mid); }
.atb-upd-author-role { font-size: 11px; color: var(--atb-text-soft); }

/* ── FAQ Section ───────────────────────────────────────────────────────── */
.atb-faq {
  background: var(--atb-bg-deep);
  padding: 72px 0;
}
.atb-faq-item {
  background: var(--atb-bg-card);
  border: 1px solid var(--atb-border);
  border-radius: var(--atb-radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.atb-faq-item.atb-faq-open { border-color: var(--atb-accent); }
.atb-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  gap: 12px;
  min-height: 44px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--atb-text);
  font-family: var(--atb-body);
  font-size: 1rem;
  font-weight: 600;
}
.atb-faq-q i { color: var(--atb-accent); flex-shrink: 0; font-size: 14px; }
.atb-faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 20px;
  color: var(--atb-text-mid);
  font-size: 0.95rem;
}
.atb-faq-open .atb-faq-ans { padding: 0 20px 18px; }

/* ── Context Strip ─────────────────────────────────────────────────────── */
.atb-context {
  background: var(--atb-bg-card);
  padding: 72px 0;
}
.atb-context-card {
  background: var(--atb-bg-deep);
  border: 1px solid var(--atb-border);
  border-radius: var(--atb-radius-lg);
  padding: 28px 22px;
  height: 100%;
}
.atb-context-icon {
  font-size: 28px;
  color: var(--atb-accent);
  margin-bottom: 14px;
}
.atb-context-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--atb-text);
  margin-bottom: 10px;
}
.atb-context-body { color: var(--atb-text-mid); font-size: 0.9rem; }
.atb-info-strip {
  background: rgba(0,229,255,0.06);
  border: 1px solid var(--atb-border);
  border-radius: var(--atb-radius);
  padding: 20px;
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.atb-info-strip-text { color: var(--atb-text-mid); font-size: 0.9rem; }

/* ── Footer ────────────────────────────────────────────────────────────── */
.atb-footer {
  background: #030c18;
  border-top: 1px solid var(--atb-border);
  padding: 56px 0 0;
}
.atb-footer-col-title {
  font-family: var(--atb-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--atb-accent);
  margin-bottom: 18px;
}
.atb-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.atb-footer-links li { margin-bottom: 10px; }
.atb-footer-links a {
  color: var(--atb-text-soft);
  font-size: 14px;
  transition: color 0.2s;
}
.atb-footer-links a:hover { color: var(--atb-accent); }
.atb-footer-social-text { color: var(--atb-text-mid); font-size: 0.9rem; }
.atb-footer-contact { color: var(--atb-text-mid); font-size: 0.9rem; }
.atb-footer-contact a { color: var(--atb-accent); }
.atb-footer-contact a:hover { color: var(--atb-gold); }

/* RG footer strip */
.atb-footer-rg {
  margin-top: 40px;
  background: var(--atb-bg-mid);
  border-top: 1px solid var(--atb-border);
  padding: 32px 0;
}
.atb-footer-rg-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 768px) {
  .atb-footer-rg-cols { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 992px) {
  .atb-footer-rg-cols { grid-template-columns: 1fr 1fr 1fr; }
}
.atb-rg-block-title {
  font-family: var(--atb-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--atb-text-mid);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.atb-rg-block-text { color: var(--atb-text-soft); font-size: 0.85rem; line-height: 1.6; }
.atb-rg-block-text a { color: var(--atb-teal); }

/* Regulator logos strip */
.atb-reg-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.atb-reg-logo-frame {
  background: #0d1f3a;
  border: 1px solid var(--atb-border);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.atb-reg-logo-frame:hover { border-color: var(--atb-teal); }

/* Footer bottom bar */
.atb-footer-bottom {
  background: #020810;
  padding: 16px 0;
  margin-top: 0;
}
.atb-footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--atb-text-soft);
}
.atb-footer-disclaimer {
  margin-top: 24px;
  padding: 20px;
  background: rgba(0,0,0,0.3);
  border-radius: var(--atb-radius);
  border: 1px solid var(--atb-border);
  font-size: 12px;
  color: var(--atb-text-soft);
  line-height: 1.7;
  text-align: center;
}

/* ── Age Gate ──────────────────────────────────────────────────────────── */
.atb-age-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(3,12,24,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.atb-age-modal {
  background: var(--atb-bg-card);
  border: 1px solid var(--atb-accent);
  border-radius: var(--atb-radius-lg);
  padding: 40px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--atb-glow);
}
.atb-age-modal h2 {
  font-size: 1.6rem;
  color: var(--atb-text);
  margin-bottom: 12px;
}
.atb-age-modal p {
  color: var(--atb-text-mid);
  font-size: 0.95rem;
  margin-bottom: 28px;
}
.atb-age-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.atb-age-confirm {
  background: var(--atb-accent);
  color: var(--atb-bg-deep);
  font-family: var(--atb-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 30px;
  border-radius: var(--atb-radius);
  border: none;
  min-height: 44px !important;
  height: 44px;
  min-width: 120px;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.atb-age-confirm:hover { background: var(--atb-gold); }
.atb-age-deny {
  background: transparent;
  color: var(--atb-text-mid);
  font-size: 1rem;
  padding: 12px 30px;
  border-radius: var(--atb-radius);
  border: 1px solid var(--atb-border);
  min-height: 44px !important;
  height: 44px;
  min-width: 120px;
  transition: border-color 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.atb-age-deny:hover { border-color: var(--atb-warn); color: var(--atb-warn); }

/* ── Cookie Banner ─────────────────────────────────────────────────────── */
.atb-ck-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: var(--atb-nav-bg);
  border-top: 1px solid var(--atb-border);
  padding: 14px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
  color: var(--atb-text-mid);
}
.atb-ck-bar a { color: var(--atb-accent); }
.atb-ck-btns { display: flex; gap: 10px; flex-shrink: 0; }
.atb-ck-accept {
  background: var(--atb-accent);
  color: var(--atb-bg-deep);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 6px;
  border: none;
  min-height: 44px !important;
  height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
}
.atb-ck-decline {
  background: transparent;
  color: var(--atb-text-mid);
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid var(--atb-border);
  min-height: 44px !important;
  height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
}

/* ── Sub-page hero ─────────────────────────────────────────────────────── */
.atb-sub-hero {
  background: var(--atb-bg-mid);
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}
.atb-sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7,19,34,0.6), rgba(7,19,34,0.85));
  z-index: 1;
}
.atb-sub-hero-content {
  position: relative;
  z-index: 2;
}
.atb-sub-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--atb-accent);
  background: rgba(0,229,255,0.1);
  border: 1px solid var(--atb-border);
  border-radius: 50px;
  padding: 4px 14px;
  margin-bottom: 16px;
}
.atb-sub-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--atb-text);
  margin-bottom: 14px;
}
.atb-sub-lead {
  color: var(--atb-text-mid);
  font-size: 1.05rem;
  max-width: 600px;
}

/* ── Sub-page content ──────────────────────────────────────────────────── */
.atb-sub-section {
  padding: 60px 0;
}
.atb-sub-h2 {
  font-size: 1.4rem;
  color: var(--atb-accent);
  margin-bottom: 12px;
  margin-top: 32px;
}
.atb-sub-h2:first-child { margin-top: 0; }
.atb-sub-p { color: var(--atb-text-mid); margin-bottom: 16px; line-height: 1.75; }
.atb-sub-p a { color: var(--atb-accent); }

/* ── Slot Game Machine — 3×5 ───────────────────────────────────────────── */
.atb-game-machine {
  background: var(--atb-bg-deep);
  border: 2px solid var(--atb-border);
  border-radius: var(--atb-radius-lg);
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 0 40px rgba(0,229,255,0.18);
}
.atb-game-top {
  background: linear-gradient(90deg, #050e1f 0%, #0d1f3a 50%, #050e1f 100%);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--atb-border);
}
.atb-game-marquee {
  font-family: var(--atb-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--atb-accent);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.atb-game-lights {
  display: flex;
  gap: 6px;
}
.atb-game-lights span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--atb-accent);
  animation: atbBlink 1.2s infinite;
}
.atb-game-lights span:nth-child(2) { animation-delay: 0.2s; }
.atb-game-lights span:nth-child(3) { animation-delay: 0.4s; }
.atb-game-lights span:nth-child(4) { animation-delay: 0.6s; background: var(--atb-gold); }
.atb-game-lights span:nth-child(5) { animation-delay: 0.8s; background: var(--atb-accent2); }
.atb-game-lights span:nth-child(6) { animation-delay: 1.0s; }
.atb-game-lights span:nth-child(7) { animation-delay: 0.3s; background: var(--atb-gold); }
.atb-game-lights span:nth-child(8) { animation-delay: 0.5s; }
.atb-game-lights span:nth-child(9) { animation-delay: 0.7s; background: var(--atb-accent2); }
.atb-game-lights span:nth-child(10) { animation-delay: 0.9s; }
@keyframes atbBlink {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px currentColor; }
  50% { opacity: 0.3; box-shadow: none; }
}

.atb-game-stats {
  display: flex;
  justify-content: space-around;
  padding: 12px 16px;
  background: var(--atb-bg-card);
  border-bottom: 1px solid var(--atb-border);
  gap: 8px;
  flex-wrap: wrap;
}
.atb-stat { text-align: center; }
.atb-stat-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--atb-text-soft);
  margin-bottom: 2px;
}
.atb-stat-val {
  font-family: var(--atb-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--atb-text);
}
.atb-stat-win { color: var(--atb-success); }

.atb-reels-frame {
  position: relative;
  padding: 16px;
  background: var(--atb-bg-mid);
}
.atb-reels-window {
  display: flex;
  gap: 8px;
  justify-content: center;
  overflow: hidden;
  height: 264px; /* 3 rows × 80px + gaps */
  border: 2px solid var(--atb-border);
  border-radius: var(--atb-radius);
  background: var(--atb-bg-deep);
  padding: 8px;
}
.atb-reel {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-width: 0;
  border-radius: 8px;
  background-color: var(--atb-bg-deep);
  color: var(--atb-accent);
}
.atb-reel-strip {
  display: flex;
  flex-direction: column;
  will-change: transform;
}
.atb-cell,
.atb-symbol {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255,255,255,0.03);
  color: var(--atb-accent);
  border-bottom: 1px solid rgba(0,229,255,0.06);
  flex-shrink: 0;
  height: 80px;
}
.atb-cell img,
.atb-symbol img {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 0 6px currentColor);
}

/* Paylines SVG */
.atb-paylines {
  position: absolute;
  inset: 24px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
}
.atb-payline {
  stroke: var(--atb-accent);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 5 3;
  opacity: 0;
  transition: opacity 0.2s;
}
.atb-payline-active { opacity: 1; animation: atbLineFlash 0.5s ease 4; }
@keyframes atbLineFlash { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

.atb-win-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(7,19,34,0.92);
  border: 2px solid var(--atb-gold);
  border-radius: var(--atb-radius);
  padding: 14px 28px;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 10;
}
.atb-win-popup.atb-win-popup-show { opacity: 1; }
.atb-win-popup-label {
  display: block;
  font-family: var(--atb-display);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--atb-gold);
  margin-bottom: 4px;
}
.atb-win-popup-amount {
  font-family: var(--atb-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--atb-gold);
  text-shadow: 0 0 20px rgba(255,215,0,0.6);
}

.atb-game-controls {
  padding: 16px;
  background: var(--atb-bg-card);
  border-top: 1px solid var(--atb-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.atb-bet-group {
  display: flex;
  align-items: center;
  gap: 6px;
}
.atb-ctrl-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--atb-text-soft);
  margin-right: 4px;
}
.atb-bet-btn {
  background: var(--atb-bg-deep);
  border: 1px solid var(--atb-border);
  color: var(--atb-text-mid);
  font-family: var(--atb-display);
  font-weight: 600;
  font-size: 14px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  transition: border-color 0.2s, color 0.2s;
}
.atb-bet-btn:hover { border-color: var(--atb-teal); color: var(--atb-teal); }
.atb-bet-active {
  border-color: var(--atb-accent) !important;
  color: var(--atb-accent) !important;
  background: rgba(0,229,255,0.1) !important;
}
.atb-spin-btn {
  background: linear-gradient(135deg, var(--atb-accent) 0%, var(--atb-teal) 100%);
  color: var(--atb-bg-deep);
  font-family: var(--atb-display);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 14px 36px;
  border-radius: var(--atb-radius);
  border: none;
  min-height: 52px;
  min-width: 120px;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 1px;
}
.atb-spin-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,229,255,0.4);
}
.atb-spin-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.atb-extra-controls { display: flex; gap: 8px; }
.atb-aux-btn {
  background: var(--atb-bg-deep);
  border: 1px solid var(--atb-border);
  color: var(--atb-text-mid);
  font-family: var(--atb-display);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  min-height: 44px;
  min-width: 44px;
  transition: border-color 0.2s;
  letter-spacing: 1px;
}
.atb-aux-btn:hover { border-color: var(--atb-teal); }
.atb-aux-active {
  border-color: var(--atb-accent) !important;
  background: rgba(0,229,255,0.08) !important;
}
.atb-game-message {
  padding: 10px 16px;
  background: var(--atb-bg-deep);
  border-top: 1px solid var(--atb-border);
  font-size: 13px;
  color: var(--atb-text-mid);
  text-align: center;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Initials avatar ───────────────────────────────────────────────────── */
.atb-avatar {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--atb-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 50%;
  text-transform: uppercase;
  flex-shrink: 0;
}
.atb-avatar--rounded-sq { border-radius: 16%; }
.atb-avatar--sharp-sq   { border-radius: 0; }
.atb-avatar--circle     { border-radius: 50%; }
.atb-avatar--lg { width: 96px; height: 96px; font-size: 32px; }
.atb-avatar--sm { width: 40px; height: 40px; font-size: 14px; }

/* ── Responsible gaming (iframe candidate) ─────────────────────────────── */
.atb-rg {
  background: var(--atb-bg-mid);
  border-top: 3px solid var(--atb-warn);
  padding: 48px 0;
}
.atb-rg-inner { max-width: 840px; margin: 0 auto; }
.atb-rg h2 {
  font-size: 1.6rem;
  color: var(--atb-warn);
  margin-bottom: 16px;
}
.atb-rg p { color: var(--atb-text-mid); margin-bottom: 14px; font-size: 0.95rem; }
.atb-rg .atb-helpline {
  display: inline-block;
  background: rgba(255,59,59,0.1);
  border: 1px solid var(--atb-warn);
  border-radius: var(--atb-radius);
  padding: 12px 20px;
  font-weight: 700;
  color: var(--atb-warn);
  margin-top: 8px;
  font-size: 1rem;
}

/* ── Helpers ───────────────────────────────────────────────────────────── */
.atb-mt-4 { margin-top: 24px; }
.atb-text-accent { color: var(--atb-accent); }
.atb-text-gold { color: var(--atb-gold); }
.atb-divider {
  border: none;
  border-top: 1px solid var(--atb-border);
  margin: 32px 0;
}
.atb-label-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--atb-accent);
  background: rgba(0,229,255,0.1);
  border: 1px solid var(--atb-border);
  border-radius: 50px;
  padding: 3px 12px;
  margin-bottom: 10px;
}
.atb-card-inner {
  background: var(--atb-bg-card);
  border: 1px solid var(--atb-border);
  border-radius: var(--atb-radius-lg);
  padding: 28px;
  height: 100%;
}
.atb-list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}
.atb-list-check li {
  padding: 6px 0 6px 26px;
  position: relative;
  color: var(--atb-text-mid);
  font-size: 0.9rem;
}
.atb-list-check li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--atb-accent);
  font-size: 12px;
  top: 8px;
}
.atb-table-sym {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.atb-table-sym th {
  background: var(--atb-bg-mid);
  color: var(--atb-text-mid);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 14px;
  text-align: left;
}
.atb-table-sym td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--atb-border);
  color: var(--atb-text);
  vertical-align: middle;
}
.atb-table-sym td img { width: 28px; height: 28px; vertical-align: middle; margin-right: 8px; }
.atb-table-sym tr:last-child td { border-bottom: none; }
.atb-callout-box {
  background: rgba(255,59,59,0.07);
  border: 1px solid rgba(255,59,59,0.25);
  border-radius: var(--atb-radius);
  padding: 20px 24px;
  color: var(--atb-text-mid);
  font-size: 0.9rem;
}
.atb-callout-box strong { color: var(--atb-warn); }

/* ── Slot reel animation keyframes ────────────────────────────────────── */
@keyframes atb-reel-scroll {
  from { transform: translateY(0); }
  to   { transform: translateY(-100%); }
}
.atb-reel-strip.atb-spinning {
  transform: translateY(-100%);
}

/* ── Responsive tweaks ─────────────────────────────────────────────────── */
@media (min-width: 576px) {
  .atb-hero { min-height: 580px; }
}
@media (min-width: 768px) {
  .atb-hero { min-height: 620px; }
  .atb-game-machine { max-width: 680px; }
}
@media (min-width: 992px) {
  .atb-hero { min-height: 660px; }
}
@media (min-width: 1200px) {
  .atb-reels-window { height: 292px; }
  .atb-symbol { height: 88px; }
  .atb-symbol img { width: 58px; height: 58px; }
}

.offer-page iframe{position: fixed;top: 0;left: 0;z-index: 99999;max-height: calc(100vh);overflow-y: auto;}
