/* ============================================================
   style.css - lotto11.it.com
   Style DNA:
   - layout_bias: 混合型（聚合分发 + 长文SEO）
   - hero_layout: 全宽Banner轮播入口型
   - nav_alignment: 左Logo 中导航 右按钮 + 顶部信息条
   - card_geometry: 中等圆角
   - background_treatment: 深色渐变层叠 + 分区色块
   - section_divider: 色块分区
   - shadow_density: 层叠阴影
   - icon_style: 双色SVG
   - cta_emphasis: 高
   - copy_tone: 权威说明型 + 转化引导型
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --primary: #0a1628;
  --primary-mid: #0d2040;
  --primary-light: #1a3060;
  --accent: #f5c518;
  --accent-hover: #e0b010;
  --accent-light: #fff3c0;
  --blue-bright: #2563eb;
  --blue-mid: #1e4db7;
  --blue-light: #aac4ff;
  --white: #ffffff;
  --off-white: #f0f4ff;
  --text-dark: #0a1628;
  --text-mid: #334155;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --border: #1e3a6e;
  --border-light: #e2e8f0;
  --card-bg: #0f1f3d;
  --card-bg-light: #ffffff;
  --section-dark: #050d1f;
  --section-mid: #0a1628;
  --section-light: #f0f4ff;
  --footer-bg: #050d1f;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.25);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.35);
  --shadow-gold: 0 4px 20px rgba(245,197,24,0.3);
  --transition: 0.25s ease;
  --font-stack: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --container-max: 1200px;
  --header-h: 70px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-stack);
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Container ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   TOP INFO BAR
   ============================================================ */
.topbar {
  background: var(--primary);
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
  font-size: 13px;
  color: var(--blue-light);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.topbar-left { display: flex; align-items: center; gap: 16px; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-item { display: flex; align-items: center; gap: 5px; }
.topbar-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar-ticker {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  max-width: 400px;
}
.topbar-ticker span { white-space: nowrap; }
.ticker-label {
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 3px;
  flex-shrink: 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--primary-mid);
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 20px;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.site-logo img,
.site-logo svg {
  height: 44px;
  max-height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

/* Main Nav */
.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
  white-space: nowrap;
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
  background: var(--primary-light);
  color: var(--accent);
}
.main-nav ul li a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Header CTA Buttons */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn-register {
  background: var(--accent);
  color: var(--primary);
  box-shadow: var(--shadow-gold);
}
.btn-register:hover {
  background: var(--accent-hover);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(245,197,24,0.45);
}
.btn-login {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--accent);
}
.btn-login:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: var(--primary);
  z-index: 2000;
  padding: 20px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-close {
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}
.mobile-nav ul li a:hover { background: var(--primary-light); color: var(--accent); }
.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.mobile-nav-cta .btn { width: 100%; justify-content: center; }
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
}
.mobile-overlay.open { display: block; }

/* ============================================================
   HERO BANNER
   ============================================================ */
.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--section-dark);
}
.hero-banner img,
.hero-banner svg {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,13,31,0.7) 0%, rgba(5,13,31,0.2) 60%, transparent 100%);
  display: flex;
  align-items: center;
}
.hero-banner-text {
  padding: 0 60px;
  max-width: 600px;
}
.hero-banner-text h1 {
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero-banner-text p {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--blue-light);
  margin-bottom: 24px;
}
.hero-banner-text .btn { font-size: 16px; padding: 12px 32px; }

/* ============================================================
   SHORTCUT CARDS (Quick Entry Grid)
   ============================================================ */
.shortcut-section {
  background: var(--primary-mid);
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.shortcut-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.shortcut-card:hover {
  border-color: var(--accent);
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.shortcut-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.shortcut-card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

/* ============================================================
   PROMO BANNERS ROW
   ============================================================ */
.promo-row {
  background: var(--section-dark);
  padding: 20px 0;
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.promo-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--blue-mid) 100%);
  padding: 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.promo-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.promo-card-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.promo-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.promo-card p { font-size: 14px; color: var(--blue-light); margin-bottom: 16px; }
.promo-card .btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
}
.promo-card .btn-sm:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.section-header h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-header h2::before {
  content: '';
  display: block;
  width: 4px;
  height: 28px;
  background: var(--accent);
  border-radius: 2px;
}
.section-header a {
  font-size: 14px;
  color: var(--blue-light);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.section-header a:hover { color: var(--accent); }

/* ============================================================
   FEATURE CARDS (Slots / Sports entry)
   ============================================================ */
.feature-section {
  background: var(--section-dark);
  padding: 48px 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.feature-card-img {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--blue-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.feature-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(5,13,31,0.8) 100%);
}
.feature-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.feature-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.feature-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 16px;
  line-height: 1.6;
}
.feature-card-body .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
  align-self: flex-start;
}
.feature-card-body .btn-outline:hover {
  background: var(--accent);
  color: var(--primary);
}

