/* ============================================
   JOGOS.BR - Global Theme CSS
   Design System: Brutalist Editorial
   Colors: Black/White + Neon Green Accent
   ============================================ */

/* ============================================
   1. CSS Variables (Design Tokens)
   ============================================ */
:root {
  /* Core Colors */
  --background: #FAFAFA;
  --foreground: #0a0a0a;
  --card: #ffffff;
  --card-foreground: #0a0a0a;

  /* Primary (Black) */
  --primary: #0a0a0a;
  --primary-foreground: #FAFAFA;

  /* Secondary (Light Gray) */
  --secondary: #EAEAEA;
  --secondary-foreground: #0a0a0a;

  /* Muted */
  --muted: #EBEBEB;
  --muted-foreground: #6b6b6b;

  /* Accent (Neon Green) */
  --accent: #4ade80;
  --accent-foreground: #0a0a0a;

  /* Status Colors */
  --destructive: #ef4444;
  --success: #22c55e;
  --warning: #f59e0b;

  /* Border & Ring */
  --border: #e5e5e5;
  --ring: #0a0a0a;

  /* Radius - Brutalist = No radius */
  --radius: 0px;
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-xl: 0px;
  --radius-2xl: 0px;
  --radius-full: 9999px;

  /* Fonts */
  --font-sans: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Syne', Georgia, serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --container-max: 1800px;
  --container-padding: 24px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* Prevent horizontal overflow */
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Prevent horizontal overflow */
  max-width: 100vw;
  overflow-x: hidden;
}

/* Prevent long text from causing overflow */
* {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

ul, ol {
  list-style: none;
}

/* ============================================
   3. Typography
   ============================================ */

/* Headings - Syne (Serif) */
h1, h2, h3, h4, h5, h6,
.font-serif {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.1;
}

h1 { font-size: clamp(2.5rem, 8vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Giant Display Text */
.display-giant {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 12vw, 10rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.display-large {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

/* Text Stroke Effect */
.text-stroke {
  -webkit-text-stroke: 2px currentColor;
  -webkit-text-fill-color: transparent;
}

/* Body text */
.font-sans { font-family: var(--font-sans); }
.font-mono { font-family: var(--font-mono); }

/* Small uppercase labels */
.label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.label-sm {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.container-sm { max-width: 640px; }
.container-md { max-width: 768px; }
.container-lg { max-width: 1024px; }
.container-xl { max-width: 1280px; }

/* Grid Systems */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid-cols-6 { grid-template-columns: repeat(6, 1fr); }
.grid-cols-12 { grid-template-columns: repeat(12, 1fr); }

/* Bento Grid (12 cols, 6 rows) */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(6, 1fr);
  min-height: 100vh;
}

/* Flexbox */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

/* ============================================
   5. Colors & Backgrounds
   ============================================ */
.bg-background { background-color: var(--background); }
.bg-foreground { background-color: var(--foreground); }
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-muted { background-color: var(--muted); }
.bg-accent { background-color: var(--accent); }
.bg-card { background-color: var(--card); }

.text-foreground { color: var(--foreground); }
.text-primary { color: var(--primary); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-secondary-foreground { color: var(--secondary-foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-accent { color: var(--accent); }
.text-accent-foreground { color: var(--accent-foreground); }

/* Opacity modifiers */
.text-opacity-50 { opacity: 0.5; }
.text-opacity-70 { opacity: 0.7; }

/* ============================================
   6. Header Component
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 9999; /* Highest z-index to stay on top */
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  overflow-x: hidden;
}

/* Solid Header - No blend mode, solid background */
.header.header-solid {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #fff;
}

.logo .accent {
  color: var(--accent);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-base);
}

.nav-desktop a:hover {
  color: #fff;
}

/* Mobile Menu Button - Touch Friendly */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;  /* Touch target: 48px minimum */
  height: 48px; /* Touch target: 48px minimum */
  min-width: 48px;
  min-height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 12px;
  position: relative;
  z-index: 10001; /* Above header z-index (9999) */
  pointer-events: auto !important;
  -webkit-tap-highlight-color: rgba(74, 222, 128, 0.3);
  touch-action: manipulation;
  transition: background 0.2s ease;
}

.mobile-menu-btn:hover,
.mobile-menu-btn:focus,
.mobile-menu-btn:active {
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none; /* Prevent spans from blocking clicks */
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 10000; /* Between header (9999) and button (10001) */
  background-color: var(--primary);
  display: flex;
  flex-direction: column;
  padding: 6rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu.active {
  transform: translateX(0) !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1rem;
  margin: 0 -1rem;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff; /* Pure white for maximum contrast */
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: all 0.2s ease;
  min-height: 60px; /* Ensure touch target >= 44px */
}

.mobile-menu a:hover,
.mobile-menu a:active {
  background: rgba(74, 222, 128, 0.15);
  padding-left: 1.5rem;
  color: var(--accent);
}

.mobile-menu a:first-child {
  border-top: 1px solid rgba(255,255,255,0.15);
}

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

.mobile-menu a:hover svg {
  transform: rotate(45deg);
}

/* Desktop: Show nav, hide mobile menu button */
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
  .mobile-menu-btn {
    display: none !important;
  }
}

/* Mobile: Ensure button is always visible and clickable */
@media (max-width: 1023px) {
  .mobile-menu-btn {
    display: flex !important;
    position: relative;
    z-index: 10001 !important;
    pointer-events: auto !important;
    /* Ensure button is not obscured */
    isolation: isolate;
  }

  /* Ensure header-inner positions button correctly */
  .header-inner {
    position: relative;
  }

  /* Hide nav-desktop on mobile */
  .nav-desktop {
    display: none !important;
  }
}

/* ============================================
   7. Footer Component
   ============================================ */
.footer {
  background-color: var(--primary);
  color: var(--primary-foreground);
  /* Prevent overflow */
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.footer-brand {
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 0;
  max-width: 100vw;
}

.footer-brand-text {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 12vw, 12rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  /* Allow wrapping on small screens to prevent overflow */
  white-space: normal;
  word-break: break-word;
}

@media (min-width: 768px) {
  .footer-brand-text {
    white-space: nowrap;
  }
}

.footer-brand-text .accent {
  color: var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

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

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-base);
}

.footer-col a:hover {
  color: #fff;
}

/* Newsletter */
.footer-newsletter {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 0;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding: 0.75rem 0;
  color: #fff;
  font-size: 0.875rem;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
}

.newsletter-form button {
  background-color: var(--accent);
  color: var(--accent-foreground);
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background-color var(--transition-base);
}

.newsletter-form button:hover {
  background-color: #3bce73;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

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

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

/* ============================================
   8. Hero Sections
   ============================================ */

/* Hero Split (Template A) */
.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
}

.hero-split-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 6rem 1.5rem 3rem;
}

.hero-split-right {
  position: relative;
  min-height: 50vh;
}

.hero-split-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-split-right .gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--primary) 0%, rgba(10,10,10,0.5) 50%, transparent 100%);
}

.hero-rating-box {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 2rem 3rem;
}

.hero-rating-box .label {
  margin-bottom: 0.5rem;
}

.hero-rating-box .rating-value {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
}

@media (min-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr 1fr;
  }

  .hero-split-left {
    padding: 8rem 4rem 4rem;
  }

  .hero-split-right {
    min-height: auto;
  }
}

