/* ========================================
   700bet Casino Website - Master CSS
   Style: Luxurious Golden Casino
   Market: Brazil
   ======================================== */

/* ========================================
   CSS Variables (Design Tokens)
   ======================================== */
:root {
  /* Primary Colors - Golden Casino */
  --color-primary: #D4AF37;
  --color-primary-light: #FFD700;
  --color-primary-dark: #B8860B;

  /* Background Colors */
  --color-bg-primary: #0A0A0A;
  --color-bg-secondary: #1A1A1A;
  --color-bg-tertiary: #252525;
  --color-bg-card: #1E1E1E;

  /* Text Colors */
  --color-text-primary: #FFFFFF;
  --color-text-secondary: #B0B0B0;
  --color-text-muted: #808080;
  --color-text-gold: #D4AF37;

  /* Accent Colors */
  --color-success: #28A745;
  --color-danger: #DC3545;
  --color-warning: #FFC107;
  --color-info: #17A2B8;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
  --gradient-dark: linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%);
  --gradient-card: linear-gradient(145deg, #252525 0%, #1A1A1A 100%);

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
  --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.5);

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-accent: 'Cinzel', 'Georgia', serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Layout */
  --container-max: 1200px;
  --header-height: 80px;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  color: var(--color-primary-light);
}

ul, ol {
  list-style: none;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
}

h1 {
  font-size: var(--text-4xl);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

h2 {
  font-size: var(--text-3xl);
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: var(--space-3);
  margin-top: var(--space-12);
}

h3 {
  font-size: var(--text-2xl);
  color: var(--color-primary-light);
  margin-top: var(--space-8);
}

h4 {
  font-size: var(--text-xl);
  color: var(--color-text-primary);
  margin-top: var(--space-6);
}

p {
  margin-bottom: var(--space-4);
  color: var(--color-text-secondary);
}

strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

/* ========================================
   Layout & Container
   ======================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.section {
  padding: var(--space-16) 0;
}

.section-dark {
  background: var(--gradient-dark);
}

.section-alt {
  background-color: var(--color-bg-secondary);
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  z-index: 1000;
  transition: all var(--transition-base);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.logo img {
  height: 45px;
  width: auto;
}

.logo-text {
  font-family: var(--font-accent);
  font-size: var(--text-2xl);
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-list {
  display: flex;
  gap: var(--space-6);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-2);
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--color-primary);
  transition: all var(--transition-fast);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + var(--space-16)) var(--space-4) var(--space-16);
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.9) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-6);
  text-shadow: 0 0 60px rgba(212, 175, 55, 0.4);
}

.hero-description {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  margin-top: var(--space-8);
  flex-wrap: wrap;
}

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

.hero-stat-value {
  font-family: var(--font-accent);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-primary);
}

.hero-stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: var(--color-bg-primary);
}

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

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-bg-primary);
}

.btn-success {
  background: var(--color-success);
  color: white;
}

.btn-success:hover {
  background: #218838;
  transform: translateY(-2px);
}

.btn-danger {
  background: var(--color-danger);
  color: white;
}

.btn-lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-lg);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

/* CTA Button with Animation */
.btn-cta {
  background: var(--gradient-gold);
  color: var(--color-bg-primary);
  font-size: var(--text-lg);
  padding: var(--space-5) var(--space-10);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-cta:hover::before {
  left: 100%;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
  color: var(--color-bg-primary);
}

/* ========================================
   Cards
   ======================================== */
.card {
  background: var(--gradient-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all var(--transition-base);
}

.card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.card-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-md);
  font-size: var(--text-2xl);
}

.card-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin: 0;
}

.card-content {
  color: var(--color-text-secondary);
}

/* Feature Cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin: var(--space-8) 0;
}

.feature-card {
  text-align: center;
  padding: var(--space-8);
}

.feature-card .card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-4);
  font-size: var(--text-4xl);
  border-radius: var(--radius-lg);
}

/* ========================================
   Tables
   ======================================== */
.table-wrapper {
  overflow-x: auto;
  margin: var(--space-6) 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-bg-card);
}

