/**
 * 7700bet Brazil - Design System
 * Style: Luxury Gold Casino (Style 1)
 * Market: Brazil | Language: Portuguese
 * Generated: 2025-12-05
 */

/* ========================================
   1. CSS VARIABLES (Design Tokens)
   ======================================== */

:root {
  /* Primary Colors - Gold/Black Theme */
  --color-primary: #D4AF37;
  --color-primary-light: #F4D35E;
  --color-primary-dark: #B8860B;
  --color-primary-rgb: 212, 175, 55;

  /* Secondary Colors - Deep Casino Tones */
  --color-secondary: #1A1A2E;
  --color-secondary-light: #252540;
  --color-secondary-dark: #0F0F1A;

  /* Accent Colors */
  --color-accent: #E94560;
  --color-accent-light: #FF6B6B;
  --color-accent-dark: #C73E54;

  /* Background Colors */
  --bg-primary: #0F0F1A;
  --bg-secondary: #1A1A2E;
  --bg-tertiary: #252540;
  --bg-card: #1E1E32;
  --bg-card-hover: #2A2A45;

  /* Text Colors */
  --text-primary: #FFFFFF;
  --text-secondary: #B8B8C8;
  --text-muted: #6C6C7C;
  --text-gold: #D4AF37;
  --text-link: #F4D35E;

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

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4D35E 50%, #D4AF37 100%);
  --gradient-dark: linear-gradient(180deg, #1A1A2E 0%, #0F0F1A 100%);
  --gradient-card: linear-gradient(145deg, #1E1E32 0%, #252540 100%);
  --gradient-cta: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
  --gradient-hero: linear-gradient(180deg, rgba(15,15,26,0) 0%, rgba(15,15,26,0.9) 100%);

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

  /* Border */
  --border-color: #333350;
  --border-gold: #D4AF37;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 20px;
  --border-radius-full: 9999px;

  /* Typography */
  --font-primary: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Montserrat', 'Inter', sans-serif;
  --font-mono: 'Fira Code', 'Consolas', monospace;

  --font-size-xs: 0.75rem;    /* 12px */
  --font-size-sm: 0.875rem;   /* 14px */
  --font-size-base: 1rem;     /* 16px */
  --font-size-lg: 1.125rem;   /* 18px */
  --font-size-xl: 1.25rem;    /* 20px */
  --font-size-2xl: 1.5rem;    /* 24px */
  --font-size-3xl: 1.875rem;  /* 30px */
  --font-size-4xl: 2.25rem;   /* 36px */
  --font-size-5xl: 3rem;      /* 48px */

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  /* Spacing */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */

  /* Layout */
  --container-max: 1200px;
  --container-wide: 1400px;
  --header-height: 70px;
  --header-height-mobile: 60px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;

  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-tooltip: 600;
}

/* ========================================
   2. CSS RESET & BASE
   ======================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

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

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

ul, ol {
  list-style: none;
}

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

/* ========================================
   3. TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

h1 {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-extrabold);
}

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

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

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

h5 {
  font-size: var(--font-size-lg);
}

h6 {
  font-size: var(--font-size-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

strong, b {
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
}

em, i {
  font-style: italic;
}

small {
  font-size: var(--font-size-sm);
}

/* ========================================
   4. LAYOUT COMPONENTS
   ======================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.container-wide {
  max-width: var(--container-wide);
}

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

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

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

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-6);
}

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

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

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

/* Flex Utilities */
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.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); }

/* ========================================
   5. HEADER
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: var(--z-fixed);
  transition: all var(--transition-normal);
}

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

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

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.header-nav a {
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--text-secondary);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-fast);
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--text-gold);
  background: var(--bg-tertiary);
}

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

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: var(--space-2);
}

@media (max-width: 992px) {
  .header-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: var(--space-4);
    border-bottom: 1px solid var(--border-color);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
  }

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

  .header-nav a {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }
}

/* ========================================
   6. HERO SECTION
   ======================================== */