/* Hero Compact (Template B) */
.hero-compact {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding-top: 6rem;
}

.hero-compact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
}

.hero-compact-brand {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero-compact-logo {
  width: 96px;
  height: 96px;
  border: 2px solid rgba(255,255,255,0.2);
  background-color: rgba(255,255,255,0.1);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-compact-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.hero-compact-rating {
  display: flex;
  align-items: center;
  gap: 2rem;
  text-align: right;
}

.hero-compact-rating .rating-value {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

@media (min-width: 1024px) {
  .hero-compact-inner {
    grid-template-columns: 2fr 1fr;
    align-items: flex-end;
  }
}

/* Hero Fullscreen (Template C) */
.hero-fullscreen {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.hero-fullscreen-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 1.5rem 4rem;
}

.hero-fullscreen-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}

.rating-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.rating-circle .rating-value {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.rating-circle .rating-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.5rem;
}

@media (min-width: 1024px) {
  .hero-fullscreen {
    grid-template-columns: 1fr 1fr;
  }

  .hero-fullscreen-left {
    padding: 8rem 4rem;
  }

  .rating-circle {
    width: 300px;
    height: 300px;
  }

  .rating-circle .rating-value {
    font-size: 6rem;
  }
}

/* ============================================
   9. Stats Sections
   ============================================ */

/* Stats Strip (4 columns) */
.stats-strip {
  border-bottom: 1px solid var(--border);
}

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

.stats-strip-item {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--border);
}

.stats-strip-item:last-child {
  border-right: none;
}

.stats-strip-item .stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.stats-strip-item .stat-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
}

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

  .stats-strip-item {
    padding: 3rem;
  }

  .stats-strip-item .stat-value {
    font-size: 2.5rem;
  }
}

/* Stats Horizontal (Scrollable) */
.stats-horizontal {
  overflow-x: auto;
  border-bottom: 1px solid var(--border);
}

.stats-horizontal::-webkit-scrollbar {
  display: none;
}

.stats-horizontal-inner {
  display: flex;
  min-width: max-content;
}

.stats-horizontal-item {
  flex: 0 0 auto;
  padding: 2rem;
  border-right: 1px solid var(--border);
}

/* ============================================
   10. Pros & Cons Sections
   ============================================ */

/* Split Layout (Template A) */
.pros-cons-split {
  display: grid;
  grid-template-columns: 1fr;
}

.pros-section-split {
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 3rem 1.5rem;
}

.cons-section-split {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 3rem 1.5rem;
}

.pros-cons-split h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.pros-cons-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pros-cons-item .item-number {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  opacity: 0.2;
  line-height: 1;
}

.pros-cons-item .item-text {
  font-size: 1.125rem;
  padding-top: 0.75rem;
}

@media (min-width: 1024px) {
  .pros-cons-split {
    grid-template-columns: 1fr 1fr;
  }

  .pros-section-split,
  .cons-section-split {
    padding: 4rem;
  }
}

/* Columns Layout (Template B) */
.pros-cons-cols {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--border);
}

.pros-col,
.cons-col {
  padding: 2rem 1.5rem;
}

.pros-col {
  border-bottom: 1px solid var(--border);
}

.pros-cons-cols h2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.pros-cons-cols h2 .icon-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pros-cons-cols h2 .icon-box.pros {
  background-color: var(--accent);
}

.pros-cons-cols h2 .icon-box.cons {
  background-color: var(--foreground);
  color: var(--background);
}

.pros-cons-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0 0.75rem 1rem;
  border-left: 2px solid var(--accent);
  margin-bottom: 1rem;
}

.cons-col .pros-cons-list-item {
  border-left-color: var(--foreground);
}

.pros-cons-list-item .item-number {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 1024px) {
  .pros-cons-cols {
    grid-template-columns: 1fr 1fr;
  }

  .pros-col {
    border-bottom: none;
    border-right: 1px solid var(--border);
  }

  .pros-col,
  .cons-col {
    padding: 3rem;
  }
}

/* Immersive Layout (Template C) */
.pros-immersive {
  min-height: 80vh;
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cons-immersive {
  min-height: 80vh;
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.immersive-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.immersive-list {
  max-width: 800px;
}

.immersive-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.pros-immersive .immersive-item {
  border-bottom-color: rgba(0,0,0,0.1);
}

.immersive-item .item-number {
  font-family: var(--font-mono);
  font-size: 4rem;
  font-weight: 700;
  opacity: 0.3;
  line-height: 1;
}

.immersive-item .item-text {
  font-size: 1.25rem;
  padding-top: 1rem;
}

@media (min-width: 1024px) {
  .pros-immersive,
  .cons-immersive {
    padding: 6rem;
  }
}

/* ============================================
   11. Content Sections
   ============================================ */

/* Content Area (Template A) */
.content-area {
  padding: 4rem 0;
}

.content-area .container-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.content-section {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}

.content-section:last-child {
  border-bottom: none;
}

.content-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.content-section p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

/* Content Sidebar (Template B) */
.content-sidebar {
  padding: 4rem 0;
}

.content-sidebar-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.content-main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.content-sidebar-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .content-sidebar-inner {
    grid-template-columns: 2fr 1fr;
  }
}

/* Sidebar Cards */
.sidebar-card {
  border: 1px solid var(--border);
  padding: 2rem;
}

.sidebar-card h3 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.sidebar-card-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
}

