/* =============================================
   REDDY ANNA - Design System
   Theme: Black (#0d0d0d), Gold (#d4a537), White
   Font: Space Grotesk
   COMPLETELY DIFFERENT from CricBet99
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --bg: #0d0d0d;
  --bg2: #141414;
  --bg3: #1a1a1a;
  --bg4: #222222;
  --gold: #d4a537;
  --gold-dark: #b8901f;
  --gold-light: #e8c05a;
  --white: #ffffff;
  --gray-100: #f0f0f0;
  --gray-200: #d4d4d4;
  --gray-300: #a3a3a3;
  --gray-400: #737373;
  --gray-500: #525252;
  --green: #22c55e;
  --green-dark: #15803d;
  --red: #ef4444;
  --font: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 50px;
  --shadow-gold: 0 0 20px rgba(212, 165, 55, 0.15);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --glow: 0 0 30px rgba(212, 165, 55, 0.1);
  --nav-h: 64px;
  --transition: 0.25s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--gray-200);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { color: var(--white); line-height: 1.3; font-weight: 700; }
h1 { font-size: 28px; margin-bottom: 16px; }
h2 { font-size: 22px; margin: 32px 0 12px; }
h3 { font-size: 18px; margin: 24px 0 8px; }
h4 { font-size: 16px; margin: 16px 0 6px; }
p { margin-bottom: 14px; }
strong { color: var(--white); font-weight: 600; }
button, input, select, textarea { font-family: inherit; font-size: inherit; border: none; }
button { cursor: pointer; background: none; }

/* --- Layout --- */
.container { max-width: 960px; margin: 0 auto; padding: 0 16px; }
.section { padding: 40px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-gray { color: var(--gray-300); }
.text-sm { font-size: 14px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* --- Skip Link --- */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--gold); color: #000;
  padding: 8px 16px; border-radius: var(--radius-sm);
  font-weight: 600; z-index: 9999; transition: top 0.2s;
}
.skip-link:focus { top: 8px; }

/* =============================================
   NAVIGATION - Centered logo style
   ============================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0d0d0d;
  border-bottom: 1px solid rgba(212, 165, 55, 0.15);
  height: var(--nav-h);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 9999;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu - slides from RIGHT (different from CricBet99 which slides from left) */
.nav-menu {
  position: fixed;
  top: var(--nav-h);
  right: 0;
  width: 280px;
  bottom: 0;
  background: #0d0d0d;
  padding: 20px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 9990;
  border-left: 1px solid rgba(212, 165, 55, 0.2);
}

.nav-menu.open { transform: translateX(0); }

.nav-menu a, .nav-menu button {
  display: block;
  padding: 12px 0;
  color: var(--gray-200);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
  text-align: left;
}

.nav-menu a:hover, .nav-menu button:hover { color: var(--gold); }

.nav-cta {
  display: inline-block;
  background: var(--gold);
  color: #000 !important;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  margin-top: 12px;
  text-align: center;
  transition: background var(--transition);
}

.nav-cta:hover { background: var(--gold-light); color: #000 !important; }

/* Dropdown */
.nav-dropdown { display: none; padding-left: 16px; }
.nav-dropdown.open { display: block; }
.nav-dropdown-toggle { position: relative; }
.nav-dropdown-toggle::after {
  content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  color: var(--gray-400); font-size: 18px;
}
.nav-dropdown-toggle.open::after { content: '-'; }

/* Sub-submenu */
.nav-sub-wrap { position: relative; }
.nav-subdropdown { display: none; padding-left: 14px; }
.nav-subdropdown.open { display: block; }
.nav-subdropdown a { font-size: 13px !important; padding: 8px 0 !important; color: var(--gray-300) !important; }

/* Nav group headers inside dropdowns */
.nav-group-title {
  display: block; font-size: 11px; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 1px; padding: 10px 0 4px;
  border-top: 1px solid rgba(212,165,55,0.1); margin-top: 6px;
}

/* Desktop Nav */
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .nav-menu {
    position: static; transform: none;
    width: auto; background: transparent;
    display: flex; align-items: center; gap: 4px;
    padding: 0; border: none; overflow: visible;
  }
  .nav-menu a, .nav-menu button {
    padding: 8px 12px; font-size: 14px; border: none; display: inline-block; width: auto;
  }
  .nav-dropdown-wrap { position: relative; }
  .nav-dropdown-toggle::after { content: ''; }
  .nav-dropdown {
    position: absolute; top: 100%; left: 0;
    background: var(--bg3); border: 1px solid rgba(212, 165, 55, 0.15);
    border-radius: var(--radius-sm); padding: 8px 0;
    min-width: 200px; box-shadow: var(--shadow-card);
  }
  .nav-dropdown a { padding: 8px 16px; white-space: nowrap; }
  .nav-dropdown-wrap:hover .nav-dropdown { display: block; }
  /* Sub-submenu (Cricket inside Sports) */
  .nav-sub-wrap { position: relative; }
  .nav-sub-wrap > .nav-dropdown-toggle { padding: 8px 16px; white-space: nowrap; display: block; width: 100%; text-align: left; }
  .nav-sub-wrap > .nav-dropdown-toggle::after { content: '\203A'; position: absolute; right: 12px; font-size: 16px; color: var(--gray-400); }
  .nav-subdropdown {
    position: absolute; left: 100%; top: 0;
    background: var(--bg3); border: 1px solid rgba(212, 165, 55, 0.15);
    border-radius: var(--radius-sm); padding: 8px 0;
    min-width: 180px; box-shadow: var(--shadow-card);
    display: none !important;
  }
  .nav-sub-wrap:hover > .nav-subdropdown { display: block !important; }
  .nav-subdropdown a { padding: 8px 16px !important; font-size: 13px !important; white-space: nowrap; }
}