.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + var(--space-10)) 0 var(--space-16);
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-content {
  position: relative;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--color-primary);
  border-radius: var(--border-radius-full);
  font-size: var(--font-size-sm);
  color: var(--text-gold);
  margin-bottom: var(--space-4);
}

.hero h1 {
  font-size: var(--font-size-5xl);
  margin-bottom: var(--space-6);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

@media (max-width: 768px) {
  .hero {
    min-height: 400px;
    text-align: center;
  }

  .hero h1 {
    font-size: var(--font-size-3xl);
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* ========================================
   7. BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
  color: var(--bg-primary);
}

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

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

.btn-ghost {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.btn-ghost:hover {
  background: var(--bg-card-hover);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-lg);
}

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

.btn-block {
  width: 100%;
}

/* ========================================
   8. CARDS
   ======================================== */

.card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: var(--space-6);
  transition: all var(--transition-normal);
}

.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.15);
  border-radius: var(--border-radius-md);
  color: var(--text-gold);
}

.card-title {
  font-size: var(--font-size-xl);
  margin: 0;
}

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

.card-footer {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-color);
}

/* Game Card */
.game-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
}

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

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

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-4);
}

.game-card-title {
  color: var(--text-primary);
  font-weight: var(--font-weight-semibold);
}

/* ========================================
   9. TABLES
   ======================================== */

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
}

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

thead {
  background: var(--bg-tertiary);
}

th {
  padding: var(--space-4);
  text-align: left;
  font-weight: var(--font-weight-semibold);
  color: var(--text-gold);
  border-bottom: 2px solid var(--color-primary);
}

td {
  padding: var(--space-4);
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
}

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

tbody tr {
  transition: background var(--transition-fast);
}

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

/* Highlight rows */
tr.highlight {
  background: rgba(212, 175, 55, 0.1);
}

/* ========================================
   10. ALERTS & NOTICES
   ======================================== */

.alert {
  padding: var(--space-4) var(--space-6);
  border-radius: var(--border-radius-md);
  border-left: 4px solid;
  margin-bottom: var(--space-4);
}

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

.alert-danger {
  background: rgba(220, 53, 69, 0.1);
  border-color: var(--color-danger);
  color: #ff8a8a;
}

.alert-success {
  background: rgba(40, 167, 69, 0.1);
  border-color: var(--color-success);
  color: #7ddf7d;
}

.alert-info {
  background: rgba(23, 162, 184, 0.1);
  border-color: var(--color-info);
  color: #7dd3e1;
}

.alert-title {
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-2);
}

/* ========================================
   11. BADGES & TAGS
   ======================================== */

.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-3);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--border-radius-full);
}

.badge-gold {
  background: var(--gradient-gold);
  color: var(--bg-primary);
}

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

.badge-warning {
  background: var(--color-warning);
  color: var(--bg-primary);
}

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

.badge-outline {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--text-gold);
}

/* ========================================
   12. LISTS
   ======================================== */

.list {
  margin-bottom: var(--space-6);
}

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

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

.list-check li::before {
  content: '✓';
  background: none;
  color: var(--color-success);
  font-weight: bold;
  width: auto;
  height: auto;
  top: 0;
}

.list-x li::before {
  content: '✗';
  background: none;
  color: var(--color-danger);
  font-weight: bold;
  width: auto;
  height: auto;
  top: 0;
}

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

ol.numbered li {
  counter-increment: item;
  padding-left: var(--space-8);
}

ol.numbered li::before {
  content: counter(item);
  background: var(--color-primary);
  color: var(--bg-primary);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
}

/* ========================================
   13. FAQ ACCORDION
   ======================================== */

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  margin-bottom: var(--space-3);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  background: var(--bg-card);
  border: none;
  color: var(--text-primary);
  font-weight: var(--font-weight-semibold);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

.faq-question::after {
  content: '+';
  font-size: var(--font-size-xl);
  color: var(--text-gold);
  transition: transform var(--transition-fast);
}

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

