/* ================================
   CASSINO BET BR - MASTER CSS
   Style: Luxury Gold Casino (Style 1)
   Market: Brazil
   Language: Portuguese (Brazilian)
   Created: 2025-12-01
   ================================ */

/* ================================
   GOOGLE FONTS IMPORT
   ================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Cinzel:wght@400;500;600;700&display=swap');

/* ================================
   CSS VARIABLES - 设计令牌系统
   ================================ */
:root {
  /* === 颜色系统 - 豪华金色赌场 === */
  /* 主色调 (金色) */
  --color-primary: #D4AF37;
  --color-primary-light: #FFD700;
  --color-primary-dark: #B8941F;
  --color-primary-rgb: 212, 175, 55;

  /* 辅助色 */
  --color-secondary: #0A0A0A;
  --color-accent: #FFD700;
  --color-accent-rgb: 255, 215, 0;

  /* 中性色系统 (灰度) */
  --color-white: #FFFFFF;
  --color-gray-50: #FAFAFA;
  --color-gray-100: #F5F5F5;
  --color-gray-200: #E5E5E5;
  --color-gray-300: #D4D4D4;
  --color-gray-400: #A3A3A3;
  --color-gray-500: #737373;
  --color-gray-600: #525252;
  --color-gray-700: #404040;
  --color-gray-800: #262626;
  --color-gray-900: #171717;
  --color-black: #000000;

  /* 背景和文字 */
  --color-background: #0A0A0A;
  --color-background-alt: #141414;
  --color-text: #FFFFFF;
  --color-text-secondary: #A3A3A3;
  --color-text-muted: #737373;

  /* 语义色彩 */
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;
  --color-info: #3B82F6;

  /* === 渐变效果 - 金色主题 === */
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
  --gradient-gold-vertical: linear-gradient(180deg, #D4AF37 0%, #B8941F 100%);
  --gradient-dark: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  --gradient-hero: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);

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

  /* 金色发光效果 */
  --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.5), 0 0 40px rgba(212, 175, 55, 0.3);
  --shadow-glow-sm: 0 0 10px rgba(212, 175, 55, 0.4);
  --shadow-glow-intense: 0 0 30px rgba(255, 215, 0, 0.7), 0 0 60px rgba(255, 215, 0, 0.4);

  /* === 间距系统 (8px基准) === */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */

  /* === 圆角系统 === */
  --radius-none: 0;
  --radius-sm: 0.25rem;    /* 4px */
  --radius-md: 0.5rem;     /* 8px */
  --radius-lg: 0.75rem;    /* 12px */
  --radius-xl: 1rem;       /* 16px */
  --radius-2xl: 1.5rem;    /* 24px */
  --radius-3xl: 2rem;      /* 32px */
  --radius-full: 9999px;

  /* === 字体系统 === */
  --font-primary: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-secondary: 'Cinzel', 'Playfair Display', Georgia, serif;

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

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

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

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

  /* === 容器宽度 === */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1536px;

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

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

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

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

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

/* 防止内容溢出 */
main {
  overflow-x: hidden;
}

pre, code {
  overflow-x: auto;
  max-width: 100%;
  word-wrap: break-word;
}

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

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

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

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

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

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

/* 金色装饰线 */
h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  margin-top: var(--space-4);
  box-shadow: var(--shadow-glow-sm);
}

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

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

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

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

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

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

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

em {
  font-style: italic;
}

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

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

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

/* ================================
   HEADER 组件 - 豪华金色风格
   ================================ */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all var(--transition-base);
}

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

.logo {
  height: 48px;
  width: auto;
  transition: transform var(--transition-base);
  /* 让深色背景logo更明显 */
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
}

.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.8));
}

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

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

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

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  box-shadow: var(--shadow-glow-sm);
}

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

/* 移动端菜单按钮 */
.mobile-menu-button {
  display: none;
  background: none;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: var(--space-2);
  color: var(--color-primary);
}

.mobile-menu-button svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-primary);
}

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

/* 背景遮罩 */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

/* 金色边框装饰 */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
  z-index: 2;
}

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

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