th, td {
  padding: var(--space-4);
  text-align: left;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

th {
  background: rgba(212, 175, 55, 0.1);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: var(--text-sm);
  letter-spacing: 0.5px;
}

tr:hover {
  background: rgba(212, 175, 55, 0.05);
}

/* Status indicators in tables */
.status-pass {
  color: var(--color-success);
  font-weight: 600;
}

.status-fail {
  color: var(--color-danger);
  font-weight: 600;
}

.status-warning {
  color: var(--color-warning);
  font-weight: 600;
}

/* ========================================
   Info Boxes
   ======================================== */
.info-box {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  margin: var(--space-6) 0;
  border-left: 4px solid;
}

.info-box-success {
  background: rgba(40, 167, 69, 0.1);
  border-color: var(--color-success);
}

.info-box-warning {
  background: rgba(255, 193, 7, 0.1);
  border-color: var(--color-warning);
}

.info-box-danger {
  background: rgba(220, 53, 69, 0.1);
  border-color: var(--color-danger);
}

.info-box-info {
  background: rgba(23, 162, 184, 0.1);
  border-color: var(--color-info);
}

.info-box-gold {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--color-primary);
}

.info-box-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

/* Quick Answer Box */
.quick-answer {
  background: var(--gradient-card);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin: var(--space-8) 0;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.quick-answer h3 {
  font-size: var(--text-2xl);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

/* ========================================
   Lists
   ======================================== */
.content-list {
  margin: var(--space-4) 0;
  padding-left: var(--space-6);
}

.content-list li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-3);
  color: var(--color-text-secondary);
}

.content-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* Checklist */
.checklist li::before {
  content: '✓';
  background: var(--color-success);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  top: 0.2em;
}

/* Numbered List */
.numbered-list {
  counter-reset: item;
}

.numbered-list li {
  counter-increment: item;
}

.numbered-list li::before {
  content: counter(item);
  background: var(--gradient-gold);
  color: var(--color-bg-primary);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
  top: 0;
}

/* ========================================
   Pros & Cons
   ======================================== */
.pros-cons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin: var(--space-8) 0;
}

.pros-box,
.cons-box {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
}

.pros-box {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid var(--color-success);
}

.cons-box {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid var(--color-danger);
}

