/* ================================
   APOSTA TUDO BET - MASTER CSS
   Style: Luxury Gold Casino (Style 1)
   Market: Brazil
   Language: Portuguese (pt-BR)
   ================================ */

/* ================================
   CSS VARIABLES - Design Token System
   ================================ */
:root {
  /* === Color System === */
  /* Primary Colors (Luxury Gold) */
  --color-primary: #D4AF37;
  --color-primary-light: #FFD700;
  --color-primary-dark: #B8941F;
  --color-primary-rgb: 212, 175, 55;

  /* Secondary Colors */
  --color-secondary: #0A0A0A;
  --color-accent: #FFD700;

  /* Neutral Color System (Grayscale) */
  --color-white: #FFFFFF;
  --color-gray-50: #FAFAFA;
  --color-gray-100: #F5F5F5;
  --color-gray-200: #E5E5E5;
  --color-gray-300: #D4D4D4;
  --color-gray-400: #A3A3A3;
  --color-gray-500: #737373;
  --color-gray-600: #525252;
  --color-gray-700: #404040;
  --color-gray-800: #262626;
  --color-gray-900: #171717;
  --color-black: #000000;

  /* Background and Text */
  --color-background: #0A0A0A;
  --color-background-light: #1A1A1A;
  --color-text: #FFFFFF;
  --color-text-secondary: #A3A3A3;
  --color-text-muted: #737373;

  /* Semantic Colors */
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;
  --color-info: #3B82F6;

  /* === Spacing System (8px base) === */
  --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 */
  --space-24: 6rem;     /* 96px */

  /* === Shadow System === */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);

  /* Style-specific shadows (Gold Glow) */
  --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.5), 0 0 40px rgba(212, 175, 55, 0.3);
  --shadow-glow-strong: 0 0 30px rgba(255, 215, 0, 0.7), 0 0 60px rgba(255, 215, 0, 0.4);

  /* Gold Gradient */
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
  --gradient-gold-dark: linear-gradient(135deg, #B8941F 0%, #D4AF37 50%, #B8941F 100%);

  /* === Border Radius System === */
  --radius-none: 0;
  --radius-sm: 0.25rem;    /* 4px */
  --radius-md: 0.5rem;     /* 8px */
  --radius-lg: 0.75rem;    /* 12px */
  --radius-xl: 1rem;       /* 16px */
  --radius-2xl: 1.5rem;    /* 24px */
  --radius-3xl: 2rem;      /* 32px */
  --radius-full: 9999px;   /* Full circle */

  /* === Font System === */
  --font-primary: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-secondary: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Font Sizes */
  --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-size-6xl: 3.75rem;     /* 60px */

  /* Font Weights */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  /* Line Heights */
  --line-height-none: 1;
  --line-height-tight: 1.25;
  --line-height-snug: 1.375;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.625;
  --line-height-loose: 2;

  /* === Transitions === */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);

  /* === Container Widths === */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1536px;

  /* === Z-index Layers === */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background: var(--color-background);
  line-height: var(--line-height-normal);
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

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

h1 {
  font-size: var(--font-size-5xl);
  margin-bottom: var(--space-6);
  letter-spacing: 0.02em;
}

h2 {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-5);
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  margin-top: var(--space-4);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

h2.text-center::after {
  margin-left: auto;
  margin-right: auto;
}

h3 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
}

h4 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
}

p {
  margin-bottom: var(--space-4);
  line-height: var(--line-height-relaxed);
  max-width: 75ch;
  color: var(--color-text-secondary);
}

ul, ol {
  margin-left: var(--space-6);
  margin-bottom: var(--space-4);
}

li {
  margin-bottom: var(--space-2);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
}

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

em {
  font-style: italic;
}

/* ================================
   LAYOUT - CONTAINER
   ================================ */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}

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

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

.container-lg {
  max-width: var(--container-2xl);
}

/* ================================
   HEADER Component
   ================================ */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.95) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all var(--transition-base);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
  gap: var(--space-8);
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo {
  height: 48px;
  width: auto;
  transition: transform var(--transition-base);
}

.logo-link:hover .logo {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  list-style: none;
  margin: 0;
}

.nav-link {
  display: inline-block;
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

.nav-cta-buttons {
  display: flex;
  gap: var(--space-3);
}

/* Mobile Menu Button */
.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  color: var(--color-text);
  position: relative;
  width: 40px;
  height: 40px;
}