.sidebar-card-primary h3 {
  color: var(--accent);
}

/* ============================================
   12. Info Grid
   ============================================ */
.info-grid {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 4rem 0;
}

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

.info-card {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 2rem;
}

.info-card h3 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.info-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.info-tag {
  background-color: rgba(255,255,255,0.1);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

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

/* ============================================
   13. Related Brands
   ============================================ */
.related-brands {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.related-brands h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.related-card {
  border: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.related-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.1);
}

.related-card-logo {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.related-card-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.related-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.related-card-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.related-card .btn {
  width: 100%;
}

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

/* ============================================
   14. Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
}

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

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

.btn-accent {
  background-color: var(--accent);
  color: var(--accent-foreground);
  border-color: var(--accent);
}

.btn-accent:hover {
  background-color: #3bce73;
  border-color: #3bce73;
}

.btn-outline {
  background-color: transparent;
  color: var(--foreground);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--primary-foreground);
  border-color: rgba(255,255,255,0.2);
}

.btn-outline-white:hover {
  background-color: var(--primary-foreground);
  color: var(--primary);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--border);
}

.btn-icon:hover {
  border-color: var(--accent);
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.btn-icon svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-base);
}

.btn-icon:hover svg {
  transform: rotate(45deg);
}

/* ============================================
   15. Badges
   ============================================ */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

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

.badge-accent {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

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

.badge-success {
  background-color: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.badge-warning {
  background-color: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.badge-rounded {
  border-radius: var(--radius-full);
}

/* ============================================
   16. Cards
   ============================================ */
.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.card-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.card-content {
  padding: 1.5rem;
  flex: 1;
}

.card-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}

/* Featured Card (Bento) */
.featured-card {
  position: relative;
  overflow: hidden;
  background-color: var(--primary);
}

.featured-card-image {
  position: absolute;
  inset: 0;
}

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

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

.featured-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--primary) 0%, rgba(10,10,10,0.5) 50%, transparent 100%);
}

.featured-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  color: var(--primary-foreground);
}

.featured-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.featured-card-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.featured-card-number {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
}

.featured-card-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.featured-card-rating {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
}

/* ============================================
   17. Tab Navigation
   ============================================ */
.tab-nav {
  display: flex;
  gap: 0;
  overflow-x: auto;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}

.tab-nav::-webkit-scrollbar {
  display: none;
}

.tab-nav-item {
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--transition-base);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.tab-nav-item:hover {
  color: var(--primary-foreground);
}

.tab-nav-item.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ============================================
   18. FAQ Accordion
   ============================================ */
.faq-section {
  padding: 4rem 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.faq-title-col h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  line-height: 1;
}

.faq-title-col h2 .accent {
  color: var(--accent);
}

.faq-list {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-question .faq-number {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.faq-question .faq-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
}

.faq-question .faq-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.faq-question .faq-icon svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-base);
}

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

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

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

.faq-answer-inner {
  padding: 0 0 1.5rem 3.5rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

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

/* Dark variant (on primary background) */
.faq-section.faq-dark {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.faq-dark .faq-list {
  border-color: rgba(255,255,255,0.1);
}

.faq-dark .faq-item {
  border-color: rgba(255,255,255,0.1);
}

.faq-dark .faq-question .faq-number {
  color: rgba(255,255,255,0.3);
}

.faq-dark .faq-question .faq-icon {
  border-color: rgba(255,255,255,0.2);
}

.faq-dark .faq-answer-inner {
  color: rgba(255,255,255,0.7);
}

/* ============================================
   19. Comparison Table
   ============================================ */
.comparison-table {
  border-top: 1px solid var(--foreground);
  border-bottom: 1px solid var(--foreground);
}

.comparison-header {
  display: none;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}

.comparison-header > div:not(:first-child) {
  text-align: center;
}

.comparison-header > div:last-child {
  text-align: right;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row:hover {
  background-color: var(--muted);
}

.comparison-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.comparison-brand-number {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--muted-foreground);
  opacity: 0.2;
}

.comparison-brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

.comparison-rating {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  text-align: right;
}

.comparison-bonus,
.comparison-pix,
.comparison-app {
  display: none;
  text-align: center;
}

.comparison-action {
  display: flex;
  justify-content: flex-end;
  grid-column: span 2;
}

@media (min-width: 1024px) {
  .comparison-header {
    display: grid;
  }

  .comparison-row {
    grid-template-columns: repeat(6, 1fr);
  }

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

  .comparison-bonus,
  .comparison-pix,
  .comparison-app {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .comparison-action {
    grid-column: auto;
  }
}

/* ============================================
   20. Stars Rating
   ============================================ */
.stars {
  display: inline-flex;
  gap: 2px;
}

.stars svg {
  width: 16px;
  height: 16px;
}

.stars svg.filled {
  fill: var(--accent);
  color: var(--accent);
}

.stars svg.empty {
  fill: var(--muted);
  color: var(--muted);
}

.stars-lg svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   21. Breadcrumb
   ============================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-base);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  color: rgba(255,255,255,0.3);
}

.breadcrumb-current {
  color: var(--primary-foreground);
}

/* ============================================
   22. Forms
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  background-color: var(--background);
  border: 1px solid var(--border);
  color: var(--foreground);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted-foreground);
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

/* ============================================
   23. Utilities
   ============================================ */

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

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }

/* Sizing */
.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }

/* Spacing */
.p-0 { padding: 0; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

/* Hide scrollbar */
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* Object Fit */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

/* Z-index */
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.z-100 { z-index: 100; }

/* ============================================
   24. Animations
   ============================================ */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.animate-marquee {
  animation: marquee 20s linear infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25%);
  }
}