.pros-box h4,
.cons-box h4 {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.pros-box h4 {
  color: var(--color-success);
}

.cons-box h4 {
  color: var(--color-danger);
}

.pros-box li::before {
  content: '✓';
  color: var(--color-success);
  font-weight: bold;
}

.cons-box li::before {
  content: '✕';
  color: var(--color-danger);
  font-weight: bold;
}

/* ========================================
   Rating & Stars
   ======================================== */
.rating {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.stars {
  color: var(--color-primary);
  font-size: var(--text-xl);
  letter-spacing: 2px;
}

.rating-value {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
}

.rating-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ========================================
   Progress Bars
   ======================================== */
.progress-bar {
  height: 8px;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: var(--space-2) 0;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
  transition: width var(--transition-slow);
}

/* ========================================
   FAQ Accordion
   ======================================== */
.faq-list {
  margin: var(--space-8) 0;
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
  overflow: hidden;
}

.faq-question {
  padding: var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: rgba(212, 175, 55, 0.05);
}

.faq-question h4 {
  margin: 0;
  font-size: var(--text-lg);
  color: var(--color-text-primary);
}

.faq-icon {
  font-size: var(--text-xl);
  color: var(--color-primary);
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  padding: 0 var(--space-5) var(--space-5);
  display: none;
}

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

/* ========================================
   Testimonials
   ======================================== */
.testimonial {
  background: var(--gradient-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
}

.testimonial::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 80px;
  color: var(--color-primary);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
}

.testimonial-content {
  font-style: italic;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
}

.testimonial-name {
  font-weight: 600;
  color: var(--color-text-primary);
}

.testimonial-role {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: var(--space-4);
}

.footer-description {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.footer-links li {
  margin-bottom: var(--space-2);
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-primary);
  padding-left: var(--space-2);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}

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

.footer-legal {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* Age Restriction Badge */
.age-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(220, 53, 69, 0.2);
  border: 1px solid var(--color-danger);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--color-danger);
  font-weight: 600;
}

/* Responsible Gaming */
.responsible-gaming {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin: var(--space-8) 0;
  text-align: center;
}

.responsible-gaming h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.responsible-gaming p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

.responsible-icons {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.responsible-icons img {
  height: 40px;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.responsible-icons img:hover {
  opacity: 1;
}

/* ========================================
   Content Page Styles
   ======================================== */
.page-content {
  padding-top: calc(var(--header-height) + var(--space-8));
  padding-bottom: var(--space-16);
}

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

.article-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* Table of Contents */
.toc {
  background: var(--color-bg-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-8);
}

.toc-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.toc-list {
  padding-left: var(--space-4);
}

.toc-list li {
  margin-bottom: var(--space-2);
}

.toc-list a {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.toc-list a:hover {
  color: var(--color-primary);
}

/* Code blocks */
pre, code {
  font-family: 'Fira Code', 'Consolas', monospace;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-sm);
}

code {
  padding: var(--space-1) var(--space-2);
  font-size: var(--text-sm);
}

pre {
  padding: var(--space-4);
  overflow-x: auto;
  margin: var(--space-4) 0;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

pre code {
  padding: 0;
  background: transparent;
}

/* Blockquote */
blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-6);
  margin: var(--space-6) 0;
  font-style: italic;
  color: var(--color-text-secondary);
}

/* ========================================
   Game Cards
   ======================================== */
.game-card {
  background: var(--gradient-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
}

.game-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.game-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.game-card:hover .game-card-image img {
  transform: scale(1.1);
}

.game-card-body {
  padding: var(--space-5);
}

.game-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.game-card-provider {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.game-card-stats {
  display: flex;
  justify-content: space-between;
  padding-top: var(--space-3);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

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

.game-stat-value {
  font-weight: 700;
  color: var(--color-primary);
}

.game-stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
}

/* ========================================
   Comparison Table
   ======================================== */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.comparison-table .highlight-col {
  background: rgba(212, 175, 55, 0.1);
}

.comparison-table .highlight-col th {
  background: var(--color-primary);
  color: var(--color-bg-primary);
}

/* ========================================
   Step-by-Step Guide
   ======================================== */
.steps {
  margin: var(--space-8) 0;
}

.step {
  display: flex;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  position: relative;
}

.step::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 60px;
  bottom: -var(--space-8);
  width: 2px;
  background: rgba(212, 175, 55, 0.3);
}

.step:last-child::before {
  display: none;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  color: var(--color-bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

/* ========================================
   Payment Methods
   ======================================== */
.payment-methods {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin: var(--space-4) 0;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--color-bg-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
}

.payment-method img {
  height: 24px;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-pulse {
  animation: pulse 2s ease infinite;
}

/* Loading Skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--color-bg-tertiary) 25%, var(--color-bg-secondary) 50%, var(--color-bg-tertiary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

/* ========================================
   Content Page Additional Styles
   ======================================== */
.hero-small {
  min-height: 50vh;
}

/* Page-specific Hero Backgrounds */
.hero-fortune-tiger {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.9) 100%),
    url('../images/fortune-tiger-hero.jpg') center/cover no-repeat;
}

.hero-aviator {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.9) 100%),
    url('../images/aviator-hero.jpg') center/cover no-repeat;
}

.hero-pix {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.9) 100%),
    url('../images/pix-hero.jpg') center/cover no-repeat;
}

.hero-security {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.9) 100%),
    url('../images/security-hero.jpg') center/cover no-repeat;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
}

.stat-item {
  text-align: center;
  padding: var(--space-4);
}

.stat-number {
  font-family: var(--font-accent);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-primary);
  display: block;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.content-section {
  margin-bottom: var(--space-12);
}

.section-title {
  font-size: var(--text-2xl);
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: var(--space-3);
  margin-bottom: var(--space-6);
}

.steps-container {
  margin: var(--space-8) 0;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
  margin: var(--space-6) 0;
}

.tip-card {
  background: var(--gradient-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  transition: all var(--transition-base);
}

.tip-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-gold);
}

.tip-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  font-size: var(--text-lg);
}

.conclusion-box {
  background: var(--gradient-card);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin: var(--space-8) 0;
}

.conclusion-box h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.warning-box {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid var(--color-danger);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin: var(--space-6) 0;
}

.warning-box h4 {
  color: var(--color-danger);
  margin-bottom: var(--space-4);
}

.final-recommendation {
  text-align: center;
  margin: var(--space-10) 0;
}

.final-recommendation h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.cta-box {
  background: var(--gradient-card);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin: var(--space-6) 0;
  text-align: center;
}