.mobile-menu-button svg {
  width: 24px;
  height: 24px;
  transition: all var(--transition-base);
}

.mobile-menu-button.active svg {
  transform: rotate(90deg);
  opacity: 0;
}

.mobile-menu-button::before,
.mobile-menu-button::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all var(--transition-base);
}

.mobile-menu-button.active::before {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-button.active::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: var(--z-modal);
  padding: var(--space-8);
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.mobile-menu .nav-link {
  font-size: var(--font-size-xl);
}

.mobile-menu-close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  padding: var(--space-2);
}

/* ================================
   HERO SECTION Component
   ================================ */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: var(--space-16) 0;
}

/* Critical: Background overlay for text readability */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: 1;
}

/* Gold accent overlay */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(212, 175, 55, 0.05) 0%,
    transparent 50%,
    rgba(212, 175, 55, 0.03) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: var(--container-md);
}

.hero-section h1 {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-6);
  line-height: var(--line-height-tight);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-section h1 span {
  color: var(--color-primary);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.hero-intro {
  font-size: var(--font-size-xl);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-8);
  line-height: var(--line-height-relaxed);
  max-width: 100%;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

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

/* ================================
   BUTTON Components
   ================================ */
.btn,
.btn-primary,
.btn-secondary {
  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(--font-size-base);
  font-weight: var(--font-weight-semibold);
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--color-black);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow);
  text-shadow: none;
}

.btn-primary:hover {
  background: var(--gradient-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-strong);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-glow);
}

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

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

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

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

/* ================================
   CONTENT SECTION Component
   ================================ */
.content-section {
  padding: var(--space-16) 0;
  position: relative;
}

.content-section:nth-child(even) {
  background: var(--color-background-light);
}

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

/* ================================
   CONTENT BLOCK Component
   ================================ */
.content-block {
  padding: var(--space-16) 0;
  position: relative;
}

.content-block:nth-child(even) {
  background: linear-gradient(180deg, var(--color-background-light) 0%, var(--color-background) 100%);
}

.content-block .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.content-block.vertical .container {
  grid-template-columns: 1fr;
  max-width: var(--container-md);
  text-align: center;
}

.content-block.vertical p {
  margin-left: auto;
  margin-right: auto;
}

.content-block.horizontal.reverse .container {
  direction: rtl;
}

.content-block.horizontal.reverse .block-text,
.content-block.horizontal.reverse .block-image {
  direction: ltr;
}

.block-text {
  padding: var(--space-6);
}

.block-text h2 {
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.block-text h2::after {
  margin-left: 0;
}

.content-block.vertical .block-text h2::after {
  margin-left: auto;
  margin-right: auto;
}

.block-text h3 {
  color: var(--color-primary);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
}

.block-text p {
  color: var(--color-text-secondary);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-4);
}

.block-text ul,
.block-text ol {
  margin-left: var(--space-6);
  margin-bottom: var(--space-6);
}

.block-text li {
  color: var(--color-text-secondary);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-3);
}

.block-image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.block-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

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

/* ================================
   CONTENT GRID Component
   ================================ */
.content-grid-section {
  padding: var(--space-16) 0;
}

.content-grid-section h2 {
  text-align: center;
  margin-bottom: var(--space-12);
}

.content-grid-section h2::after {
  margin-left: auto;
  margin-right: auto;
}

.content-grid {
  display: grid;
  gap: var(--space-8);
}

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

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

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

.grid-item {
  background: linear-gradient(180deg, var(--color-background-light) 0%, var(--color-background) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.grid-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl), 0 8px 30px rgba(212, 175, 55, 0.2);
  border-color: rgba(255, 215, 0, 0.5);
}

.grid-item picture {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
}

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

.grid-item:hover img {
  transform: scale(1.1);
}

