/* =========================================================
   GOLDSBET - LUXURY GOLDEN DESIGN SYSTEM & HIGH-LEGIBILITY TYPOGRAPHY
========================================================= */
:root {
  --gb-gold: #d97706;
  --gb-gold-bright: #f59e0b;
  --gb-gold-light: #fbbf24;
  --gb-gold-dark: #b45309;
  --gb-gold-soft: #fef3c7;
  --gb-gold-glow: rgba(217, 119, 6, 0.25);
  
  --gb-dark: #0b0e14;
  --gb-dark-card: #121824;
  --gb-dark-border: #1e293b;
  
  --gb-ink: #0f172a;
  --gb-ink-secondary: #334155;
  --gb-muted: #64748b;
  --gb-border: #e2e8f0;
  --gb-bg-soft: #f8fafc;
  --gb-bg-warm: #fffdf7;
  
  --gb-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --gb-radius-sm: 8px;
  --gb-radius: 14px;
  --gb-radius-lg: 20px;
  --gb-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --gb-shadow-gold: 0 8px 25px rgba(217, 119, 6, 0.28);
}

/* Base Typography Reset - Clear, Bold, High Legibility */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--gb-font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--gb-ink);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--gb-font);
  color: var(--gb-ink);
  font-weight: 800;
  line-height: 1.25;
  margin-top: 0;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(30px, 4.2vw, 46px); letter-spacing: -0.035em; }
h2 { font-size: clamp(26px, 3.4vw, 36px); letter-spacing: -0.03em; }
h3 { font-size: 21px; font-weight: 750; }
h4 { font-size: 18px; font-weight: 750; }

p {
  font-size: 17px;
  line-height: 1.72;
  color: var(--gb-ink-secondary);
  margin: 0 0 16px;
}

.hero-lead {
  font-size: 19px !important;
  line-height: 1.65 !important;
  color: var(--gb-ink-secondary) !important;
  font-weight: 500 !important;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gb-gold) !important;
  margin-bottom: 8px;
}

/* Primary Luxury Golden CTAs */
.primary-cta, .home-button, .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  font-size: 16px;
  font-weight: 850;
  border-radius: 12px;
  color: #ffffff !important;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  box-shadow: var(--gb-shadow-gold);
  border: none;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.primary-cta:hover, .home-button:hover, .nav-cta:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #b45309 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(217, 119, 6, 0.38);
  color: #ffffff !important;
}

.home-button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 750;
  border-radius: 12px;
  color: var(--gb-ink);
  background: #ffffff;
  border: 1.5px solid var(--gb-border);
  text-decoration: none;
  transition: all 0.2s ease;
}

.home-button-outline:hover {
  border-color: var(--gb-gold);
  color: var(--gb-gold);
  background: var(--gb-bg-warm);
}

/* Card Badges and Game UI */
.game-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.game-thumb-card {
  background: #ffffff;
  border: 1.5px solid var(--gb-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.22s ease;
  display: flex;
  flex-direction: column;
}

.game-thumb-card:hover {
  border-color: var(--gb-gold-bright);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(217, 119, 6, 0.15);
}

.game-thumb-header {
  position: relative;
  background: #0b0e14;
  aspect-ratio: 16/10;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-thumb-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-thumb-card:hover .game-thumb-header img {
  transform: scale(1.06);
}

.game-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  color: #f59e0b;
  font-size: 12px;
  font-weight: 850;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.game-thumb-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.game-thumb-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--gb-ink);
  margin-bottom: 4px;
}

.game-thumb-provider {
  font-size: 13px;
  font-weight: 600;
  color: var(--gb-muted);
}

.game-thumb-btn {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #f8fafc;
  border: 1.5px solid var(--gb-border);
  border-radius: 10px;
  color: var(--gb-ink);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: all 0.2s ease;
}

.game-thumb-card:hover .game-thumb-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  border-color: transparent;
}

/* Sports Odds Buttons */
.odds-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  background: #f8fafc;
  border: 1.5px solid var(--gb-border);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.odds-btn:hover {
  border-color: var(--gb-gold);
  background: #fffdf7;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.15);
}

.odds-team {
  font-size: 14px;
  font-weight: 700;
  color: var(--gb-ink-secondary);
}

.odds-num {
  font-size: 19px;
  font-weight: 900;
  color: var(--gb-gold);
  margin-top: 2px;
}

/* Sticky Bottom Bar */
.sticky-conversion-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(14px);
  border-top: 1.5px solid #334155;
  padding: 12px 16px;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.3);
}

.sticky-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* FAQ Accordion Styling */
.faq-list {
  border-top: 1.5px solid var(--gb-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.faq-item {
  background: #ffffff;
  border: 1.5px solid var(--gb-border) !important;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: #fde68a !important;
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.06);
}

.faq-item[open] {
  border-color: var(--gb-gold) !important;
  background: #fffdf9;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #0f172a;
  font-size: 17px;
  font-weight: 800;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary .faq-question,
.faq-item summary > strong,
.faq-item summary > span:first-child:not(:last-child) {
  flex: 1;
  font-size: 17px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  display: block !important;
  background: none !important;
  border: none !important;
  text-align: left;
}

.faq-item summary .faq-toggle,
.faq-item summary > span:last-child {
  width: 32px !important;
  min-width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #fef3c7 !important;
  border: 1.5px solid #fde68a !important;
  color: #b45309 !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item[open] summary .faq-toggle,
.faq-item[open] summary > span:last-child {
  transform: rotate(45deg);
  background: #d97706 !important;
  color: #ffffff !important;
  border-color: #d97706 !important;
}

.faq-item p,
.faq-item .faq-answer {
  margin: 0;
  padding: 0 22px 18px 22px;
  color: #334155;
  font-size: 16px;
  line-height: 1.7;
}

/* Brand & Logo Subtle Drop Shadow & Dimensions */
.brand {
  display: inline-flex;
  align-items: center;
}

.brand-mark {
  height: 56px !important;
  max-width: 220px !important;
  width: auto !important;
  object-fit: contain !important;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.14)) drop-shadow(0 1px 2px rgba(217, 119, 6, 0.18));
  transition: filter 0.25s ease, transform 0.25s ease;
}

.footer-logo-img {
  height: 70px !important;
  max-width: 260px !important;
  width: auto !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.14)) drop-shadow(0 1px 2px rgba(217, 119, 6, 0.18));
  transition: filter 0.25s ease, transform 0.25s ease;
}

.brand-mark:hover,
.footer-logo-img:hover {
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.18)) drop-shadow(0 2px 6px rgba(217, 119, 6, 0.28));
  transform: translateY(-1px);
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .brand-mark { height: 46px !important; max-width: 175px !important; }
  .footer-logo-img { height: 56px !important; max-width: 210px !important; }
  body { font-size: 16px; }
  p { font-size: 16px; line-height: 1.65; }
  .hero-lead { font-size: 17px !important; }
  h1 { font-size: 26px !important; }
  h2 { font-size: 23px !important; }
  h3 { font-size: 19px !important; }
  .faq-item summary { font-size: 16px; padding: 16px 18px; }
  .faq-item summary .faq-question { font-size: 16px !important; }
  .game-card-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sticky-bar-inner { flex-direction: column; gap: 8px; }
  .sticky-bar-inner .btn-group { width: 100%; display: flex; gap: 8px; }
  .sticky-bar-inner .btn-group a { flex: 1; text-align: center; }
}