.animate-bounce {
  animation: bounce 1s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

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

/* ============================================
   25. Responsive Breakpoints
   ============================================ */
@media (min-width: 640px) {
  :root {
    --container-padding: 32px;
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:hidden { display: none; }
  .md\:flex { display: flex; }
  .md\:block { display: block; }
}

@media (min-width: 1024px) {
  :root {
    --container-padding: 48px;
  }

  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg\:hidden { display: none; }
  .lg\:flex { display: flex; }
  .lg\:block { display: block; }
  .lg\:col-span-8 { grid-column: span 8; }
  .lg\:col-span-4 { grid-column: span 4; }
  .lg\:row-span-2 { grid-row: span 2; }
  .lg\:row-span-4 { grid-row: span 4; }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================
   26. Print Styles
   ============================================ */
@media print {
  .header,
  .footer,
  .mobile-menu,
  .btn {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  a {
    text-decoration: underline;
  }
}

/* ============================================
   27. Enhanced Rating Breakdown Section
   ============================================ */
.breakdown-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  border-top: 1px solid var(--border);
}

.breakdown-section h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  color: var(--foreground);
  position: relative;
  display: block;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.breakdown-section h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent);
}

.breakdown-grid {
  display: grid;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

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

.breakdown-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.breakdown-item:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(74, 222, 128, 0.12);
  transform: translateY(-2px);
}

.breakdown-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, #22c55e 100%);
  border-radius: 10px;
  flex-shrink: 0;
}

.breakdown-icon i {
  font-size: 1.125rem;
  color: var(--accent-foreground);
}

.breakdown-content {
  flex: 1;
  min-width: 0;
}

.breakdown-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.breakdown-bar-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.breakdown-bar {
  flex: 1;
  height: 8px;
  background: var(--secondary);
  border-radius: 4px;
  overflow: hidden;
}

.breakdown-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, #22c55e 100%);
  border-radius: 4px;
  transition: width 0.6s ease;
}

.breakdown-score {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 36px;
  text-align: right;
}

/* ============================================
   28. Enhanced Comparison Table
   ============================================ */
.comparison-section {
  padding: 4rem 0;
  background: var(--background);
}

.comparison-section h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.comparison-table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  border: none;
}

.comparison-table thead {
  background: linear-gradient(180deg, #f8f9fa 0%, #f1f3f4 100%);
}

.comparison-table th {
  padding: 1.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
  text-align: left;
  border-bottom: 2px solid var(--border);
}

.comparison-table th:first-child {
  padding-left: 1.5rem;
}

.comparison-table th:last-child {
  padding-right: 1.5rem;
  text-align: center;
}

.comparison-table tbody tr {
  transition: all 0.2s ease;
  border-bottom: 1px solid var(--border);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: linear-gradient(90deg, rgba(74,222,128,0.04) 0%, rgba(74,222,128,0.08) 100%);
}

.comparison-table td {
  padding: 1.25rem 1rem;
  font-size: 0.9375rem;
  color: var(--foreground);
  vertical-align: middle;
}

.comparison-table td:first-child {
  padding-left: 1.5rem;
}

.comparison-table td:last-child {
  padding-right: 1.5rem;
  text-align: center;
}

/* Comparison Table - Brand Cell */
.comparison-brand-cell {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.comparison-brand-rank {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--muted-foreground);
  opacity: 0.3;
  min-width: 32px;
}

.comparison-brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.comparison-brand-logo img {
  max-width: 40px;
  max-height: 40px;
  object-fit: contain;
}

.comparison-brand-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.comparison-brand-info span {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Comparison Table - Rating Cell */
.comparison-rating-cell {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.comparison-rating-stars {
  color: var(--accent);
  font-size: 0.875rem;
}

.comparison-rating-value {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

/* Comparison Table - Bonus Cell */
.comparison-bonus-cell {
  text-align: center;
}

.comparison-bonus-amount {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
}

.comparison-bonus-type {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

/* Comparison Table - Feature Cell */
.comparison-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: rgba(74, 222, 128, 0.1);
  color: #16a34a;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
}

.comparison-feature-badge i {
  font-size: 0.625rem;
}

.comparison-feature-badge.neutral {
  background: var(--secondary);
  color: var(--muted-foreground);
}

/* Comparison Table - Action Cell */
.comparison-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.comparison-action-btn:hover {
  background: var(--accent);
  color: var(--accent-foreground);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(74, 222, 128, 0.3);
}

.comparison-action-btn i {
  font-size: 0.75rem;
}

/* ============================================
   28b. Mobile Casino Cards (Responsive)
   ============================================ */

/* Responsive Toggle: Desktop Table vs Mobile Cards */
.comparison-desktop {
  display: none;
}

.comparison-mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Tablet and above: Show table, hide cards */
@media (min-width: 769px) {
  .comparison-desktop {
    display: block;
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--card);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  }

  .comparison-mobile {
    display: none;
  }
}

/* Table Actions (Desktop) */
.table-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.table-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.table-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--secondary);
  padding: 4px;
}

.table-brand span {
  font-weight: 600;
  font-size: 0.9375rem;
}

.table-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 32px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 6px;
}

.table-bonus {
  font-weight: 600;
  color: var(--foreground);
  white-space: nowrap;
}

/* Mobile Casino Card Styles */
.casino-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.casino-card:hover,
.casino-card:active {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  border-color: rgba(74, 222, 128, 0.4);
}

/* Card Header */
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

.casino-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.casino-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--secondary);
  padding: 6px;
}

.casino-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
}

.casino-rating {
  display: flex;
  align-items: baseline;
  gap: 0.125rem;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
}