.faq-answer {
  padding: 0 var(--space-6);
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item.active .faq-answer {
  padding: var(--space-4) var(--space-6);
  max-height: 500px;
}

/* ========================================
   14. STEPS / PROCESS
   ======================================== */

.steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.step {
  display: flex;
  gap: var(--space-4);
}

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

.step-content {
  flex: 1;
  padding-top: var(--space-2);
}

.step-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-2);
}

.step-description {
  color: var(--text-secondary);
}

/* ========================================
   15. PROS & CONS
   ======================================== */

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

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

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

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

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

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

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

/* ========================================
   16. CTA SECTION
   ======================================== */

.cta-section {
  text-align: center;
  padding: var(--space-12);
  background: var(--gradient-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius-xl);
  margin: var(--space-10) 0;
}

.cta-section h3 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-4);
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto var(--space-6);
}

/* ========================================
   17. FOOTER
   ======================================== */

.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: var(--space-16) 0 var(--space-8);
  margin-top: var(--space-16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

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

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

.footer-brand img {
  height: 40px;
  margin-bottom: var(--space-4);
}

.footer-brand p {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  max-width: 300px;
}

.footer-title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-gold);
  margin-bottom: var(--space-4);
}

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

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

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border-color);
}

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

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

.footer-badges {
  display: flex;
  gap: var(--space-3);
}

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

.footer-badges img:hover {
  opacity: 1;
}

.footer-copyright {
  width: 100%;
  text-align: center;
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  margin-top: var(--space-6);
}

/* Responsible Gaming Notice */
.editorial-info {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: var(--space-6);
  border-radius: var(--border-radius-md);
  margin-top: var(--space-8);
  text-align: center;
}

.editorial-info h5 {
  color: var(--text-gold);
  margin-bottom: var(--space-3);
}

.editorial-info p {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.7;
}

.responsible-gaming {
  background: var(--bg-tertiary);
  padding: var(--space-6);
  border-radius: var(--border-radius-md);
  margin-top: var(--space-4);
  text-align: center;
}

.responsible-gaming h5 {
  color: var(--text-gold);
  margin-bottom: var(--space-3);
}

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

/* ========================================
   18. CONTENT ARTICLE
   ======================================== */

.article {
  padding-top: calc(var(--header-height) + var(--space-8));
}

.article-header {
  margin-bottom: var(--space-8);
}

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

.article-content {
  max-width: 800px;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content img {
  border-radius: var(--border-radius-md);
  margin: var(--space-6) 0;
}

.article-content blockquote {
  padding: var(--space-4) var(--space-6);
  border-left: 4px solid var(--color-primary);
  background: var(--bg-card);
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  margin: var(--space-6) 0;
  font-style: italic;
  color: var(--text-secondary);
}

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

.toc-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--text-gold);
  margin-bottom: var(--space-4);
}

.toc-list {
  font-size: var(--font-size-sm);
}

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

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

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

/* ========================================
   19. UTILITIES
   ======================================== */

/* Text */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-gold { color: var(--text-gold); }
.text-muted { color: var(--text-muted); }
.text-success { color: var(--color-success); }
.text-danger { color: var(--color-danger); }
.text-warning { color: var(--color-warning); }

/* Spacing */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: var(--space-4); }
.mb-4 { margin-bottom: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mb-8 { margin-bottom: var(--space-8); }
.py-4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }

/* Display */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

/* Width */
.w-full { width: 100%; }
.max-w-xl { max-width: 600px; }
.max-w-2xl { max-width: 800px; }

/* Visibility */
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 769px) {
  .hide-desktop { display: none !important; }
}

/* ========================================
   20. ANIMATIONS
   ======================================== */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.animate-slide-up {
  animation: slideUp 0.5s ease forwards;
}

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

/* ========================================
   21. PRINT STYLES
   ======================================== */

@media print {
  .header,
  .footer,
  .btn,
  .cta-section {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .article {
    padding-top: 0;
  }
}