.grid-item-content {
  padding: var(--space-6);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.grid-item h3 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.grid-item p {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  flex-grow: 1;
}

/* ================================
   TABLE Component
   ================================ */
.table-responsive {
  overflow-x: auto;
  margin-bottom: var(--space-6);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-background-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

th {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: var(--font-size-sm);
  letter-spacing: 0.05em;
}

td {
  color: var(--color-text-secondary);
}

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

/* ================================
   PROS & CONS Component
   ================================ */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin: var(--space-8) 0;
}

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

.pros {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.cons {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

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

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

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

.pros ul, .cons ul {
  list-style: none;
  margin: 0;
}

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

.cons li::before {
  content: '✗';
  color: var(--color-error);
  font-weight: bold;
  margin-right: var(--space-2);
}

/* ================================
   FAQ Component
   ================================ */
.faq-section {
  padding: var(--space-16) 0;
}

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

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

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

.faq-question::after {
  content: '+';
  font-size: var(--font-size-2xl);
  color: var(--color-primary);
  transition: transform var(--transition-base);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

/* ================================
   CTA SECTION Component
   ================================ */
.cta-section {
  padding: var(--space-16) 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.cta-section h2 {
  margin-bottom: var(--space-4);
}

.cta-section h2::after {
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  margin: 0 auto var(--space-8);
  font-size: var(--font-size-lg);
}

/* ================================
   CONCLUSION SECTION
   ================================ */
.conclusion-section {
  padding: var(--space-16) 0;
  background: var(--color-background-light);
}

.conclusion-section .container {
  max-width: var(--container-md);
  text-align: center;
}

.conclusion-section h2 {
  margin-bottom: var(--space-6);
}

.conclusion-section h2::after {
  margin-left: auto;
  margin-right: auto;
}

.conclusion-section p {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  margin: 0 auto var(--space-4);
}

/* ================================
   FOOTER Component
   ================================ */
.footer {
  background: linear-gradient(180deg, var(--color-black) 0%, #050505 100%);
  color: var(--color-gray-400);
  padding: var(--space-16) 0 var(--space-8);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

.footer-section h3 {
  color: var(--color-primary);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-4);
  font-family: var(--font-secondary);
}

.footer-section p,
.footer-section a {
  color: var(--color-gray-400);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
}

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

.footer-links {
  list-style: none;
  margin: 0;
}

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

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.payment-icons img {
  height: 32px;
  width: auto;
  opacity: 0.8;
  transition: opacity var(--transition-base);
  filter: grayscale(100%);
}

.payment-icons img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.responsible-gaming {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.responsible-gaming img {
  height: 40px;
  width: auto;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding-top: var(--space-6);
  text-align: center;
  color: var(--color-gray-500);
  font-size: var(--font-size-sm);
}

.footer-bottom p {
  margin-bottom: var(--space-2);
  max-width: none;
}

.affiliate-disclosure {
  background: rgba(212, 175, 55, 0.05);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  margin-top: var(--space-4);
  font-size: var(--font-size-xs);
  color: var(--color-gray-500);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

/* ================================
   RATING COMPONENT
   ================================ */
.rating {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}

.rating-star {
  color: var(--color-primary);
  font-size: var(--font-size-lg);
}

.rating-value {
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-left: var(--space-2);
}

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

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

.badge-success {
  background: rgba(16, 185, 129, 0.2);
  color: var(--color-success);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-warning {
  background: rgba(245, 158, 11, 0.2);
  color: var(--color-warning);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* ================================
   ALERT COMPONENT
   ================================ */
.alert {
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
}

.alert-warning {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--color-warning);
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--color-success);
}

.alert-info {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--color-info);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
  :root {
    --font-size-5xl: 2.5rem;
    --font-size-4xl: 2rem;
  }

  .content-block .container {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

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

  .nav-menu {
    gap: var(--space-2);
  }

  .nav-link {
    padding: var(--space-2) var(--space-3);
    font-size: var(--font-size-xs);
  }

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

/* Mobile (768px and below) */
@media (max-width: 768px) {
  :root {
    --font-size-5xl: 2rem;
    --font-size-4xl: 1.75rem;
    --font-size-3xl: 1.5rem;
  }

  .container {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }

  .hero-section {
    min-height: 500px;
    padding: var(--space-12) 0;
  }

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

  .hero-intro {
    font-size: var(--font-size-base);
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  /* Hero Page responsive */
  .hero.hero-page {
    padding: var(--space-12) 0 var(--space-8);
  }

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

  .hero-subtitle {
    font-size: var(--font-size-base);
  }

  /* Section responsive */
  .section {
    padding: var(--space-12) 0;
  }

  .section-title {
    font-size: var(--font-size-2xl);
  }

  /* Lead text responsive */
  .lead {
    font-size: var(--font-size-lg);
  }

  /* Step list responsive */
  .step-list li {
    padding-left: var(--space-10);
  }

  .step-list li::before {
    width: 28px;
    height: 28px;
  }

  /* Mobile Navigation */
  .nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #0a0a0a !important;
    z-index: 9999 !important;
    display: none !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .nav.active {
    display: flex !important;
  }

  .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
  }

  .nav-link {
    font-size: var(--font-size-xl);
    padding: var(--space-3) var(--space-6);
  }

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

  .mobile-menu-button,
  .nav-toggle {
    display: flex;
    z-index: calc(var(--z-modal) + 1);
  }

  .content-grid.cols-2,
  .content-grid.cols-3,
  .content-grid.cols-4 {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding: var(--space-4) var(--space-6);
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  h2::after {
    width: 40px;
  }

  .content-block {
    padding: var(--space-12) 0;
  }

  .content-grid-section {
    padding: var(--space-12) 0;
  }

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

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

  /* Table overflow fix */
  .info-table {
    overflow-x: auto;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  :root {
    --font-size-5xl: 1.75rem;
    --font-size-4xl: 1.5rem;
    --font-size-3xl: 1.25rem;
  }

  .hero-section {
    min-height: 450px;
  }
}

/* ================================
   UTILITY CLASSES
   ================================ */
.text-center {
  text-align: center;
}

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

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

.text-primary {
  color: var(--color-primary);
}

.text-success {
  color: var(--color-success);
}

.text-warning {
  color: var(--color-warning);
}

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

.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); }
.my-8 { margin-top: var(--space-8); margin-bottom: var(--space-8); }
.my-16 { margin-top: var(--space-16); margin-bottom: var(--space-16); }

.py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }
.py-16 { padding-top: var(--space-16); padding-bottom: var(--space-16); }

.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

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

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

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

.gap-8 {
  gap: var(--space-8);
}

/* ================================
   HERO PAGE COMPONENT (Internal Pages)
   ================================ */
.hero.hero-page {
  background: linear-gradient(135deg, var(--color-background) 0%, var(--color-background-light) 50%, var(--color-background) 100%);
  padding: var(--space-16) 0 var(--space-12);
  text-align: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
}

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

.hero.hero-page .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: var(--container-md);
  margin: 0 auto;
}

.hero.hero-page h1 {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.hero-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 100%;
}

/* ================================
   SECTION COMPONENT
   ================================ */
.section {
  padding: var(--space-16) 0;
}

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

.section-title {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-8);
  text-align: center;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  margin: var(--space-4) auto 0;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* ================================
   LEAD TEXT COMPONENT
   ================================ */
.lead {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-loose);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
}

/* ================================
   INFO TABLE COMPONENT
   ================================ */
.info-table {
  margin: var(--space-8) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.info-table table {
  margin: 0;
  border-radius: 0;
}

.info-table td:first-child {
  width: 40%;
  background: rgba(212, 175, 55, 0.05);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
}

/* ================================
   NAV CTA COMPONENT (Alternative)
   ================================ */
.nav-cta {
  display: flex;
  gap: var(--space-3);
}

/* ================================
   NAV TOGGLE (Mobile Menu Button)
   ================================ */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  z-index: var(--z-modal);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition-base);
}

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

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

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

/* ================================
   FEATURE BOX COMPONENT
   ================================ */
.feature-box {
  background: var(--color-background-light);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin: var(--space-8) 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

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

/* ================================
   STEP LIST COMPONENT
   ================================ */
.step-list {
  counter-reset: step-counter;
  list-style: none;
  margin: var(--space-8) 0;
  padding: 0;
}

.step-list li {
  counter-increment: step-counter;
  position: relative;
  padding-left: var(--space-12);
  margin-bottom: var(--space-6);
}

.step-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background: var(--gradient-gold);
  color: var(--color-black);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-sm);
}

/* ================================
   CARD GRID COMPONENT
   ================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin: var(--space-8) 0;
}

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

.card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(212, 175, 55, 0.1);
}

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

.card p {
  margin-bottom: 0;
}

/* ================================
   HIGHLIGHT BOX COMPONENT
   ================================ */
.highlight-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  margin: var(--space-6) 0;
}

.highlight-box strong {
  color: var(--color-primary);
}

/* ================================
   PRINT STYLES
   ================================ */
@media print {
  .header,
  .footer,
  .btn-primary,
  .btn-secondary,
  .mobile-menu-button {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .hero-section {
    min-height: auto;
    padding: var(--space-8) 0;
  }

  .hero-section::before,
  .hero-section::after {
    display: none;
  }
}