.casino-rating .rating-score {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.casino-rating .rating-max {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

/* Card Details */
.card-details {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
}

.detail-icon {
  width: 20px;
  color: var(--accent);
  font-size: 0.875rem;
  text-align: center;
  flex-shrink: 0;
}

.detail-label {
  color: var(--muted-foreground);
  font-weight: 500;
  white-space: nowrap;
}

.detail-value {
  color: var(--foreground);
  font-weight: 600;
  margin-left: auto;
  text-align: right;
}

/* Card Actions - Touch Friendly */
.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.btn-card-secondary,
.btn-card-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px; /* Touch target: 48px minimum */
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
}

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

.btn-card-secondary:hover,
.btn-card-secondary:active {
  border-color: var(--foreground);
  background: var(--secondary);
}

.btn-card-primary {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  border: none;
  color: #000;
}

.btn-card-primary:hover,
.btn-card-primary:active {
  background: linear-gradient(135deg, #FF7F50 0%, #FFA500 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.btn-card-primary i {
  font-size: 0.75rem;
}

/* Mobile Card Responsive Adjustments */
@media (max-width: 400px) {
  .casino-card {
    padding: 1rem;
  }

  .casino-logo {
    width: 40px;
    height: 40px;
  }

  .casino-name {
    font-size: 1rem;
  }

  .casino-rating {
    padding: 0.375rem 0.625rem;
  }

  .casino-rating .rating-score {
    font-size: 1.125rem;
  }

  .detail-item {
    font-size: 0.875rem;
  }

  .card-actions {
    grid-template-columns: 1fr;
  }

  .btn-card-secondary,
  .btn-card-primary {
    min-height: 44px;
  }
}

/* ============================================
   29. Enhanced Security Section
   ============================================ */
.security-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #f1f5f9 100%);
}

.security-section h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--foreground);
}

.security-grid {
  display: grid;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

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

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

.security-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  transition: all 0.3s ease;
}

.security-item:hover {
  border-color: rgba(74, 222, 128, 0.5);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.security-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.15) 0%, rgba(34, 197, 94, 0.15) 100%);
  border-radius: 10px;
  flex-shrink: 0;
}

.security-icon i {
  font-size: 1rem;
  color: #16a34a;
}

.security-item span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.5;
}

/* ============================================
   30. Enhanced Game Types Section
   ============================================ */
.game-types-section {
  padding: 4rem 0;
  background: var(--background);
}

.game-types-section h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--foreground);
}

.game-types-grid {
  display: grid;
  gap: 1rem;
}

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

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

.game-type-card {
  display: flex;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.game-type-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(74, 222, 128, 0.1);
  transform: translateY(-2px);
}

.game-type-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent) 0%, #22c55e 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.game-type-icon i {
  font-size: 1.5rem;
  color: var(--accent-foreground);
}

.game-type-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  color: var(--foreground);
}

.game-type-count {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.5rem;
  background: rgba(74, 222, 128, 0.1);
  border-radius: 4px;
}

.game-type-info p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* ============================================
   31. Enhanced Steps Section
   ============================================ */
.steps-section {
  padding: 4rem 0;
  background: var(--card);
  border-top: 1px solid var(--border);
}

.steps-section h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
  color: var(--foreground);
}

.steps-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

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

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

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(74, 222, 128, 0.1);
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, #1a1a1a 100%);
  color: var(--primary-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.step-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.step-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ============================================
   32. Enhanced Reviews Section
   ============================================ */
.reviews-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  border-top: 1px solid var(--border);
}

.reviews-section h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--foreground);
}

.reviews-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.review-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.review-item:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, #333 100%);
  color: var(--primary-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.review-meta {
  flex: 1;
}

.review-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--foreground);
}

.review-date {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.125rem;
}

.review-stars {
  color: var(--accent);
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.review-text {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ============================================
   33. Enhanced FAQ Section
   ============================================ */
.faq-section {
  padding: 4rem 0;
  background: var(--background);
}

.faq-section > .container > h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
  color: var(--foreground);
}

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

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(74, 222, 128, 0.5);
}

.faq-item.active {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(74, 222, 128, 0.1);
}

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

.faq-question:hover {
  background: rgba(74, 222, 128, 0.04);
}

.faq-question i {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--accent);
}

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

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

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

/* ============================================
   34. Enhanced Conclusion Section
   ============================================ */
.conclusion-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, #1a1a1a 100%);
  color: var(--primary-foreground);
}

.conclusion-section h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--primary-foreground);
}

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

.conclusion-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.conclusion-recommendation {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}

.conclusion-recommendation strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.conclusion-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--accent);
  color: var(--accent-foreground);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.conclusion-cta:hover {
  background: #3bce73;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 222, 128, 0.4);
}

/* ============================================
   35. Enhanced Details Section
   ============================================ */
.details {
  padding: 3rem 0;
  background: var(--background);
}

.details-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.detail-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.detail-card:hover {
  border-color: rgba(74, 222, 128, 0.4);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.detail-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.detail-header i {
  font-size: 1.25rem;
  color: var(--accent);
}

.detail-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
}

.detail-row {
  margin-bottom: 1.25rem;
}

.detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.detail-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
}

.detail-value-lg {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
}

.detail-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.detail-inline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.detail-inline i {
  color: var(--accent);
}

.detail-inline strong {
  color: var(--foreground);
}

/* ============================================
   36. Enhanced Badges
   ============================================ */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 6px;
  margin: 0.125rem;
  transition: all 0.2s ease;
}

.badge:not(.outline) {
  background: var(--secondary);
  color: var(--foreground);
}

.badge.outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted-foreground);
}

.badge:hover {
  transform: translateY(-1px);
}

/* ============================================
   37. Enhanced Sidebar Cards
   ============================================ */
.sidebar-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.sidebar-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.sidebar-card.bonus {
  border-color: rgba(74, 222, 128, 0.4);
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.04) 0%, transparent 100%);
}

.sidebar-card.warning {
  border-color: rgba(245, 158, 11, 0.4);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.04) 0%, transparent 100%);
}

.sidebar-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.sidebar-header i {
  font-size: 1.25rem;
}

.sidebar-card.bonus .sidebar-header i {
  color: var(--accent);
}

.sidebar-card.warning .sidebar-header i {
  color: #f59e0b;
}

.sidebar-header h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
}