/* =============================================
   HERO SECTION - Gradient centered (different from CricBet99)
   ============================================= */
.hero {
  text-align: center;
  padding: 48px 16px 40px;
  background: radial-gradient(ellipse at top center, rgba(212, 165, 55, 0.08) 0%, transparent 70%);
}

.hero h1 { font-size: 30px; margin-bottom: 12px; }
.hero h1 span { color: var(--gold); }
.hero p { color: var(--gray-300); max-width: 600px; margin: 0 auto 24px; font-size: 15px; }

.hero-buttons { display: flex; flex-direction: column; gap: 10px; max-width: 360px; margin: 0 auto; }

.btn-gold {
  display: block; background: var(--gold); color: #000;
  font-weight: 700; font-size: 15px; padding: 14px 24px;
  border-radius: var(--radius-sm); text-align: center;
  min-height: 48px; transition: all var(--transition);
  white-space: nowrap; letter-spacing: 0.3px;
}
.btn-gold:hover { background: var(--gold-light); color: #000; transform: translateY(-1px); box-shadow: var(--shadow-gold); }

.btn-outline {
  display: block; background: transparent;
  border: 2px solid var(--gold); color: var(--gold);
  font-weight: 600; font-size: 14px; padding: 12px 24px;
  border-radius: var(--radius-sm); text-align: center;
  min-height: 48px; transition: all var(--transition);
  white-space: nowrap;
}
.btn-outline:hover { background: rgba(212, 165, 55, 0.1); color: var(--gold-light); }

.hero-trust {
  margin-top: 16px; font-size: 13px; color: var(--gray-400);
}
.hero-trust strong { color: var(--gold); }

/* =============================================
   SEARCH BAR
   ============================================= */
.search-bar {
  max-width: 480px; margin: 0 auto 20px; position: relative;
}
.search-bar input {
  width: 100%; padding: 12px 48px 12px 18px;
  background: var(--bg3); border: 2px solid rgba(212, 165, 55, 0.25);
  border-radius: var(--radius-pill); color: var(--white);
  font-size: 14px; min-height: 48px; transition: border-color var(--transition);
}
.search-bar input:focus { border-color: var(--gold); outline: none; }
.search-bar input::placeholder { color: var(--gray-400); }
.search-bar button {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; background: var(--gold);
  border: none; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; cursor: pointer;
}
.search-bar button:hover { background: var(--gold-light); }
.search-bar button svg { width: 16px; height: 16px; fill: none; stroke: #000; stroke-width: 2.5; }

/* =============================================
   GLASSMORPHISM CARDS (unique to Reddy Anna)
   ============================================= */
.glass-card {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 165, 55, 0.12);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.glass-card:hover {
  border-color: rgba(212, 165, 55, 0.35);
  box-shadow: var(--glow);
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 20px 0;
}

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

@media (min-width: 480px) {
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .card-grid { gap: 16px; }
  .card-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.glass-card h3 { font-size: 16px; margin-bottom: 6px; }
.glass-card p { font-size: 14px; color: var(--gray-300); margin-bottom: 0; }
.glass-card img {
  width: 56px; height: 56px; margin-bottom: 12px;
  border-radius: var(--radius-sm);
}

/* Feature cards with gold icon accent */
.feature-card { text-align: center; padding: 28px 16px; }
.feature-card .icon {
  width: 48px; height: 48px; margin: 0 auto 14px;
  background: rgba(212, 165, 55, 0.1);
  border: 1px solid rgba(212, 165, 55, 0.2);
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-size: 20px; color: var(--gold);
}

/* =============================================
   GAME CARDS (different layout from CricBet99)
   ============================================= */
.game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 16px 0;
}

.game-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--bg3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.game-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--glow);
}
.game-card img {
  width: 100% !important;
  height: auto !important;
  margin-bottom: 0;
  border-radius: 0;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.game-card-title {
  font-size: 14px; font-weight: 600; color: var(--gold);
  margin-bottom: 4px; display: block;
  padding: 12px 14px 0;
}
.game-card-desc {
  padding: 4px 14px 14px;
  font-size: 12px; color: var(--gray-400); line-height: 1.5; margin-bottom: 0;
}

@media (min-width: 480px) { .game-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) {
  .game-grid { gap: 14px; }
  .game-card img { width: 100%; height: auto; }
}

/* =============================================
   LOGIN FORM (gold-bordered - different from CricBet99)
   ============================================= */
.site-form {
  max-width: 100%;
  margin: 20px auto;
  background: var(--bg2);
  border: 1px solid rgba(212, 165, 55, 0.15);
  border-radius: var(--radius);
  padding: 28px 20px;
  box-shadow: var(--shadow-card);
}

.site-form-title {
  text-align: center; font-size: 18px; font-weight: 700;
  color: var(--white); margin-bottom: 20px;
}

.site-form-field { margin-bottom: 14px; }
.site-form-field label {
  display: block; font-size: 13px; color: var(--gray-300);
  margin-bottom: 6px; font-weight: 500;
}
.site-form-field input {
  width: 100%; padding: 12px 14px;
  background: var(--bg); color: var(--white);
  border: 1px solid rgba(212, 165, 55, 0.25);
  border-radius: var(--radius-sm); min-height: 48px;
  transition: border-color var(--transition);
}
.site-form-field input:focus {
  border-color: var(--gold); outline: none;
  box-shadow: 0 0 0 3px rgba(212, 165, 55, 0.1);
}
.site-form-field input::placeholder { color: var(--gray-500); }

.site-form-actions {
  display: flex; flex-direction: column; gap: 10px; margin: 18px 0 14px;
}

.btn-login {
  display: block; background: var(--gold); color: #000;
  font-weight: 700; font-size: 15px; padding: 13px;
  border-radius: var(--radius-pill); text-align: center;
  min-height: 48px; transition: all var(--transition);
}
.btn-login:hover { background: var(--gold-light); color: #000; }

.btn-register {
  display: block; background: transparent;
  border: 2px solid rgba(212, 165, 55, 0.4); color: var(--gold);
  font-weight: 600; font-size: 14px; padding: 11px;
  border-radius: var(--radius-pill); text-align: center;
  min-height: 48px;
}
.btn-register:hover { border-color: var(--gold); background: rgba(212, 165, 55, 0.05); }

.site-form-links {
  display: flex; justify-content: space-between;
  font-size: 13px; margin-bottom: 12px;
}
.site-form-links a { color: var(--gray-400); }
.site-form-links a:hover { color: var(--gold); }

.site-form-footer {
  text-align: center; font-size: 11px; color: var(--gray-500); line-height: 1.6;
}
.site-form-footer a { color: var(--gray-400); }

/* =============================================
   TABLES (gold header, visible borders)
   ============================================= */
.data-table {
  width: 100%; border-collapse: collapse;
  margin: 16px 0; font-size: 14px;
  border: 1px solid rgba(212, 165, 55, 0.15);
  border-radius: var(--radius-sm); overflow: hidden;
}
.data-table thead th {
  background: var(--bg4); color: var(--gold);
  font-weight: 600; font-size: 13px; text-align: left;
  padding: 12px 14px; white-space: nowrap;
  border-bottom: 2px solid var(--gold);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.data-table thead th:last-child { border-right: none; }
.data-table tbody td {
  padding: 10px 14px; color: var(--gray-300);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}
.data-table tbody td:last-child { border-right: none; }
.data-table tbody tr:nth-child(even) { background: rgba(255, 255, 255, 0.02); }
.data-table tbody tr:nth-child(odd) { background: var(--bg2); }
.data-table tbody tr:hover { background: rgba(212, 165, 55, 0.06); }
.data-table tbody td:first-child { font-weight: 500; color: var(--gray-200); }

.table-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 16px 0; border-radius: var(--radius-sm);
  border: 1px solid rgba(212, 165, 55, 0.15);
}
.table-wrap .data-table { margin: 0; min-width: 500px; border: none; border-radius: 0; }

/* =============================================
   CTA BOX (gold gradient - different from CricBet99's green)
   ============================================= */
.cta-box {
  background: var(--bg2);
  border: 2px solid var(--gold);
  border-radius: var(--radius); padding: 32px 20px;
  text-align: center; margin: 24px 0;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-box h3 { font-size: 20px; color: var(--gold); margin-bottom: 8px; }
.cta-box p { color: var(--gray-300); margin-bottom: 16px; font-size: 14px; }
.cta-box .btn-dark {
  display: inline-block; background: var(--gold); color: #000;
  font-weight: 700; padding: 14px 32px; border-radius: var(--radius-sm);
  font-size: 15px; min-height: 48px; transition: all var(--transition);
  letter-spacing: 0.5px; text-transform: uppercase;
}
.cta-box .btn-dark:hover { background: var(--gold-light); box-shadow: var(--shadow-gold); }

.cta-section { padding: 0; }
.cta-section .cta-box { margin: 0; border-radius: 0; }

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-section { margin: 32px 0; }
.faq-item {
  border: 1px solid rgba(212, 165, 55, 0.1);
  border-radius: var(--radius-sm); margin-bottom: 8px;
  overflow: hidden;
}
.faq-q {
  width: 100%; padding: 14px 40px 14px 16px;
  background: var(--bg3); color: var(--white);
  font-size: 14px; font-weight: 600; text-align: left;
  position: relative; cursor: pointer;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--bg4); }
.faq-q::after {
  content: '+'; position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%); font-size: 20px; color: var(--gold);
  font-weight: 400;
}
.faq-q.open::after { content: '-'; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a.open { max-height: 600px; }
.faq-a p { padding: 14px 16px; font-size: 14px; color: var(--gray-300); }

/* =============================================
   BREADCRUMBS
   ============================================= */
.breadcrumbs {
  padding: 12px 0; font-size: 13px; color: var(--gray-500);
}
.breadcrumbs a { color: var(--gray-400); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { margin: 0 6px; }

/* =============================================
   CONTENT LINKS
   ============================================= */
.content-link { color: var(--gold); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.content-link:hover { color: var(--gold-light); }
.ext-link { color: var(--gold); }
.ext-link::after { content: ' \2197'; font-size: 12px; }

/* =============================================
   HIGHLIGHT BOXES
   ============================================= */
.highlight-box {
  border-radius: var(--radius-sm); padding: 16px;
  margin: 16px 0; font-size: 14px;
}
.highlight-box-title {
  font-weight: 700; font-size: 14px; margin-bottom: 8px;
}
.tip-box { background: rgba(212, 165, 55, 0.08); border-left: 3px solid var(--gold); }
.tip-box .highlight-box-title { color: var(--gold); }
.warning-box { background: rgba(239, 68, 68, 0.08); border-left: 3px solid var(--red); }
.warning-box .highlight-box-title { color: var(--red); }
.info-box { background: rgba(59, 130, 246, 0.08); border-left: 3px solid #3b82f6; }
.info-box .highlight-box-title { color: #3b82f6; }

.key-takeaway {
  background: rgba(212, 165, 55, 0.05);
  border: 1px solid rgba(212, 165, 55, 0.2);
  border-radius: var(--radius-sm); padding: 16px; margin: 16px 0;
}
.key-takeaway h4 { color: var(--gold); font-size: 14px; margin-bottom: 6px; }

/* =============================================
   GUIDE LAYOUT (single column - different from CricBet99's sidebar)
   ============================================= */
.guide-header { margin-bottom: 24px; }
.guide-meta {
  display: flex; gap: 16px; font-size: 13px; color: var(--gray-400);
  flex-wrap: wrap;
}
.guide-content h2 { border-bottom: 1px solid rgba(212, 165, 55, 0.15); padding-bottom: 8px; }
.guide-content ul, .guide-content ol {
  padding-left: 20px; margin-bottom: 16px;
}
.guide-content li {
  margin-bottom: 8px; list-style: disc; color: var(--gray-300);
}
.guide-content ol li { list-style: decimal; }

/* TOC - collapsible box style (different from CricBet99's sidebar) */
.toc-box {
  background: var(--bg3);
  border: 1px solid rgba(212, 165, 55, 0.15);
  border-radius: var(--radius); padding: 16px 20px;
  margin-bottom: 24px;
}
.toc-box-title {
  font-weight: 700; font-size: 15px; color: var(--gold);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.toc-box-title::after { content: '-'; font-size: 20px; color: var(--gray-400); }
.toc-box.collapsed .toc-box-title::after { content: '+'; }
.toc-box.collapsed .toc-list { display: none; }
.toc-list { margin-top: 12px; }
.toc-list li { margin-bottom: 6px; list-style: none; }
.toc-list a { font-size: 14px; color: var(--gray-300); }
.toc-list a:hover { color: var(--gold); }

/* =============================================
   STEPS (numbered steps - different style)
   ============================================= */
.steps { counter-reset: step; margin: 20px 0; }
.step {
  display: flex; gap: 16px; margin-bottom: 20px;
  padding: 16px; background: var(--bg2);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  flex-shrink: 0; width: 36px; height: 36px;
  background: var(--gold); color: #000;
  font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.step-content h4 { margin: 0 0 4px; font-size: 15px; }
.step-content p { margin: 0; font-size: 14px; color: var(--gray-300); }

/* =============================================
   FOOTER (3-column with gold dividers)
   ============================================= */
.footer {
  background: var(--bg2);
  border-top: 1px solid rgba(212, 165, 55, 0.15);
  padding: 40px 0 0;
  margin-top: 40px;
}

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

.footer-brand p { font-size: 13px; color: var(--gray-400); margin-top: 10px; line-height: 1.6; }
.footer-brand img { height: 32px; width: auto; }

.footer-col-title {
  font-size: 14px; font-weight: 700; color: var(--gold);
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px;
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: var(--gray-400); }
.footer-links a:hover { color: var(--gold); }

.footer-responsible {
  padding: 20px 0; margin-top: 28px;
  border-top: 1px solid rgba(212, 165, 55, 0.1);
}
.footer-responsible p { font-size: 12px; color: var(--gray-500); line-height: 1.7; }
.footer-responsible a { color: var(--gray-400); }

.footer-bottom {
  display: flex; flex-direction: column; gap: 8px;
  padding: 16px 0; border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 12px; color: var(--gray-500);
}
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-legal-links a { color: var(--gray-500); }
.footer-legal-links a:hover { color: var(--gold); }

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.wa-float {
  position: fixed; bottom: 20px; right: 16px;
  z-index: 998; width: 56px; height: 56px;
  border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
.wa-float-pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (min-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 26px; }
  .hero h1 { font-size: 38px; }
  .hero-buttons { flex-direction: row; max-width: 440px; }
  .section { padding: 56px 0; }
}

@media (min-width: 1024px) {
  .container { padding: 0 24px; }
  h1 { font-size: 40px; }
}

/* Print styles */
@media print {
  .nav, .wa-float, .site-form, .cta-box, .footer { display: none; }
  body { background: #fff; color: #000; }
}

/* Nav CTA - compact single line */
.nav-cta {
  font-size: 12px !important;
  padding: 8px 14px !important;
  white-space: nowrap !important;
}


/* ===== UI FIXES ===== */

/* Platform cards (Other Platforms section) - 80% width images */
.card-grid-3 .glass-card img[width="72"] {
  width: 80% !important;
  height: auto !important;
  max-width: 280px;
  margin: 0 auto 12px;
  display: block;
  border-radius: 12px;
}

/* Sport/Casino individual pages - first image full width on mobile */
@media (max-width: 768px) {
  article img[width="800"],
  .section > .container > img[width="800"] {
    width: 100% !important;
    height: auto !important;
    border-radius: 8px;
  }
}

/* Homepage: reduce gap between form and content */
.site-form {
  margin-bottom: 24px !important;
}

/* Even section spacing throughout */
.section {
  padding: 32px 0 !important;
}

/* Hero: center vertically, fix gap */
.hero {
  min-height: auto !important;
  padding: 60px 0 20px !important;
  display: flex;
  align-items: center;
}
.hero .container {
  text-align: center;
}

/* Trust text: spacing below buttons */
.hero-trust {
  margin-top: 20px !important;
  padding-top: 12px;
  font-size: 13px;
}

/* Hero buttons spacing */
.hero-buttons {
  margin-bottom: 0 !important;
}