.cta-final {
  box-shadow: var(--shadow-glow);
}

.cta-guarantee {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-4);
  margin-bottom: 0;
}

.tagline {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  font-style: italic;
  margin-top: var(--space-6);
}

.btn-large {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-lg);
}

/* Cards Grid for Homepage */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin: var(--space-8) 0;
}

.content-card {
  background: var(--gradient-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all var(--transition-base);
}

.content-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.content-card .card-icon {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.content-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.content-card h3 a {
  color: inherit;
  text-decoration: none;
}

.content-card h3 a:hover {
  color: var(--color-primary-light);
}

.card-tag {
  display: inline-block;
  font-size: var(--text-xs);
  color: var(--color-primary);
  background: rgba(212, 175, 55, 0.1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-top: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Introduction text */
.intro-text {
  font-size: var(--text-lg);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

/* ========================================
   Utilities
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-gold { color: var(--color-primary); }
.text-success { color: var(--color-success); }
.text-danger { color: var(--color-danger); }
.text-warning { color: var(--color-warning); }
.text-muted { color: var(--color-text-muted); }

.bg-dark { background-color: var(--color-bg-primary); }
.bg-card { background-color: var(--color-bg-card); }

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
  :root {
    --text-4xl: 2rem;
    --text-3xl: 1.5rem;
  }

  .hero {
    min-height: 70vh;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
    --text-4xl: 1.75rem;
    --text-3xl: 1.375rem;
    --text-2xl: 1.25rem;
  }

  /* Mobile Navigation */
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    padding: var(--space-6);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: var(--space-4);
  }

  .nav-link {
    font-size: var(--text-base);
    padding: var(--space-2) 0;
    display: block;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Hero Mobile */
  .hero {
    min-height: 60vh;
    padding: calc(var(--header-height) + var(--space-8)) var(--space-4) var(--space-8);
  }

  .hero h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .hero-stats {
    gap: var(--space-4);
  }

  /* Cards Mobile */
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  /* Tables Mobile */
  .table-wrapper {
    font-size: var(--text-sm);
  }

  th, td {
    padding: var(--space-3);
  }

  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    max-width: none;
    margin: 0 auto;
  }

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

  /* Buttons Mobile */
  .btn {
    width: 100%;
    justify-content: center;
  }

  .btn-cta {
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-base);
  }

  /* Step Guide Mobile */
  .step {
    flex-direction: column;
    gap: var(--space-4);
  }

  .step::before {
    display: none;
  }
}

@media (max-width: 480px) {
  :root {
    --space-4: 0.875rem;
    --space-6: 1.25rem;
    --space-8: 1.5rem;
  }

  .container {
    padding: 0 var(--space-3);
  }

  .card {
    padding: var(--space-4);
  }

  .section {
    padding: var(--space-10) 0;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }
}

/* ========================================
   Affiliate Disclosure Banner
   ======================================== */
.affiliate-disclosure-banner {
  background: rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  text-align: center;
}

.affiliate-disclosure-banner p {
  margin: 0;
  max-width: var(--container-max);
  margin: 0 auto;
}

.affiliate-disclosure-banner a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Adjust header when disclosure banner is present */
body:has(.affiliate-disclosure-banner) .header {
  top: auto;
  position: relative;
}

body:has(.affiliate-disclosure-banner) .hero {
  padding-top: var(--space-16);
}

body:has(.affiliate-disclosure-banner) .page-content {
  padding-top: var(--space-8);
}

/* Legal Content Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: var(--space-10);
  color: var(--color-primary);
}

.legal-content h3 {
  margin-top: var(--space-6);
  color: var(--color-primary-light);
}

/* Emergency Contacts */
.emergency-contacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
  margin: var(--space-6) 0;
}

.emergency-contact {
  text-align: center;
  padding: var(--space-4);
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-lg);
}

.emergency-contact h3 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-2);
  font-size: var(--text-lg);
}

.emergency-number {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-danger);
  margin: var(--space-2) 0;
}

/* Resource Cards */
.resource-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
  margin: var(--space-6) 0;
}

.resource-card {
  background: var(--gradient-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.resource-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  font-size: var(--text-lg);
}

.resource-contact {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-success);
  margin: var(--space-2) 0;
}