.sidebar-desc {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.terms-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.term-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.term-item i {
  font-size: 0.625rem;
  color: var(--accent);
}

.warnings-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.warnings-list li i {
  color: #f59e0b;
  margin-top: 0.25rem;
}

.trust-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.trust-text {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ============================================
   38. Enhanced Hero Section
   ============================================ */
.hero {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 240px 1fr 1fr;
    gap: 3rem;
  }
}

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

@media (min-width: 1024px) {
  .hero-left {
    text-align: left;
  }
}

.brand-logo {
  width: 160px;
  height: 80px;
  object-fit: contain;
  background: var(--secondary);
  border-radius: 12px;
  padding: 1rem;
  margin: 0 auto 1.25rem;
}

@media (min-width: 1024px) {
  .brand-logo {
    margin: 0 0 1.25rem;
  }
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .rating {
    justify-content: flex-start;
  }
}

.star {
  color: var(--muted);
  font-size: 1.125rem;
}

.star.filled {
  color: var(--accent);
}

.rating-text {
  font-weight: 700;
  font-size: 1rem;
  color: var(--foreground);
}

.review-count {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.license {
  margin-bottom: 0.5rem;
}

.license-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #16a34a;
}

.license-badge i {
  font-size: 0.875rem;
}

.license-info {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  max-width: 200px;
  margin: 0.5rem auto 0;
}

@media (min-width: 1024px) {
  .license-info {
    margin: 0.5rem 0 0;
  }
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1.25rem;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: var(--accent);
  color: var(--accent-foreground);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 222, 128, 0.3);
}

.cta-btn i {
  font-size: 0.75rem;
}

.hero-middle h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.hero-middle p {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pros-section,
.cons-section {
  padding: 1.25rem;
  border-radius: 12px;
  background: var(--background);
}

.pros-section {
  border-left: 4px solid var(--accent);
}

.cons-section {
  border-left: 4px solid #ef4444;
}

.pros-section h3,
.cons-section h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pros-section h3 {
  color: var(--accent);
}

.cons-section h3 {
  color: #ef4444;
}

.pros-section h3 i,
.cons-section h3 i {
  font-size: 1rem;
}

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

.pros-section li,
.cons-section li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #1a1a1a; /* Dark color for WCAG AA contrast (4.5:1+) */
  padding: 0.375rem 0;
  line-height: 1.5;
}

.pros-section li i {
  color: var(--accent);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.cons-section li i {
  color: #ef4444;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* ============================================
   39. Related Brands Enhancement
   ============================================ */
.related {
  padding: 4rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.related h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--foreground);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.related-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(74, 222, 128, 0.12);
  transform: translateY(-4px);
}

.related-logo {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  margin: 0 auto 1rem;
  background: var(--secondary);
}

.related-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.375rem;
}

.related-rating {
  color: var(--accent);
  font-size: 0.875rem;
  letter-spacing: 1px;
}

/* ============================================
   40. Homepage Hero Bento Grid
   ============================================ */

/* ============================================
   Hero Section - Fully Responsive Layout
   Mobile-First Design with No Overlapping
   ============================================ */

/* === BASE STYLES (Mobile < 768px) === */
section.hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 40%, #16213e 70%, #0f3460 100%);
  color: var(--primary-foreground);
  padding-top: 80px; /* Account for fixed header on mobile */
  padding-bottom: 2rem;
  min-height: auto; /* Don't force full height on mobile */
  position: relative;
  z-index: 1;
  overflow: hidden;
}

section.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(74, 222, 128, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(147, 51, 234, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

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

/* === TWO COLUMN LAYOUT === */
/* Mobile: Single column, stacked */
.hero-two-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem 0;
}

/* Left Column - Mobile */
.hero-left-col {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 1;
}

/* Right Column - Mobile: Below main content */
.hero-right-col {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  order: 2;
}

/* === HERO CONTENT === */
.hero-content {
  max-width: 100%;
}

/* Hero Tag */
.hero-tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--accent);
}

/* Main Title - Mobile: 32px */
.display-huge {
  font-family: var(--font-serif);
  font-size: 2rem; /* 32px on mobile */
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.display-huge .text-stroke {
  -webkit-text-stroke: 1px currentColor;
  -webkit-text-fill-color: transparent;
}

/* Subtitle - Mobile */
.hero-subtitle {
  font-size: 0.9375rem;
  line-height: 1.5;
  opacity: 0.8;
  max-width: 100%;
  margin-bottom: 1.25rem;
}

/* CTA Buttons */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions .btn {
  flex: 1;
  min-width: 140px;
  justify-content: center;
  text-align: center;
}

/* === STATS CARD === */
.hero-stats-card {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #000;
  padding: 1.25rem;
  border-radius: 0;
}

/* Stats Grid - Mobile: 2x2 */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-item {
  text-align: center;
  padding: 0.5rem;
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

/* === CATEGORIES CARD === */
.hero-categories-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem;
}

.categories-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* Category Links - Mobile: 2x2 Grid */
.category-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.category-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--primary-foreground);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.category-link:hover {
  background: rgba(74, 222, 128, 0.15);
  color: var(--accent);
  border-color: rgba(74, 222, 128, 0.3);
}

.category-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--accent);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* === TRUST CARD === */
.hero-trust-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: left;
}

.hero-trust-card .trust-badge {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--accent);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50%;
}

.hero-trust-card .trust-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.hero-trust-card p {
  font-size: 0.8125rem;
  opacity: 0.9;
  margin: 0;
}

.hero-trust-card .trust-link {
  color: var(--accent);
  font-size: 0.6875rem;
  text-decoration: underline;
}

/* ============================================
   TABLET BREAKPOINT (768px - 1024px)
   ============================================ */
@media (min-width: 768px) {
  section.hero {
    padding-top: 100px;
    padding-bottom: 2.5rem;
    min-height: 80vh;
  }

  .hero-two-col {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem; /* Minimum 24px gap */
    padding: 2rem 0;
  }

  /* Left Column - Tablet: 55% */
  .hero-left-col {
    flex: 0 0 55%;
    max-width: 55%;
    padding-right: 1rem;
  }

  /* Right Column - Tablet: 42% */
  .hero-right-col {
    flex: 0 0 42%;
    max-width: 42%;
    gap: 0.75rem;
  }

  /* Title - Tablet: 48px */
  .display-huge {
    font-size: 3rem; /* 48px */
    margin-bottom: 1.25rem;
  }

  .display-huge .text-stroke {
    -webkit-text-stroke: 1.5px currentColor;
  }

  .hero-tag {
    font-size: 0.6875rem;
    margin-bottom: 1.25rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    max-width: 400px;
    margin-bottom: 1.5rem;
  }

  .hero-actions .btn {
    flex: 0 0 auto;
    min-width: auto;
  }

  /* Stats - Tablet */
  .hero-stats-card {
    padding: 1rem;
  }

  .stat-grid {
    gap: 0.75rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.5625rem;
  }

  /* Categories - Tablet */
  .hero-categories-card {
    padding: 1rem;
  }

  .category-links {
    gap: 0.375rem;
  }

  .category-link {
    padding: 0.5rem;
    font-size: 0.6875rem;
    gap: 0.375rem;
  }

  .category-icon {
    width: 24px;
    height: 24px;
    font-size: 0.625rem;
  }

  /* Trust - Tablet */
  .hero-trust-card {
    padding: 0.75rem;
    gap: 0.5rem;
  }

  .hero-trust-card .trust-badge {
    width: 36px;
    height: 36px;
    font-size: 0.75rem;
  }

  .hero-trust-card p {
    font-size: 0.75rem;
  }
}