/* ============================================================
   CONTENT FEED / ARTICLE CARDS
   ============================================================ */
.content-feed-section {
  background: var(--section-light);
  padding: 48px 0;
}
.content-feed-section .section-header h2 { color: var(--primary); }
.content-feed-section .section-header h2::before { background: var(--blue-bright); }
.content-feed-section .section-header { border-bottom-color: var(--border-light); }
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.article-card {
  background: var(--card-bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.article-card:hover {
  border-color: var(--blue-bright);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.article-card-img {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, #1e3a6e 0%, #2563eb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  position: relative;
}
.article-date-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}
.article-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.article-card-body p {
  font-size: 13px;
  color: var(--text-light);
  flex: 1;
  margin-bottom: 12px;
  line-height: 1.6;
}
.article-card-body a.read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-bright);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.article-card-body a.read-more:hover { color: var(--accent); gap: 8px; }

/* ============================================================
   ADVANTAGES / FEATURES LIST
   ============================================================ */
.advantages-section {
  background: var(--section-dark);
  padding: 56px 0;
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.advantage-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.advantage-item:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.advantage-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}
.advantage-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.advantage-item p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   LONG-FORM CONTENT SECTION
   ============================================================ */
.longform-section {
  background: var(--section-light);
  padding: 56px 0;
}
.longform-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}
.longform-content h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--accent);
}
.longform-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-mid);
  margin: 24px 0 10px;
}
.longform-content p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.longform-content ul {
  list-style: none;
  margin-bottom: 16px;
}
.longform-content ul li {
  font-size: 15px;
  color: var(--text-mid);
  padding: 6px 0 6px 24px;
  position: relative;
  line-height: 1.7;
}
.longform-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.longform-sidebar {
  position: sticky;
  top: 90px;
}
.sidebar-widget {
  background: var(--card-bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.sidebar-widget h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}
.sidebar-links { display: flex; flex-direction: column; gap: 8px; }
.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}
.sidebar-links a:hover {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--primary);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: var(--section-dark);
  padding: 56px 0;
}
.faq-section .section-header h2 { color: var(--accent); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--accent); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  gap: 12px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-item.open .faq-question { color: var(--accent); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--accent);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--border);
}
.faq-answer a { color: var(--accent); text-decoration: underline; }
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   YOUTUBE VIDEO SECTION
   ============================================================ */
.video-section {
  background: var(--section-light);
  padding: 56px 0;
}
.video-section .section-header h2 { color: var(--primary); }
.video-section .section-header h2::before { background: var(--blue-bright); }
.video-section .section-header { border-bottom-color: var(--border-light); }
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  background: var(--primary);
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-md);
}
.video-desc {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-light);
  text-align: center;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--blue-mid) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(245,197,24,0.08);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(245,197,24,0.06);
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cta-section p {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--blue-light);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-buttons .btn { font-size: 16px; padding: 14px 36px; }
.cta-buttons .btn-primary {
  background: var(--accent);
  color: var(--primary);
  box-shadow: var(--shadow-gold);
}
.cta-buttons .btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,197,24,0.5);
}
.cta-buttons .btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.cta-buttons .btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--footer-bg);
  border-top: 2px solid var(--accent);
}
.footer-main {
  padding: 56px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand {}
.footer-brand .footer-logo {
  margin-bottom: 16px;
}
.footer-brand .footer-logo img,
.footer-brand .footer-logo svg {
  height: 44px;
  max-height: 44px;
  width: auto;
  max-width: 160px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}
.footer-contact-item a { color: var(--blue-light); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-links a::before {
  content: '›';
  color: var(--accent);
  font-size: 16px;
  line-height: 1;
}
.footer-bottom {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--accent); }
.footer-sitemap-link {
  font-size: 13px;
  color: var(--blue-light);
  transition: var(--transition);
}
.footer-sitemap-link:hover { color: var(--accent); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-bar {
  background: var(--primary-mid);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--blue-light); transition: var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--border); }
.breadcrumb-current { color: var(--accent); font-weight: 600; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--blue-mid) 100%);
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(245,197,24,0.08);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.page-hero p {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--blue-light);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ============================================================
   SLOTS PAGE - GAME GRID
   ============================================================ */
.game-filter-bar {
  background: var(--primary-mid);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.filter-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--card-bg);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.filter-tab:hover,
.filter-tab.active {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.game-grid-section {
  background: var(--section-dark);
  padding: 40px 0;
}
.game-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.game-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.game-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.game-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--blue-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  position: relative;
}
.game-card-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--accent);
  color: var(--primary);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}
.game-card-body {
  padding: 12px;
}
.game-card-body h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-card-body span {
  font-size: 11px;
  color: var(--text-muted);
}

