/* ============================================================
   BASSBET CASINO — MAIN STYLESHEET
   Version: 1.0
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES / DESIGN TOKENS
   ============================================================ */
:root {
  --brand-primary: #e8a020;
  --brand-primary-dark: #c4851a;
  --brand-secondary: #1a2744;
  --brand-secondary-light: #243460;
  --brand-accent: #f0c040;
  --brand-header-bg: #111827;
  --brand-header-text: #ffffff;
  --brand-footer-bg: #0d1420;
  --brand-footer-text: #a0aec0;

  --bg-base: #0f1923;
  --bg-card: #1a2535;
  --bg-card-hover: #1f2d40;
  --bg-section-alt: #141e2d;

  --text-primary: #f0f4f8;
  --text-secondary: #9bacc4;
  --text-muted: #6b7f99;

  --border-color: transparent;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 50px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.25);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.35);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --header-height: 70px;
  --container-max: 1200px;
  --transition: 0.25s ease;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--brand-accent); }

ul { list-style: none; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--text-secondary); }
p:last-child { margin-bottom: 0; }

/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad {
  padding: 80px 0;
}

.section-pad-sm {
  padding: 50px 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 40px;
}

/* Grid Helpers */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grid-asym {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.grid-asym-rev {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

/* ============================================================
   4. SKIP TO CONTENT
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--brand-primary);
  color: #000;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 99999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 10px;
}

/* ============================================================
   5. HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--brand-header-bg);
  height: var(--header-height);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img {
  height: 38px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--brand-primary);
}

/* Main Nav */
.main-nav {
  position: relative;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav ul li a {
  display: block;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-header-text);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  background: rgba(232, 160, 32, 0.15);
  color: var(--brand-primary);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.mobile-menu-btn:hover {
  background: rgba(255,255,255,0.1);
}

.mobile-menu-btn:focus {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:focus {
  outline: 2px solid var(--brand-primary);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--brand-primary);
  color: #000;
}

.btn-primary:hover {
  background: var(--brand-primary-dark);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232,160,32,0.4);
}

.btn-hero {
  background: var(--brand-primary);
  color: #000;
  font-size: 1.1rem;
  padding: 16px 40px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 24px rgba(232,160,32,0.45);
}

.btn-hero:hover {
  background: var(--brand-accent);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(232,160,32,0.55);
}

.btn-cta {
  background: var(--brand-primary);
  color: #000;
  font-size: 1rem;
  padding: 14px 34px;
}

.btn-cta:hover {
  background: var(--brand-primary-dark);
  color: #000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}

.btn-outline:hover {
  background: var(--brand-primary);
  color: #000;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1.15rem;
}

/* ============================================================
   7. FLOATING CTA (MANDATORY)
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: var(--brand-primary);
  color: #000;
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.45);
  color: #000;
}

.floating-cta:focus {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* ============================================================
   8. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0f1e 0%, #101828 40%, #1a2035 100%);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(232,160,32,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(26,39,68,0.8) 0%, transparent 50%);
  z-index: 1;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(232,160,32,0.03) 40px,
      rgba(232,160,32,0.03) 41px
    );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.3);
  color: var(--brand-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--brand-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: var(--brand-primary);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 380px;
  max-width: 100%;
}

.hero-main-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.hero-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.hero-card-amount {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 4px;
}

.hero-card-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.hero-card-games {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.hero-game-thumb {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-secondary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.hero-card-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--brand-primary);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 12px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.hero-card-btn:hover {
  background: var(--brand-accent);
  color: #000;
  transform: translateY(-1px);
}

.hero-card-back {
  position: absolute;
  top: 12px;
  right: -20px;
  width: 85%;
  height: 100%;
  background: rgba(232,160,32,0.08);
  border-radius: var(--radius-xl);
  z-index: 1;
}

.hero-card-back2 {
  position: absolute;
  top: 22px;
  right: -38px;
  width: 70%;
  height: 100%;
  background: rgba(232,160,32,0.04);
  border-radius: var(--radius-xl);
  z-index: 0;
}

/* ============================================================
   9. TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--bg-card);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}

.trust-item .trust-icon {
  font-size: 1.3rem;
  color: var(--brand-primary);
}

/* ============================================================
   10. CARDS
   ============================================================ */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(232,160,32,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Bonus Card */
.bonus-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.bonus-card-header {
  background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-secondary-light) 100%);
  padding: 24px;
  text-align: center;
  position: relative;
}

.bonus-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--brand-primary);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.bonus-amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.bonus-type {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.bonus-card-body {
  padding: 24px;
}

.bonus-detail-list {
  margin-bottom: 20px;
}

.bonus-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.bonus-detail-list li:last-child {
  border-bottom: none;
}

.bonus-detail-list .check {
  color: #4caf50;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Game Card */
.game-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.game-card-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #0d1628 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.game-card-img::after {
  content: 'Play';
  position: absolute;
  inset: 0;
  background: rgba(232,160,32,0.85);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.game-card:hover .game-card-img::after {
  opacity: 1;
}

.game-card-info {
  padding: 14px 16px;
}

.game-card-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.game-card-provider {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Payment Card */
.payment-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: transform var(--transition), background var(--transition);
}

.payment-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.payment-icon {
  font-size: 2rem;
}

.payment-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.payment-time {
  font-size: 0.75rem;
  color: var(--brand-primary);
  font-weight: 600;
}

/* ============================================================
   11. SECTIONS
   ============================================================ */

/* Section: Alt Background */
.section-alt {
  background: var(--bg-section-alt);
}

/* Bonus Section */
.bonus-section {
  background: var(--bg-base);
}

/* Feature Row (Asymmetric) */
.feature-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-row.reverse {
  grid-template-columns: 1fr 2fr;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(232,160,32,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item-text h4 {
  margin-bottom: 6px;
  color: var(--text-primary);
}

.feature-item-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Sidebar Panel */
.sidebar-panel {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.sidebar-panel h3 {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--brand-primary);
}

/* Stats Row */
.stats-row {
  background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-secondary-light) 100%);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item-value {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: background var(--transition);
  gap: 16px;
}

.faq-question:hover {
  background: var(--bg-card-hover);
}

.faq-question:focus {
  outline: 2px solid var(--brand-primary);
  outline-offset: -2px;
}

.faq-chevron {
  font-size: 0.7rem;
  color: var(--brand-primary);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 18px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-secondary-light) 0%, var(--brand-secondary) 100%);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,160,32,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  margin-bottom: 14px;
}

.cta-banner p {
  margin-bottom: 28px;
  font-size: 1.05rem;
}

/* Responsible Gambling Banner */
.rg-banner {
  background: rgba(232,160,32,0.06);
  border-top: 1px solid rgba(232,160,32,0.15);
  padding: 16px 0;
  text-align: center;
}

.rg-banner p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.rg-banner a {
  color: var(--brand-primary);
  font-weight: 600;
}

/* ============================================================
   12. TABLE STYLES
   ============================================================ */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table th {
  background: var(--bg-card);
  color: var(--text-secondary);
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.data-table td {
  padding: 14px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr {
  background: var(--bg-base);
  transition: background var(--transition);
}

.data-table tbody tr:hover {
  background: var(--bg-card);
}

.data-table .tag-good {
  color: #4caf50;
  font-weight: 700;
}

.data-table .tag-warn {
  color: #ff9800;
  font-weight: 700;
}

/* ============================================================
   13. FOOTER
   ============================================================ */
.site-footer {
  background: var(--brand-footer-bg);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--brand-footer-text);
  margin-top: 16px;
  max-width: 300px;
  line-height: 1.7;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.footer-logo-text span {
  color: var(--brand-primary);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--brand-footer-text);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--brand-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-legal-links a:hover {
  color: var(--brand-primary);
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Security Logos Row */
.security-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
}

.security-badge .badge-icon {
  font-size: 1.1rem;
  color: var(--brand-primary);
}

/* Age Restriction */
.age-restriction {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 0;
  flex-wrap: wrap;
  text-align: center;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #e53e3e;
  color: #fff;
  font-weight: 900;
  font-size: 0.8rem;
  border-radius: 50%;
  flex-shrink: 0;
  font-family: var(--font-heading);
}

.age-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.5;
}

/* Gambler Help Links */
.help-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 16px 0;
  flex-wrap: wrap;
}

.help-link {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  transition: color var(--transition);
}

.help-link:hover {
  color: var(--brand-primary);
}

/* ============================================================
   14. LEGAL PAGES
   ============================================================ */
.legal-hero {
  background: var(--brand-secondary);
  padding: 60px 0 40px;
}

.legal-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}

.legal-hero p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.legal-content {
  padding: 60px 0;
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin: 36px 0 14px;
  color: var(--brand-primary);
}

.legal-content h3 {
  font-size: 1.05rem;
  margin: 24px 0 10px;
  color: var(--text-primary);
}

.legal-content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 10px 0 16px 20px;
  list-style: disc;
}