/* ============================================
   DESKTOP BREAKPOINT (> 1024px)
   ============================================ */
@media (min-width: 1024px) {
  section.hero {
    padding-top: 120px;
    padding-bottom: 3rem;
    min-height: 100vh;
  }

  .hero-two-col {
    align-items: center;
    gap: 2rem; /* 32px gap */
    padding: 3rem 0;
    min-height: calc(100vh - 180px);
  }

  /* Left Column - Desktop: 60% */
  .hero-left-col {
    flex: 0 0 58%;
    max-width: 58%;
    padding-right: 1.5rem;
  }

  /* Right Column - Desktop: 38% */
  .hero-right-col {
    flex: 0 0 38%;
    max-width: 38%;
    gap: 1rem;
    align-self: center;
  }

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

  /* Title - Desktop: 72px */
  .display-huge {
    font-size: 4.5rem; /* 72px */
    margin-bottom: 1.5rem;
  }

  .display-huge .text-stroke {
    -webkit-text-stroke: 2px currentColor;
  }

  .hero-tag {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
    max-width: 500px;
    margin-bottom: 2rem;
  }

  .hero-actions {
    gap: 1rem;
  }

  /* Stats - Desktop */
  .hero-stats-card {
    padding: 1.5rem;
  }

  .stat-grid {
    gap: 1.25rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.6875rem;
  }

  /* Categories - Desktop */
  .hero-categories-card {
    padding: 1.25rem;
  }

  .categories-title {
    margin-bottom: 1rem;
  }

  .category-links {
    gap: 0.625rem;
  }

  .category-link {
    padding: 0.75rem;
    font-size: 0.8125rem;
    gap: 0.625rem;
  }

  .category-icon {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
  }

  /* Trust - Desktop */
  .hero-trust-card {
    padding: 1rem 1.25rem;
    gap: 0.75rem;
  }

  .hero-trust-card .trust-badge {
    width: 44px;
    height: 44px;
    font-size: 0.875rem;
  }

  .hero-trust-card p {
    font-size: 0.875rem;
  }

  .hero-trust-card .trust-link {
    font-size: 0.75rem;
  }
}

/* ============================================
   LARGE DESKTOP (> 1280px)
   ============================================ */
@media (min-width: 1280px) {
  .hero-two-col {
    gap: 3rem; /* 48px gap */
  }

  /* Left Column - Large: 60% */
  .hero-left-col {
    flex: 0 0 60%;
    max-width: 60%;
    padding-right: 2rem;
  }

  /* Right Column - Large: 36% */
  .hero-right-col {
    flex: 0 0 36%;
    max-width: 36%;
    gap: 1.25rem;
  }

  .display-huge {
    font-size: 5rem; /* 80px */
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .category-link {
    padding: 0.875rem;
  }
}

/* ============================================
   EXTRA LARGE DESKTOP (> 1536px)
   ============================================ */
@media (min-width: 1536px) {
  .display-huge {
    font-size: 5.5rem; /* 88px */
  }

  .hero-subtitle {
    font-size: 1.25rem;
    max-width: 550px;
  }
}

/* ============================================
   Bento Title (Legacy Support)
   ============================================ */
.bento-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.5;
  margin-bottom: 1.5rem;
}

/* ============================================
   41. Homepage Featured Section
   ============================================ */