.hero-section h1 span {
  color: var(--color-primary);
  text-shadow: var(--shadow-glow-sm);
}

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

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

/* ================================
   BUTTON 组件 - 金色渐变风格
   ================================ */
.btn {
  display: inline-block;
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  font-family: var(--font-secondary);
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  line-height: 1.2;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--color-black);
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-glow);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: var(--gradient-gold);
  box-shadow: var(--shadow-glow-intense);
  transform: translateY(-3px);
  color: var(--color-black);
}

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

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

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

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

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

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

.content-block:nth-child(even) {
  background: var(--color-background-alt);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ================================
   TABLE 组件 - 金色边框风格
   ================================ */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-6);
  background: var(--color-background-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

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

th {
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: var(--font-size-sm);
}

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

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

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

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

.faq-item {
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: var(--space-6) 0;
}

.faq-question {
  font-family: var(--font-secondary);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-3);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.faq-answer {
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

/* ================================
   CONCLUSION SECTION
   ================================ */
.conclusion-section {
  padding: var(--space-16) 0;
  background: var(--color-background-alt);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

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

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

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

/* ================================
   FOOTER 组件 - 豪华金色风格
   ================================ */
.footer {
  background: var(--color-black);
  color: var(--color-gray-300);
  padding: var(--space-16) 0 var(--space-8);
  border-top: 4px solid;
  border-image: var(--gradient-gold) 1;
}

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

.footer-section h3 {
  color: var(--color-primary);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-4);
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

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

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

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

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

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

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

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

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

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

/* ================================
   RATING 组件
   ================================ */
.rating {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

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

.rating-value {
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  font-size: var(--font-size-lg);
}

/* ================================
   BADGE 组件
   ================================ */
.badge {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
}

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

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

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

/* ================================
   HIGHLIGHT BOX 组件
   ================================ */
.highlight-box {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin: var(--space-6) 0;
}

.highlight-box.warning {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
}

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

/* 平板 (1024px及以下) */
@media (max-width: 1024px) {
  :root {
    --font-size-5xl: 2.5rem;
    --font-size-4xl: 2rem;
  }

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

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

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

/* 手机 (768px及以下) */
@media (max-width: 768px) {
  :root {
    --font-size-5xl: 2rem;
    --font-size-4xl: 1.75rem;
    --font-size-3xl: 1.5rem;
  }

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

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

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

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

  /* Header 移动端调整 */
  .header-container {
    padding-top: var(--space-3);
    padding-bottom: var(--space-3);
  }

  .logo {
    height: 36px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.8)) brightness(1.2);
  }

  .nav-menu {
    display: none;
  }

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

  .mobile-menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Mobile menu when active */
  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    padding: var(--space-6);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  }

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

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

  .hero-buttons {
    flex-direction: column;
  }

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

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

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

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

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

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

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

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

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

.hidden {
  display: none;
}

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

/* ================================
   ANIMATIONS
   ================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: var(--shadow-glow);
  }
  50% {
    box-shadow: var(--shadow-glow-intense);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

/* ================================
   EXTENDED COMPONENTS FOR INDEX PAGE
   ================================ */

/* Hero Section */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--space-20) 0;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-lg);
}

.hero-title {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-6);
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: var(--line-height-relaxed);
}

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

/* Content Section */
.content-section {
  padding: var(--space-16) 0;
}

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

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

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

.section-intro {
  text-align: center;
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto var(--space-12);
}

/* Lead Text */
.lead {
  font-size: var(--font-size-xl);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-6);
}

/* Rating Box */
.rating-box {
  background: var(--color-background);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin: var(--space-8) 0;
}

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

.rating-label {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
}

.rating-stars {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  text-shadow: var(--shadow-glow-sm);
}

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

.rating-cell {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
}

.cta-center {
  text-align: center;
  margin-top: var(--space-6);
}

/* Content Grids */
.content-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

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

.content-block h3:first-child {
  margin-top: 0;
}

.content-block h4 {
  color: var(--color-text);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}