.legal-content ul li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-last-updated {
  display: inline-block;
  background: rgba(232,160,32,0.1);
  border: 1px solid rgba(232,160,32,0.25);
  color: var(--brand-primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 30px;
}

/* ============================================================
   15. BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 14px 0;
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--brand-primary);
}

.breadcrumbs .sep {
  color: var(--text-muted);
}

/* ============================================================
   16. BADGES & TAGS
   ============================================================ */
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tag-gold {
  background: rgba(232,160,32,0.15);
  color: var(--brand-primary);
}

.tag-green {
  background: rgba(76,175,80,0.15);
  color: #4caf50;
}

.tag-blue {
  background: rgba(33,150,243,0.15);
  color: #2196f3;
}

/* ============================================================
   17. UTILITY CLASSES
   ============================================================ */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   18. RESPONSIVE — MOBILE NAV
   ============================================================ */
.mobile-menu-btn { display: none; }

@media (max-width: 992px) {
  .main-nav ul {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-nav-active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--brand-header-bg);
    padding: 16px 20px 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 999;
    gap: 4px;
  }

  .mobile-nav-active ul li a {
    padding: 12px 16px;
    font-size: 0.95rem;
    display: block;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .header-cta .btn {
    display: none;
  }
}

/* ============================================================
   19. RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-desc { max-width: 100%; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }

  .hero-visual { display: none; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .grid-asym,
  .grid-asym-rev {
    grid-template-columns: 1fr;
  }

  .sidebar-panel {
    position: static;
  }
}

/* ============================================================
   20. RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  .section-pad { padding: 56px 0; }
  .section-pad-sm { padding: 36px 0; }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .hero-inner {
    padding: 40px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hero-stats {
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .security-row {
    gap: 14px;
  }

  .cta-banner {
    padding: 40px 24px;
  }

  .trust-bar-inner {
    gap: 12px;
    justify-content: center;
  }

  .trust-item {
    font-size: 0.8rem;
  }

  .floating-cta {
    bottom: 16px;
    right: 16px;
    padding: 11px 20px;
    font-size: 14px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-content {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .help-row {
    flex-direction: column;
    gap: 12px;
  }
}

/* ============================================================
   21. FOCUS STATES (ACCESSIBILITY)
   ============================================================ */
*:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 3px;
  border-radius: 3px;
}