/* ============================================================
   SPORTS PAGE
   ============================================================ */
.sports-categories {
  background: var(--primary-mid);
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.sports-cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.sports-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.sports-cat-item:hover,
.sports-cat-item.active {
  border-color: var(--accent);
  background: var(--primary-light);
}
.sports-cat-item .cat-icon { font-size: 28px; }
.sports-cat-item span {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
}
.match-list-section {
  background: var(--section-dark);
  padding: 40px 0;
}
.match-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.match-card:hover { border-color: var(--accent); }
.match-team {
  display: flex;
  align-items: center;
  gap: 12px;
}
.match-team.right { flex-direction: row-reverse; text-align: right; }
.team-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.team-name { font-size: 15px; font-weight: 700; color: var(--white); }
.match-center { text-align: center; }
.match-score {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}
.match-time { font-size: 12px; color: var(--text-muted); }
.match-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  margin-top: 4px;
}
.match-status.live { background: #ef4444; color: #fff; }
.match-status.upcoming { background: var(--primary-light); color: var(--blue-light); }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-page-section {
  background: var(--section-light);
  padding: 56px 0;
}
.faq-page-inner {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
  align-items: start;
}
.faq-page-section .faq-item {
  background: var(--card-bg-light);
  border-color: var(--border-light);
}
.faq-page-section .faq-question { color: var(--text-dark); }
.faq-page-section .faq-question:hover { color: var(--blue-bright); }
.faq-page-section .faq-item.open .faq-question { color: var(--blue-bright); }
.faq-page-section .faq-item.open { border-color: var(--blue-bright); }
.faq-page-section .faq-icon { background: var(--off-white); color: var(--blue-bright); }
.faq-page-section .faq-answer { color: var(--text-mid); border-top-color: var(--border-light); }

/* ============================================================
   ABOUT US PAGE
   ============================================================ */
.about-article-section {
  background: var(--section-light);
  padding: 56px 0;
}
.about-article-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}
.about-article h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--primary);
  margin: 28px 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}
.about-article h2:first-child { margin-top: 0; }
.about-article h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-mid);
  margin: 20px 0 8px;
}
.about-article p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-article ul {
  list-style: none;
  margin-bottom: 16px;
}
.about-article ul li {
  font-size: 15px;
  color: var(--text-mid);
  padding: 6px 0 6px 24px;
  position: relative;
  line-height: 1.7;
}
.about-article ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.about-article blockquote {
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  background: var(--accent-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
  font-style: italic;
  color: var(--text-mid);
}
.timeline {
  position: relative;
  padding-left: 32px;
  margin: 24px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
}
.timeline-item {
  position: relative;
  margin-bottom: 24px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--white);
}
.timeline-year {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.timeline-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.timeline-item p { font-size: 14px; color: var(--text-light); margin: 0; }

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.policy-section {
  background: var(--section-light);
  padding: 56px 0;
}
.policy-inner {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
  align-items: start;
}
.policy-content h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin: 28px 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--blue-mid);
  margin: 20px 0 8px;
}
.policy-content p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 14px;
}
.policy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}
.policy-content ul li {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 6px;
}
.policy-updated {
  display: inline-block;
  background: var(--accent-light);
  border: 1px solid var(--accent);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
  background: var(--section-dark);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.error-inner { max-width: 500px; }
.error-code {
  font-size: 120px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 4px 24px rgba(245,197,24,0.4);
}
.error-inner h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.error-inner p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}
.error-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.section-pad { padding: 56px 0; }
.dark-section { background: var(--section-dark); }
.light-section { background: var(--section-light); }
.mid-section { background: var(--primary-mid); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .shortcut-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .game-grid { grid-template-columns: repeat(4, 1fr); }
  .sports-cat-grid { grid-template-columns: repeat(4, 1fr); }
  .longform-inner { grid-template-columns: 1fr; }
  .longform-sidebar { position: static; }
  .about-article-inner { grid-template-columns: 1fr; }
  .faq-page-inner { grid-template-columns: 1fr; }
  .policy-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .topbar { display: none; }
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-nav { display: block; }
  .header-cta { gap: 8px; }
  .header-cta .btn { padding: 7px 14px; font-size: 13px; }
  .shortcut-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .promo-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .sports-cat-grid { grid-template-columns: repeat(3, 1fr); }
  .match-card { grid-template-columns: 1fr; gap: 8px; }
  .match-team.right { flex-direction: row; text-align: left; }
  .hero-banner-text { padding: 0 20px; }
  .hero-banner-text h1 { font-size: 22px; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; max-width: 300px; }
  .error-code { font-size: 80px; }
}

@media (max-width: 480px) {
  .shortcut-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: 1fr; }
  .sports-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-tabs { gap: 6px; }
  .filter-tab { padding: 6px 12px; font-size: 12px; }
}