/* Feature List */
.feature-list {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

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

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--gradient-gold);
  border-radius: 50%;
  box-shadow: var(--shadow-glow-sm);
}

.feature-list.gold li::before {
  width: 10px;
  height: 10px;
  box-shadow: var(--shadow-glow);
}

.feature-list.checkmarks li::before {
  content: '✓';
  width: auto;
  height: auto;
  background: none;
  color: var(--color-primary);
  font-weight: bold;
  box-shadow: none;
  top: 0;
}

/* Info Table */
.info-table {
  margin: var(--space-6) 0;
}

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

.info-table.compact th,
.info-table.compact td {
  padding: var(--space-3);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin: var(--space-6) 0;
}

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

.stat-value {
  display: block;
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Pros and Cons */
.pros-block {
  border-left: 4px solid var(--color-success);
  padding-left: var(--space-6);
}

.cons-block {
  border-left: 4px solid var(--color-error);
  padding-left: var(--space-6);
}

.pros-title {
  color: var(--color-success) !important;
}

.cons-title {
  color: var(--color-error) !important;
}

.pros-cons-table {
  border: none;
  background: transparent;
}

.pros-cons-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  vertical-align: top;
}

.pros-cons-table td:first-child {
  width: 35%;
  color: var(--color-text);
}

/* Info Box */
.info-box {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin: var(--space-6) 0;
}

.info-box h4 {
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: var(--space-4);
}

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

/* Steps Container */
.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin: var(--space-8) 0;
}

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

.step-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(212, 175, 55, 0.2);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-glow);
}

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

.step-card p {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

/* Tip Box */
.tip-box {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin: var(--space-6) 0;
  color: var(--color-text-secondary);
}

.tip-box strong {
  color: var(--color-success);
}

/* Numbered List */
.numbered-list {
  list-style: none;
  counter-reset: list-counter;
  margin-left: 0;
  padding-left: 0;
}

.numbered-list li {
  counter-increment: list-counter;
  position: relative;
  padding-left: var(--space-10);
  margin-bottom: var(--space-4);
}

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

/* Internal Link Text */
.internal-link-text {
  margin-top: var(--space-8);
  text-align: center;
  font-size: var(--font-size-lg);
}

.internal-link-text a {
  color: var(--color-primary);
  text-decoration: underline;
}

.internal-link-text a:hover {
  text-decoration: none;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin: var(--space-8) 0;
}

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

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

.feature-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg), 0 0 15px rgba(212, 175, 55, 0.15);
}

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

.feature-card p {
  margin-bottom: 0;
  font-size: var(--font-size-sm);
}

/* VIP Section */
.vip-section {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  margin: var(--space-8) 0;
}

.vip-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.85) 100%);
  padding: var(--space-10);
}

.vip-section h3 {
  color: var(--color-primary);
  font-size: var(--font-size-3xl);
  text-align: center;
  margin-bottom: var(--space-4);
}

.vip-section h4 {
  margin-top: var(--space-8);
}

.vip-table table {
  background: rgba(0, 0, 0, 0.3);
}

/* Game Highlight Section */
.game-highlight {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  margin: var(--space-8) 0;
}

.game-highlight-content {
  padding: var(--space-10);
}

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

.game-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin: var(--space-6) 0;
}

.game-stat {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  text-align: center;
}

.game-stat .stat-label {
  display: block;
  font-size: var(--font-size-xs);
  margin-bottom: var(--space-2);
}

.game-stat .stat-value {
  font-size: var(--font-size-xl);
}

/* Game Card */
.game-card {
  background: var(--color-background);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}

.game-card h4 {
  color: var(--color-primary);
  margin-top: 0;
}

.game-specs {
  list-style: none;
  margin: 0;
  padding: 0;
}

.game-specs li {
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-secondary);
}

.game-specs li:last-child {
  border-bottom: none;
}

/* Live Casino Section */
.live-casino {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  margin: var(--space-8) 0;
}

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

.live-casino h4 {
  color: var(--color-text);
  margin-top: var(--space-6);
}

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

.tip-card {
  background: var(--color-background);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.tip-card .tip-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
}

