/* ================================
   LC88 MASTER CSS - Modern Luxury Casino
   Complete Redesign v2.0
   Style: Wide, Spacious, Modern
   ================================ */

/* ================================
   CSS VARIABLES
   ================================ */
:root {
  /* Primary Colors - Gold */
  --gold: #D4AF37;
  --gold-light: #F4D03F;
  --gold-dark: #B8941F;

  /* Dark Theme */
  --dark-900: #0a0a0f;
  --dark-800: #12121a;
  --dark-700: #1a1a2e;
  --dark-600: #252540;
  --dark-500: #333355;

  /* Text Colors */
  --text-white: #FFFFFF;
  --text-light: #E8E8E8;
  --text-muted: #A0A0A0;
  --text-dim: #666666;

  /* Accent Colors */
  --accent-red: #e94560;
  --accent-green: #10B981;
  --accent-blue: #3B82F6;
  --accent-orange: #F59E0B;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #B8941F 0%, #D4AF37 25%, #F4D03F 50%, #D4AF37 75%, #B8941F 100%);
  --gradient-dark: linear-gradient(180deg, var(--dark-700) 0%, var(--dark-900) 100%);
  --gradient-card: linear-gradient(145deg, var(--dark-700) 0%, var(--dark-800) 100%);

  /* Spacing */
  --section-padding: clamp(60px, 8vw, 120px);
  --container-padding: clamp(20px, 5vw, 80px);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.4);
  --glow-gold: 0 0 30px rgba(212, 175, 55, 0.3);

  /* Transitions */
  --transition: all 0.3s ease;

  /* Container */
  --container-max: 1400px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-light);
  background: var(--dark-900);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

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

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

a:hover {
  color: var(--gold);
}

ul, ol {
  list-style: none;
}

/* ================================
   CONTAINER & LAYOUT
   ================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  overflow-x: hidden;
}

/* Full Width Section */
section {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

/* Mobile table wrapper - prevents horizontal overflow */
.table-wrapper,
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
}

/* ================================
   TYPOGRAPHY
   ================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-white);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.section-title span,
.section-title .gold {
  color: var(--gold);
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* ================================
   HEADER
   ================================ */
:root {
  --header-height: 60px;
}

@media (min-width: 768px) {
  :root {
    --header-height: 70px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  height: 40px;
  width: auto;
}

@media (min-width: 768px) {
  .logo {
    height: 48px;
  }
}

.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: block;
  }
}

.nav-menu {
  display: flex;
  gap: 0.5rem;
}

.nav-link {
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
}

.nav-cta-buttons {
  display: flex;
  gap: 0.75rem;
}

/* Mobile Menu Button */
.mobile-menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text-white);
}

.mobile-menu-button svg {
  width: 24px;
  height: 24px;
}

@media (min-width: 1024px) {
  .mobile-menu-button {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(100vh - var(--header-height));
  height: calc(100dvh - var(--header-height));
  background: var(--dark-800);
  padding: 1rem;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  z-index: 999;
}

.mobile-menu.active {
  transform: translateX(0);
  display: block;
}

.mobile-menu .nav-menu {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu .nav-link {
  display: block;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
}

.mobile-menu .nav-link:active,
.mobile-menu .nav-link:hover {
  background: rgba(212, 175, 55, 0.1);
}

.mobile-cta {
  margin-top: 1.5rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-cta .btn-primary,
.mobile-cta .btn-secondary {
  width: 100%;
  justify-content: center;
}

/* ================================
   BUTTONS
   ================================ */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--dark-900);
  box-shadow: var(--glow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
  color: var(--dark-900);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--dark-900);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 1.25rem 3rem;
  font-size: 1.15rem;
}

.btn-xl {
  padding: 1.5rem 4rem;
  font-size: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.btn.btn-primary {
  background: var(--gradient-gold);
  color: var(--dark-900);
}

/* ================================
   HERO SECTION
   ================================ */
.hero,
.page-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(80px + var(--section-padding)) 0 var(--section-padding);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 15, 0.95) 0%,
    rgba(26, 26, 46, 0.85) 50%,
    rgba(10, 10, 15, 0.95) 100%
  );
}