/* Warning Cards */
.warning-card {
  border: 1px solid var(--color-warning);
  background: rgba(255, 193, 7, 0.05);
}

.warning-card h4 {
  color: var(--color-warning);
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .btn,
  .nav,
  .affiliate-disclosure-banner {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .page-content {
    padding-top: 0;
  }

  a {
    color: black;
    text-decoration: underline;
  }
}

/* ========================================
   Homepage Specific Styles
   ======================================== */

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-6);
  margin: var(--space-8) 0;
}

.stat-card {
  background: var(--gradient-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  transition: all var(--transition-base);
}

.stat-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.stat-card .stat-number {
  font-family: var(--font-accent);
  font-size: var(--text-4xl);
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: var(--space-2);
}

.stat-card .stat-label {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-3);
}

.stat-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
}

/* Regulation Grid */
.regulation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
  margin: var(--space-8) 0;
}

.regulation-card {
  background: var(--gradient-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all var(--transition-base);
}

.regulation-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-gold);
}

.regulation-icon {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
  display: block;
}

.regulation-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  font-size: var(--text-lg);
}

.regulation-card p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-2);
}

.regulation-card p:last-child {
  margin-bottom: 0;
}

/* Games Showcase */
.games-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin: var(--space-8) 0;
}

.game-featured {
  background: var(--gradient-card);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-gold);
}

.game-featured h3 {
  font-size: var(--text-2xl);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.game-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.game-stats .game-stat {
  background: rgba(212, 175, 55, 0.1);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.game-stats .game-stat strong {
  color: var(--color-primary);
}

.game-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.game-item {
  background: var(--gradient-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  transition: all var(--transition-base);
}

.game-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-gold);
}

.game-item h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-2);
  font-size: var(--text-base);
}

.game-item p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-2);
}

.game-item a {
  font-size: var(--text-sm);
  font-weight: 600;
}

/* Sports Grid */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
  margin: var(--space-8) 0;
}

.sport-card {
  background: var(--gradient-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all var(--transition-base);
}

.sport-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-gold);
}

.sport-icon {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
  display: block;
}

.sport-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.sport-card ul {
  padding-left: var(--space-4);
}

.sport-card li {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  margin-bottom: var(--space-2);
  position: relative;
  padding-left: var(--space-4);
}

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

/* Methodology Box */
.methodology-box {
  background: rgba(212, 175, 55, 0.05);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin: var(--space-8) 0;
}

.methodology-box h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  font-size: var(--text-xl);
}

.methodology-box ol {
  padding-left: var(--space-6);
  counter-reset: methodology;
}

.methodology-box li {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-3);
  position: relative;
  padding-left: var(--space-2);
  counter-increment: methodology;
}

.methodology-box li::marker {
  color: var(--color-primary);
  font-weight: 700;
}

/* Steps Guide */
.steps-guide {
  margin: var(--space-8) 0;
}

.steps-guide .step {
  display: flex;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
  position: relative;
}

.steps-guide .step::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 50px;
  bottom: -var(--space-6);
  width: 2px;
  background: rgba(212, 175, 55, 0.3);
}

.steps-guide .step:last-child::before {
  display: none;
}

.steps-guide .step-number {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--gradient-gold);
  color: var(--color-bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
}

.steps-guide .step-content h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.steps-guide .step-content p {
  font-size: var(--text-sm);
  margin: 0;
}

/* Card Highlights */
.card-highlights {
  margin: var(--space-4) 0;
  padding-left: var(--space-4);
}

.card-highlights li {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  margin-bottom: var(--space-2);
  position: relative;
  padding-left: var(--space-4);
}

.card-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: bold;
}

/* Feature Icon Updates */
.feature-card .feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-lg);
  font-size: var(--text-3xl);
}

.feature-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

/* Main Content Spacing */
.main-content {
  padding: var(--space-16) 0;
}

.content-section {
  margin-bottom: var(--space-12);
}

/* Info Box in Homepage */
.info-box h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.info-box p:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments for new components */
@media (max-width: 768px) {
  .games-showcase {
    grid-template-columns: 1fr;
  }

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

  .stat-card .stat-number {
    font-size: var(--text-3xl);
  }

  .steps-guide .step {
    flex-direction: column;
    gap: var(--space-4);
  }

  .steps-guide .step::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

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

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