.tip-card p {
  margin: 0;
  font-size: var(--font-size-sm);
}

/* Status Classes */
.status-yes {
  color: var(--color-success);
  font-weight: var(--font-weight-semibold);
}

.status-no {
  color: var(--color-error);
  font-weight: var(--font-weight-semibold);
}

.highlight {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
}

.table-note {
  font-size: var(--font-size-sm);
  font-style: italic;
  color: var(--color-text-muted);
  margin-top: var(--space-2);
}

/* Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  margin: var(--space-6) 0;
}

.comparison-table {
  min-width: 700px;
}

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

.comparison-table th.highlight-col {
  background: rgba(212, 175, 55, 0.2);
  color: var(--color-primary);
}

/* Responsible Gaming Section */
.responsible-gaming-section {
  background: linear-gradient(180deg, var(--color-background) 0%, var(--color-background-alt) 100%);
}

.responsible-tools {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

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

.tool-item h4 {
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: var(--space-3);
}

.tool-item p {
  margin-bottom: 0;
  font-size: var(--font-size-sm);
}

.warning-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.warning-list li::before {
  content: '⚠';
  position: absolute;
  left: 0;
  color: var(--color-warning);
}

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

.help-links li {
  margin-bottom: var(--space-3);
}

.help-links a {
  color: var(--color-primary);
}

/* FAQ Section Styles */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

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

.faq-item .faq-question {
  padding: var(--space-5);
  margin: 0;
  cursor: pointer;
  transition: all var(--transition-base);
}

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

.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
  padding: 0 var(--space-5);
}

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

/* Conclusion Section */
.conclusion-section .lead {
  text-align: center;
  max-width: 900px;
  margin: 0 auto var(--space-8);
}

.conclusion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  margin: var(--space-8) 0;
}

.conclusion-pros,
.conclusion-recommend {
  background: var(--color-background);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}

.conclusion-pros h3,
.conclusion-recommend h3 {
  color: var(--color-primary);
  margin-top: 0;
}

.final-verdict {
  text-align: center;
  padding: var(--space-10);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-2xl);
  margin: var(--space-10) 0;
}

.verdict-rating {
  margin-bottom: var(--space-4);
}

.verdict-stars {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  text-shadow: var(--shadow-glow);
  display: block;
  margin-bottom: var(--space-2);
}

.verdict-text {
  font-size: var(--font-size-xl);
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.final-verdict p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--color-text-secondary);
}

.cta-final {
  text-align: center;
  margin-top: var(--space-8);
}

.btn-xl {
  padding: var(--space-6) var(--space-12);
  font-size: var(--font-size-xl);
}

/* Warning Section */
.warning-section {
  padding: var(--space-12) 0;
  background: var(--color-black);
}

.warning-box {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
}

.warning-icons {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.warning-box p {
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto var(--space-4);
}

.help-links-inline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.help-links-inline li {
  margin: 0;
}

.help-links-inline a {
  color: var(--color-primary);
}

/* Additional Responsive Styles */
@media (max-width: 1024px) {
  .content-grid-2 {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
    padding: var(--space-12) 0;
  }

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

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

  .steps-container {
    grid-template-columns: 1fr;
  }

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

  .game-stats {
    grid-template-columns: 1fr;
  }

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

  .vip-overlay,
  .game-highlight-content,
  .live-casino {
    padding: var(--space-6);
  }

  .comparison-table-wrapper {
    margin-left: calc(var(--space-4) * -1);
    margin-right: calc(var(--space-4) * -1);
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }

  .help-links-inline {
    flex-direction: column;
    gap: var(--space-3);
  }

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

  /* 防止移动端溢出 */
  .info-table,
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .info-table table {
    min-width: 500px;
  }

  .game-highlight,
  .vip-section,
  .live-casino {
    border-radius: var(--radius-lg);
    margin-left: 0;
    margin-right: 0;
  }

  .rating-header {
    flex-direction: column;
    gap: var(--space-2);
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: var(--space-3);
  }

  .hero-stat {
    flex: 1 1 45%;
    min-width: 100px;
  }
}