.section-header {
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

/* Featured Grid */
.featured-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.featured-item {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

.featured-item:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(74, 222, 128, 0.1);
}

.featured-large {
  grid-row: span 2;
}

@media (min-width: 768px) {
  .featured-large {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .featured-large {
    grid-column: span 1;
  }
}

.featured-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: var(--accent);
  color: var(--accent-foreground);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  align-self: flex-start;
}

.featured-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.featured-logo {
  width: 64px;
  height: 64px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.featured-logo img {
  max-width: 48px;
  max-height: 48px;
  object-fit: contain;
}

.featured-info {
  flex: 1;
  min-width: 0;
}

.featured-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.featured-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.featured-stars {
  color: var(--accent);
  font-size: 0.875rem;
}

.featured-score {
  font-weight: 700;
  color: var(--foreground);
}

.featured-bonus {
  padding: 1rem;
  background: rgba(74, 222, 128, 0.08);
  border-left: 3px solid var(--accent);
}

.featured-bonus-label {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.featured-bonus-value {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.featured-tag {
  padding: 0.25rem 0.5rem;
  background: var(--secondary);
  font-size: 0.75rem;
  font-weight: 500;
}

.featured-cta {
  margin-top: auto;
  display: flex;
  gap: 0.75rem;
}

.featured-cta .btn {
  flex: 1;
  justify-content: center;
}

/* ============================================
   SECTION 42: Orange CTA Button & Header Styles
   ============================================ */

/* Orange CTA Button */
.btn-cta-orange {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD93D 100%);
  color: #000;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-cta-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
  background: linear-gradient(135deg, #FF7F50 0%, #FFA500 50%, #FFE066 100%);
}

.btn-cta-orange i {
  font-size: 1rem;
}

/* Header Actions Container */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hide header-actions at same breakpoint as mobile menu shows (1023px) */
@media (max-width: 1023px) {
  .header-actions {
    display: none;
  }
}

/* ============================================
   SECTION 43: Quick Access Cards (Responsive)
   ============================================ */

/* Quick Access Cards - Mobile First */
.quick-access-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2x2 on mobile */
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-bottom: 1rem;
}

.quick-access-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  text-decoration: none;
  color: var(--primary-foreground);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quick-access-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(74, 222, 128, 0.5);
  transform: translateY(-2px);
}

.quick-access-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.quick-access-icon.icon-purple {
  background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
  color: #fff;
}

.quick-access-icon.icon-orange {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #fff;
}

.quick-access-icon.icon-green {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
}

.quick-access-icon.icon-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
}

.quick-access-title {
  font-weight: 600;
  font-size: 0.8125rem;
}

.quick-access-desc {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  display: none; /* Hide on mobile */
}

.quick-access-arrow {
  margin-top: auto;
  font-size: 0.6875rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* Tablet */
@media (min-width: 768px) {
  .quick-access-grid {
    gap: 1rem;
    margin-top: 2rem;
  }

  .quick-access-card {
    padding: 1.25rem;
    gap: 0.625rem;
  }

  .quick-access-icon {
    width: 40px;
    height: 40px;
    font-size: 1.125rem;
  }

  .quick-access-title {
    font-size: 0.875rem;
  }

  .quick-access-desc {
    display: block;
    font-size: 0.75rem;
  }

  .quick-access-arrow {
    font-size: 0.75rem;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .quick-access-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .quick-access-card {
    padding: 1.5rem;
    gap: 0.75rem;
  }

  .quick-access-card:hover {
    transform: translateY(-4px);
  }

  .quick-access-icon {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  .quick-access-title {
    font-size: 1rem;
  }

  .quick-access-desc {
    font-size: 0.875rem;
  }

  .quick-access-arrow {
    font-size: 0.875rem;
    gap: 0.5rem;
  }
}

/* ============================================
   SECTION 44: Colored Casino Cards
   ============================================ */

/* Card Color Variants */
.featured-card.card-purple {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  border-color: rgba(147, 51, 234, 0.3);
}

.featured-card.card-purple .featured-bonus {
  background: rgba(147, 51, 234, 0.2);
  border-left-color: #a855f7;
}

.featured-card.card-purple .featured-tag {
  background: rgba(147, 51, 234, 0.3);
  color: #e9d5ff;
}

.featured-card.card-orange {
  background: linear-gradient(135deg, #431407 0%, #7c2d12 100%);
  border-color: rgba(249, 115, 22, 0.3);
}

.featured-card.card-orange .featured-bonus {
  background: rgba(249, 115, 22, 0.2);
  border-left-color: #fb923c;
}

.featured-card.card-orange .featured-tag {
  background: rgba(249, 115, 22, 0.3);
  color: #fed7aa;
}

.featured-card.card-gradient {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  border-color: rgba(74, 222, 128, 0.3);
  position: relative;
  overflow: hidden;
}

.featured-card.card-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4ade80, #22d3ee, #a855f7, #f43f5e);
}

.featured-card.card-gradient .featured-bonus {
  background: rgba(74, 222, 128, 0.15);
  border-left-color: #4ade80;
}

/* Dark Card Text Colors */
.featured-card.card-purple,
.featured-card.card-orange,
.featured-card.card-gradient {
  color: #fff;
}

.featured-card.card-purple .featured-name,
.featured-card.card-orange .featured-name,
.featured-card.card-gradient .featured-name {
  color: #fff;
}

.featured-card.card-purple .featured-bonus-value,
.featured-card.card-orange .featured-bonus-value,
.featured-card.card-gradient .featured-bonus-value {
  color: #fff;
}

.featured-card.card-purple .featured-score,
.featured-card.card-orange .featured-score,
.featured-card.card-gradient .featured-score {
  color: #fff;
}

.featured-card.card-purple .featured-bonus-label,
.featured-card.card-orange .featured-bonus-label,
.featured-card.card-gradient .featured-bonus-label {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   SECTION 45: Orange CTA Buttons (Global)
   ============================================ */

.btn-orange {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #000;
  font-weight: 700;
  border: none;
  transition: all 0.3s ease;
}

.btn-orange:hover {
  background: linear-gradient(135deg, #FF7F50 0%, #FFA500 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* Override primary buttons in featured section */
.featured-cta .btn-primary,
.featured-cta .btn-accent {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #000;
  border: none;
}

.featured-cta .btn-primary:hover,
.featured-cta .btn-accent:hover {
  background: linear-gradient(135deg, #FF7F50 0%, #FFA500 100%);
}

/* Hero CTA buttons */
.hero-actions .btn-accent {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #000;
  font-weight: 700;
}

.hero-actions .btn-accent:hover {
  background: linear-gradient(135deg, #FF7F50 0%, #FFA500 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.5);
}


.pagination-btn {
    background: var(--primary, #0a0a0a);
    color: var(--primary-foreground, #fafafa);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--accent, #4ade80);
    color: var(--accent-foreground, #0a0a0a);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-info {
    font-size: 0.875rem;
    color: var(--muted-foreground, #737373);
}

.pagination-info span {
    font-weight: 600;
    color: var(--foreground, #0a0a0a);
}

@media (max-width: 640px) {
    .pagination {
        flex-direction: column;
        gap: 0.75rem;
    }
    .pagination-btn {
        width: 100%;
        max-width: 200px;
    }
}
/* Pagination Styles - BetNav Design */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 2rem 0;
    flex-wrap: wrap;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid var(--primary, #0a0a0a);
    background-color: var(--primary, #0a0a0a);
    color: var(--primary-foreground, #fafafa);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.pagination-btn:hover:not(:disabled) {
    background-color: var(--accent, #4ade80);
    border-color: var(--accent, #4ade80);
    color: var(--accent-foreground, #0a0a0a);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background-color: var(--muted, #e5e5e5);
    border-color: var(--muted, #e5e5e5);
    color: var(--muted-foreground, #737373);
}

.pagination-info {
    font-size: 0.9375rem;
    color: var(--muted-foreground, #737373);
    text-align: center;
}

.pagination-info span {
    font-weight: 700;
    color: var(--foreground, #0a0a0a);
}

@media (max-width: 640px) {
    .pagination {
        flex-direction: column;
        gap: 1rem;
    }
    .pagination-btn {
        width: 100%;
        max-width: 220px;
    }
    .pagination-info {
        order: -1;
    }
}