.hero-content {
  max-width: 900px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

/* Page Hero (smaller) */
.page-hero {
  min-height: 50vh;
  padding-top: calc(80px + 60px);
}

.page-hero .hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ================================
   CONTENT SECTIONS
   ================================ */
.content-block,
.content-section {
  padding: var(--section-padding) 0;
}

.content-block.bg-dark,
.alt-bg {
  background: var(--dark-800);
}

.content-block.bg-gradient {
  background: var(--gradient-dark);
}

/* ================================
   MODERN CARD GRID (Wide Cards)
   ================================ */
.content-grid {
  display: grid;
  gap: 2rem;
}

/* Default: 1 column on mobile */
.content-grid {
  grid-template-columns: 1fr;
}

/* 2 columns on tablet */
@media (min-width: 768px) {
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Override for specific grids */
.grid-2 {
  grid-template-columns: 1fr;
}

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

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

@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* NO 4-column grid - use 2 columns max for wide cards */
.grid-4 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

/* ================================
   WIDE FEATURE CARDS
   ================================ */
.grid-item {
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.grid-item:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-hover);
}

.grid-item-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-md);
}

.grid-item-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.grid-item h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.grid-item p {
  color: var(--text-muted);
  flex-grow: 1;
}

.grid-item ul {
  margin: 1rem 0;
  padding-left: 1.25rem;
}

.grid-item li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}

.grid-item li::before {
  content: '•';
  color: var(--gold);
  position: absolute;
  left: 0;
}

/* ================================
   PRODUCT CARDS (Wide Horizontal)
   ================================ */
.product-card {
  display: flex;
  flex-direction: column;
}

.product-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

/* ================================
   STATS SECTION (Horizontal Layout)
   ================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(212, 175, 55, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-white);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ================================
   PROMO CARDS (Wide)
   ================================ */
.promo-card {
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.promo-card.featured {
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
}

.promo-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-red);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
}

.promo-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.promo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
  margin: 1rem 0;
}

/* ================================
   STEPS / PROCESS (Horizontal)
   ================================ */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-item {
  display: flex;
  gap: 2rem;
  background: var(--gradient-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-900);
}

.step-content h3 {
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.step-content p {
  color: var(--text-muted);
}

.step-content ul {
  margin-top: 1rem;
  padding-left: 1.25rem;
}

.step-content li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}

.step-content li::before {
  content: '✓';
  color: var(--gold);
  position: absolute;
  left: 0;
}

.step-warning {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(239, 68, 68, 0.1);
  border-left: 4px solid var(--accent-red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-light);
}

/* ================================
   PAYMENT SECTION
   ================================ */
.payment-section {
  margin-bottom: 3rem;
}

.payment-section h3 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-align: center;
}

.payment-icons-large {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.payment-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--dark-700);
  border-radius: var(--radius-md);
  min-width: 150px;
}

.payment-item img {
  height: 48px;
  width: auto;
  margin: 0 auto 0.75rem;
}

.payment-item span {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.payment-item small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.payment-icons-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.payment-icons-grid img {
  height: 40px;
  width: auto;
  opacity: 0.8;
  transition: var(--transition);
}

.payment-icons-grid img:hover {
  opacity: 1;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.payment-icons img {
  height: 32px;
  width: auto;
  opacity: 0.7;
}

/* ================================
   TRUST / SECURITY SECTION
   ================================ */
.trust-section {
  text-align: center;
  margin-bottom: 3rem;
}

.trust-badge-main {
  margin: 0 auto 2rem;
}

.trust-badge-main img {
  max-width: 200px;
  margin: 0 auto;
}

.security-item {
  text-align: center;
  padding: 2rem;
}

.security-item img {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.security-item h4 {
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ================================
   FAQ ACCORDION
   ================================ */
.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--dark-700);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p,
.faq-answer ul {
  padding: 0 2rem 1.5rem;
  color: var(--text-muted);
}

.faq-answer ul {
  padding-left: 3.5rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}

.faq-answer li::before {
  content: '•';
  color: var(--gold);
  position: absolute;
  left: 0;
}

/* FAQ List for other pages */
.faq-list .faq-item {
  background: var(--dark-700);
}

/* ================================
   CTA BANNER
   ================================ */
.cta-banner,
.cta-section {
  padding: var(--section-padding) 0;
  background: var(--gradient-dark);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.cta-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.cta-benefit {
  background: rgba(212, 175, 55, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.cta-box {
  background: var(--gradient-card);
  padding: 3rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.cta-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.cta-links a {
  color: var(--gold);
}

.cta-links a:hover {
  text-decoration: underline;
}

/* ================================
   RESPONSIBLE GAMING NOTICE
   ================================ */
.responsible-notice {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
  border-top: 3px solid var(--accent-orange);
  padding: 3rem 0;
}

.notice-content-enhanced {
  max-width: 1000px;
  margin: 0 auto;
}

.rg-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rg-title h3 {
  color: var(--accent-orange);
  margin-bottom: 0.5rem;
}

.rg-title p {
  color: var(--accent-red);
  margin: 0;
  font-weight: 600;
}

.rg-tools {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.rg-tools h4 {
  color: var(--text-white);
  margin-bottom: 1rem;
}

.rg-tools ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.75rem;
  padding-left: 0;
}

.rg-tools li {
  padding-left: 1.5rem;
  position: relative;
}

.rg-tools li::before {
  content: '✓';
  color: var(--accent-green);
  position: absolute;
  left: 0;
}

.rg-helplines h4 {
  margin-bottom: 1rem;
}

.helpline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.helpline-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
}

.helpline-item a {
  color: var(--gold);
  font-weight: 600;
}

.rg-warning {
  background: rgba(239, 68, 68, 0.1);
  border-left: 4px solid var(--accent-red);
  padding: 1rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
}

.rg-cta {
  text-align: center;
  margin-top: 1.5rem;
}

.responsible-gaming {
  margin-top: 1rem;
  color: var(--text-muted);
}

.responsible-gaming a {
  color: var(--gold);
}

/* ================================
   AUTHOR SECTION
   ================================ */
.author-section {
  background: var(--dark-800);
}

.author-box {
  display: flex;
  gap: 2rem;
  background: var(--dark-700);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .author-box {
    flex-direction: column;
    text-align: center;
  }

  .author-avatar {
    margin: 0 auto;
  }
}

.author-avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--gold);
}

.author-info h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.author-title {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.author-credentials ul {
  padding-left: 1.25rem;
}

.author-credentials li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 1rem;
}

.author-credentials li::before {
  content: '•';
  color: var(--gold);
  position: absolute;
  left: 0;
}

.author-disclosure {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-dim);
}

.editorial-standards {
  margin-bottom: 2rem;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.standard-item {
  background: var(--dark-700);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold);
}

.standard-item h4 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.standard-item p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

.sources-references {
  background: var(--dark-700);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
}

.sources-references h3 {
  margin-bottom: 1rem;
}

.sources-references ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.sources-references li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.sources-references a {
  color: var(--gold);
}

.last-updated {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* ================================
   RTP DISCLOSURE
   ================================ */
.rtp-disclosure-section {
  background: var(--dark-800);
}

.rtp-explanation,
.house-edge-explanation {
  background: var(--dark-700);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.important-note {
  background: rgba(245, 158, 11, 0.1);
  border-left: 4px solid var(--accent-orange);
  padding: 1rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 1rem;
}

.rtp-table-wrapper {
  overflow-x: auto;
  margin-bottom: 2rem;
}

.data-table,
.rtp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--dark-700);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.data-table th,
.data-table td,
.rtp-table th,
.rtp-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.data-table th,
.rtp-table th {
  background: var(--gold);
  color: var(--dark-900);
  font-weight: 600;
}

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

/* Mobile table adjustments */
@media (max-width: 768px) {
  .data-table,
  .rtp-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .data-table th,
  .data-table td,
  .rtp-table th,
  .rtp-table td {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
}

.table-note {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.probability-facts {
  margin-bottom: 2rem;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.fact-card {
  background: var(--dark-700);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-top: 4px solid var(--text-muted);
}

.fact-card h4 {
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.fact-card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

.bankroll-management {
  background: var(--dark-700);
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.bankroll-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.tip-card {
  background: rgba(16, 185, 129, 0.05);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent-green);
}

.tip-card h4 {
  color: var(--accent-green);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.tip-card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9rem;
}

/* ================================
   PROS & CONS
   ================================ */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .pros-cons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pros-card,
.cons-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.pros-card {
  background: rgba(16, 185, 129, 0.05);
  border-left: 5px solid var(--accent-green);
}

.cons-card {
  background: rgba(239, 68, 68, 0.05);
  border-left: 5px solid var(--accent-red);
}

.pros-card h3 {
  color: var(--accent-green);
  margin-bottom: 1.5rem;
}

.cons-card h3 {
  color: var(--accent-red);
  margin-bottom: 1.5rem;
}

.pros-card li,
.cons-card li {
  margin-bottom: 1rem;
  color: var(--text-muted);
  padding-left: 1.5rem;
  position: relative;
}

.pros-card li::before {
  content: '✓';
  color: var(--accent-green);
  position: absolute;
  left: 0;
}

.cons-card li::before {
  content: '✗';
  color: var(--accent-red);
  position: absolute;
  left: 0;
}

/* ================================
   CASINO RG BOX
   ================================ */
.casino-rg-section {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(239, 68, 68, 0.05) 100%);
}

.casino-rg-box {
  display: flex;
  gap: 2rem;
  background: var(--dark-700);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--accent-orange);
}

@media (max-width: 768px) {
  .casino-rg-box {
    flex-direction: column;
    text-align: center;
  }

  .rg-icon {
    margin: 0 auto;
  }
}

.rg-content h3 {
  color: var(--accent-orange);
  margin-bottom: 1rem;
}

.rg-content ul {
  padding-left: 1.25rem;
  margin: 1rem 0 1.5rem;
}

.rg-content li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 1rem;
}

.rg-content li::before {
  content: '•';
  color: var(--gold);
  position: absolute;
  left: 0;
}

.rg-helpline {
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

/* ================================
   FOOTER
   ================================ */
.footer {
  background: var(--dark-800);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-container {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-section h3 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 0.5rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

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

.footer-bottom a:hover {
  color: var(--gold);
}

.affiliate-disclosure {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
  text-align: left;
}

.affiliate-disclosure p {
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ================================
   CASINO PAGE SPECIFIC
   ================================ */
.casino-hero {
  background: linear-gradient(135deg, rgba(10, 10, 15, 0.95), rgba(26, 26, 46, 0.9));
}

.casino-overview-section {
  background: var(--dark-800);
}

.overview-grid {
  max-width: 800px;
  margin: 0 auto;
}

.overview-table-wrapper {
  background: var(--dark-700);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Providers Grid */
.providers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .providers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.provider-card {
  background: var(--gradient-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.provider-card.featured {
  border-color: var(--gold);
  grid-column: 1 / -1;
}

.provider-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--dark-900);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
}

.provider-card h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.provider-card ul {
  padding-left: 1.25rem;
}

.provider-card li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 1rem;
}

.provider-card li::before {
  content: '✓';
  color: var(--gold);
  position: absolute;
  left: 0;
}

/* Casino Games Grid */
.casino-games-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .casino-games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.casino-game-card {
  background: var(--gradient-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.casino-game-card.featured {
  border-color: var(--gold);
  grid-column: 1 / -1;
}

.game-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.casino-game-card h3 {
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.game-desc {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.game-how-to h4,
.game-tables h4 {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.game-how-to ul,
.game-tables table {
  margin-bottom: 1rem;
}

.game-how-to li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.game-how-to li::before {
  content: '•';
  color: var(--gold);
  position: absolute;
  left: 0.5rem;
}

.data-table.compact th,
.data-table.compact td {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

.side-bets,
.payout-info {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(212, 175, 55, 0.05);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
}

/* Strategies */
.strategies-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.strategy-block h3 {
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.strategies-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.strategy-card {
  background: var(--dark-700);
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.strategy-card h4 {
  color: var(--text-white);
  margin-bottom: 1rem;
}

.strategy-card li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
}

.strategy-card li::before {
  content: '•';
  color: var(--gold);
  position: absolute;
  left: 0;
}

/* Stream Section */
.stream-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .stream-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stream-card {
  background: var(--gradient-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.stream-card h3 {
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.feature-list li {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  padding-left: 1.25rem;
  position: relative;
}

.feature-list li::before {
  content: '•';
  color: var(--gold);
  position: absolute;
  left: 0;
}

/* Promo Grid */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cta-center {
  text-align: center;
  margin-top: 2rem;
}

/* ================================
   RESPONSIBLE GAMING PAGE
   ================================ */
.responsible-hero {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(10, 10, 15, 0.95));
}

.hero-warning {
  color: var(--accent-red);
  font-size: 1.2rem;
  margin-top: 1rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.principle-card {
  background: var(--gradient-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.principle-number {
  width: 48px;
  height: 48px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark-900);
  margin-bottom: 1rem;
}

.principle-card h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.principle-card li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
}

.principle-card li::before {
  content: '•';
  color: var(--gold);
  position: absolute;
  left: 0;
}

/* Tools Section */
.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tool-card {
  background: var(--gradient-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tool-card h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.tool-table {
  width: 100%;
  margin: 1rem 0;
}

.tool-table th,
.tool-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tool-table th {
  color: var(--text-white);
  font-weight: 600;
}

.tool-table td {
  color: var(--text-muted);
}

.tool-steps h4 {
  color: var(--text-white);
  margin: 1rem 0 0.75rem;
}

.tool-steps ol {
  padding-left: 1.5rem;
  counter-reset: step;
}

.tool-steps li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  counter-increment: step;
  position: relative;
  padding-left: 0.5rem;
}

.tool-steps li::marker {
  color: var(--gold);
  font-weight: 600;
}

.tool-note {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(245, 158, 11, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Self Test */
.self-test {
  background: var(--dark-700);
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.self-test h3 {
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.test-questions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.test-question {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
}

.question-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--dark-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.question-content p {
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.question-content ul {
  padding-left: 1.25rem;
}

.question-content li {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.test-results {
  margin-top: 2rem;
}

.test-results h4 {
  color: var(--text-white);
  margin-bottom: 1rem;
}

.results-table {
  width: 100%;
  border-collapse: collapse;
}

.results-table th,
.results-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.results-table th {
  background: var(--dark-600);
  color: var(--text-white);
}

.result-normal td:first-child { color: var(--accent-green); }
.result-warning td:first-child { color: var(--accent-orange); }
.result-high td:first-child { color: var(--accent-red); }
.result-danger td:first-child { color: var(--accent-red); font-weight: 700; }

/* Consequences */
.consequences-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .consequences-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.consequence-card {
  background: var(--gradient-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.consequence-card h3 {
  margin-bottom: 1rem;
}

.consequence-card li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
}

.consequence-card li::before {
  content: '•';
  color: var(--accent-red);
  position: absolute;
  left: 0;
}

/* Support Section */
.support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .support-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.support-card {
  background: var(--gradient-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.support-card h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.support-item {
  margin: 1.5rem 0;
}

.support-item h4 {
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.hotline {
  background: rgba(212, 175, 55, 0.1);
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
}

.international-links li {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.international-links a {
  color: var(--gold);
}

/* Family Section */
.family-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .family-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.family-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.family-card.do {
  background: rgba(16, 185, 129, 0.05);
  border-left: 5px solid var(--accent-green);
}

.family-card.dont {
  background: rgba(239, 68, 68, 0.05);
  border-left: 5px solid var(--accent-red);
}

.family-card.self-care {
  background: rgba(59, 130, 246, 0.05);
  border-left: 5px solid var(--accent-blue);
}

.family-card h3 {
  margin-bottom: 1rem;
}

.family-card.do h3 { color: var(--accent-green); }
.family-card.dont h3 { color: var(--accent-red); }
.family-card.self-care h3 { color: var(--accent-blue); }

.family-card li {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  padding-left: 1.25rem;
  position: relative;
}

/* Minor Protection */
.minor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .minor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.minor-card {
  background: var(--gradient-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.minor-card h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.age-warning {
  text-align: center;
  font-size: 1.25rem;
  color: var(--accent-red);
  margin-bottom: 2rem;
}

.parent-tips h4 {
  color: var(--text-white);
  margin: 1.5rem 0 0.75rem;
}

.parent-tips ul {
  padding-left: 1.25rem;
}

.parent-tips li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* Commitment Section */
.commitment-list {
  max-width: 800px;
  margin: 0 auto;
}

.commitment-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.commitment-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--dark-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.commitment-item p {
  color: var(--text-muted);
  margin: 0;
}

/* Summary Section */
.summary-box {
  background: var(--dark-700);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.summary-box h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.summary-checklist li {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.help-box {
  background: rgba(212, 175, 55, 0.05);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 5px solid var(--gold);
  margin-bottom: 2rem;
}

.help-box h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.help-box li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.help-box a {
  color: var(--gold);
}

.final-reminder {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.cta-buttons {
  text-align: center;
}

/* ================================
   OTHER PAGES COMMON STYLES
   ================================ */
.section-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 800px;
}

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

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.ml-4 { margin-left: 1rem; }

/* ================================
   UTILITY CLASSES
   ================================ */
.gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }

/* ================================
   RESPONSIVE ADJUSTMENTS
   ================================ */
@media (max-width: 768px) {
  .step-item {
    flex-direction: column;
    text-align: center;
  }

  .test-question {
    flex-direction: column;
    text-align: center;
  }

  .commitment-item {
    flex-direction: column;
    text-align: center;
  }

  .rg-header {
    flex-direction: column;
    text-align: center;
  }

  .rg-tools ul {
    grid-template-columns: 1fr;
  }
}

/* Hide scrollbar but allow scrolling */
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

/* ================================
   MOBILE OVERFLOW FIXES
   ================================ */
@media (max-width: 480px) {
  /* Force single column and prevent overflow */
  .facts-grid,
  .bankroll-tips,
  .sources-grid,
  .standards-grid {
    grid-template-columns: 1fr !important;
  }

  /* Reduce card padding on small screens */
  .grid-item {
    padding: 1.5rem;
  }

  /* Ensure all elements stay within viewport */
  * {
    max-width: 100%;
  }

  /* Tables scroll horizontally */
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  /* Mobile header adjustments */
  .header-container {
    padding: 0 1rem;
  }

  .nav-cta-buttons {
    display: none;
  }
}
