/* ==========================================
   22CC-BRASIL.COM — Global Stylesheet
   Brand: 22 Casino | Brasil | 22cc-brasil.com
   ========================================== */

:root {
  /* ── Brand Palette ── */
  --primary:        #E53935;
  --primary-dark:   #B71C1C;
  --primary-light:  #FF5252;
  --primary-glow:   rgba(229,57,53,0.28);
  --teal:           #1EB8CC;
  --teal-dark:      #138A9A;
  --teal-light:     #4DD0E1;
  --teal-glow:      rgba(30,184,204,0.25);
  --gold:           #FFB300;
  --gold-dark:      #E65100;
  --gold-light:     #FFD54F;
  --success:        #00C875;
  --danger:         #FF3B30;
  --warning:        #FF8C00;
  --info:           #29B6F6;

  /* ── Background ── */
  --dark:           #0A1E24;
  --dark-2:         #071920;
  --card-bg:        #112830;
  --card-2:         #162F38;
  --card-3:         #1C3840;
  --card-hover:     #213E48;
  --glass:          rgba(10,30,36,0.88);
  --glass-border:   rgba(30,184,204,0.18);

  /* ── Borders ── */
  --border:         rgba(30,184,204,0.20);
  --border-light:   rgba(255,255,255,0.07);
  --border-hover:   rgba(229,57,53,0.50);
  --border-gold:    rgba(255,179,0,0.35);

  /* ── Text ── */
  --text:           #EEF6F8;
  --text-muted:     #8FADB5;
  --text-dim:       #506872;

  /* ── Shape ── */
  --radius:         12px;
  --radius-sm:      8px;
  --radius-lg:      20px;
  --radius-xl:      32px;

  /* ── Shadows ── */
  --shadow:         0 8px 32px rgba(229,57,53,0.20);
  --shadow-teal:    0 8px 32px rgba(30,184,204,0.20);
  --shadow-lg:      0 24px 64px rgba(0,0,0,0.62);
  --shadow-card:    0 4px 20px rgba(0,0,0,0.40);

  /* ── Misc ── */
  --transition:     all 0.26s ease;
  --font:           'Inter', system-ui, -apple-system, sans-serif;
  --container:      1280px;
  --gutter:         24px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, textarea, select { font-family: inherit; color: inherit; }
table { border-collapse: collapse; width: 100%; }

/* ===== SKIP NAV ===== */
.skip-nav {
  position: absolute; top: -120px; left: 20px; z-index: 9999;
  background: var(--teal); color: #fff; padding: 12px 20px;
  border-radius: var(--radius-sm); font-weight: 700; font-size: 0.9rem;
  transition: top 0.2s;
}
.skip-nav:focus { top: 20px; }
:focus-visible { outline: 2px solid var(--teal-light); outline-offset: 3px; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.11; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.6rem); font-weight: 800; line-height: 1.20; }
h3 { font-size: clamp(1.05rem, 2.2vw, 1.6rem); font-weight: 700; line-height: 1.35; }
h4 { font-size: 1.05rem; font-weight: 700; }
h5 { font-size: 0.92rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
p  { color: var(--text-muted); line-height: 1.78; }
strong, b { color: var(--text); font-weight: 700; }

.gradient-text {
  background: linear-gradient(135deg, var(--teal) 0%, var(--primary-light) 60%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-text-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 60%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-primary { color: var(--primary); }
.text-teal    { color: var(--teal); }
.text-gold    { color: var(--gold); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }
.text-sm      { font-size: 0.84rem; }
.text-xs      { font-size: 0.76rem; }
.text-success { color: var(--success); }

/* ===== LAYOUT ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); width: 100%; }
.section    { padding: 88px 0; }
.section-sm { padding: 52px 0; }
.section-lg { padding: 128px 0; }
.section-xs { padding: 36px 0; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--teal); margin-bottom: 16px;
}
.section-header .eyebrow::before,
.section-header .eyebrow::after { content: ''; display: block; width: 30px; height: 2px; background: linear-gradient(90deg, var(--primary), var(--teal)); border-radius: 2px; }
.section-header h2 { margin-bottom: 18px; }
.section-header p  { max-width: 640px; margin: 0 auto; font-size: 1.06rem; }

/* ===== GRIDS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius); font-weight: 700; font-size: 0.96rem;
  transition: var(--transition); cursor: pointer; white-space: nowrap; border: 2px solid transparent;
  text-decoration: none; line-height: 1.3;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 60%, var(--primary-dark) 100%);
  color: #fff; box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(229,57,53,0.42); filter: brightness(1.10); }
.btn-teal {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal) 60%, var(--teal-dark) 100%);
  color: #fff; box-shadow: var(--shadow-teal);
}
.btn-teal:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(30,184,204,0.42); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #000; font-weight: 800;
}
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn-outline {
  background: transparent; border: 2px solid var(--teal); color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-ghost {
  background: rgba(255,255,255,0.08); color: var(--text); border: 2px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }
.btn-xl  { padding: 17px 38px; font-size: 1.08rem; }
.btn-lg  { padding: 14px 32px; font-size: 1rem; }
.btn-sm  { padding: 9px 20px; font-size: 0.84rem; }
.btn-block { width: 100%; }

/* ===== HEADER ===== */
.site-header { position: sticky; top: 0; z-index: 100; width: 100%; }
.header-top {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-dark));
  padding: 9px 0; text-align: center;
}
.header-top .container { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.header-top-text { font-size: 0.82rem; font-weight: 600; color: #fff; }
.ht-highlight { font-weight: 800; }
.ht-btn {
  background: #fff; color: var(--primary); padding: 5px 18px;
  border-radius: 999px; font-size: 0.8rem; font-weight: 800;
  white-space: nowrap;
}
.ht-btn:hover { background: var(--gold); color: #000; }

.navbar {
  background: rgba(10,30,36,0.96);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 24px; height: 68px; }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img, .logo svg { height: 44px; width: auto; }

.nav-menu {
  display: flex; align-items: center; gap: 4px; margin: 0 auto;
}
.nav-link {
  padding: 8px 14px; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 600;
  color: var(--text-muted); transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--teal); background: rgba(30,184,204,0.10); }
.nav-menu-close { display: none; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.nav-cta { flex-shrink: 0; }
.nav-mobile-cta { display: none; }

/* ===== CARDS ===== */
.card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; transition: var(--transition);
}
.card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-card); }
.card-teal { border-color: rgba(30,184,204,0.30); }
.card-red  { border-color: rgba(229,57,53,0.30); }
.card-gold { border-color: rgba(255,179,0,0.30); }

/* ===== BADGES ===== */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: 999px; font-size: 0.74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.badge-primary { background: rgba(229,57,53,0.18); color: var(--primary-light); border: 1px solid rgba(229,57,53,0.30); }
.badge-teal    { background: rgba(30,184,204,0.18); color: var(--teal-light); border: 1px solid rgba(30,184,204,0.30); }
.badge-gold    { background: rgba(255,179,0,0.18); color: var(--gold); border: 1px solid rgba(255,179,0,0.30); }
.badge-success { background: rgba(0,200,117,0.18); color: var(--success); border: 1px solid rgba(0,200,117,0.30); }

/* ===== HERO ===== */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #061318 0%, #0A1E24 40%, #112830 70%, #071920 100%);
  padding: 100px 0 80px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(30,184,204,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 60%, rgba(229,57,53,0.10) 0%, transparent 50%);
}
.hero-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.hero-one-col { max-width: 820px; margin: 0 auto; text-align: center; position: relative; }
.hero-content {}
.hero-badge { margin-bottom: 18px; }
.hero-desc { font-size: 1.12rem; color: var(--text-muted); margin: 20px 0 32px; max-width: 560px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat-num { font-size: 1.8rem; font-weight: 900; color: var(--teal); line-height: 1; }
.hero-stat-label { font-size: 0.76rem; color: var(--text-dim); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em; }

.hero-visual-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
}

/* ===== RATINGS ===== */
.rating-bar-wrap { display: flex; flex-direction: column; gap: 10px; }
.rating-row { display: flex; align-items: center; gap: 12px; }
.rating-label { font-size: 0.84rem; color: var(--text-muted); width: 140px; flex-shrink: 0; }
.rating-track { flex: 1; height: 6px; background: rgba(255,255,255,0.08); border-radius: 99px; overflow: hidden; }
.rating-fill  { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--teal), var(--teal-light)); }
.rating-val   { font-size: 0.84rem; font-weight: 700; color: var(--text); width: 36px; text-align: right; }

/* ===== SCORE WIDGET ===== */
.score-circle {
  width: 120px; height: 120px; border-radius: 50%;
  background: conic-gradient(var(--teal) 0% 92%, rgba(255,255,255,0.1) 92% 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; flex-shrink: 0;
}
.score-circle::before {
  content: ''; position: absolute; inset: 10px;
  background: var(--card-bg); border-radius: 50%;
}
.score-inner { position: relative; text-align: center; }
.score-num  { font-size: 1.7rem; font-weight: 900; color: var(--teal); line-height: 1; }
.score-max  { font-size: 0.7rem; color: var(--text-dim); }

/* ===== TABLES ===== */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); }
.data-table { min-width: 600px; }
.data-table th {
  background: var(--card-2); padding: 14px 18px; text-align: left;
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--teal); border-bottom: 2px solid var(--border);
}
.data-table td {
  padding: 14px 18px; border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem; color: var(--text-muted); vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(30,184,204,0.04); }
.data-table td strong { color: var(--text); }
.data-table .check { color: var(--success); font-size: 1.1rem; }
.data-table .cross  { color: var(--danger); font-size: 1.1rem; }
.data-table .highlight-row td { background: rgba(229,57,53,0.06); }
.data-table .highlight-row td:first-child { border-left: 3px solid var(--primary); }

/* ===== CHARTS (CSS/SVG) ===== */
.bar-chart { display: flex; flex-direction: column; gap: 14px; }
.bar-item  { display: flex; align-items: center; gap: 14px; }
.bar-label { font-size: 0.84rem; color: var(--text-muted); width: 160px; flex-shrink: 0; white-space: nowrap; }
.bar-track { flex: 1; height: 8px; background: rgba(255,255,255,0.08); border-radius: 99px; overflow: hidden; }
.bar-fill  { height: 100%; border-radius: 99px; transition: width 1.2s cubic-bezier(0.2,0.8,0.2,1); }
.bar-fill-primary { background: linear-gradient(90deg, var(--primary), var(--primary-light)); }
.bar-fill-teal    { background: linear-gradient(90deg, var(--teal), var(--teal-light)); }
.bar-fill-gold    { background: linear-gradient(90deg, var(--gold-dark), var(--gold)); }
.bar-fill-success { background: linear-gradient(90deg, var(--success), #4ade80); }
.bar-fill-info    { background: linear-gradient(90deg, var(--info), #7dd3fc); }
.bar-val   { font-size: 0.84rem; font-weight: 700; color: var(--text); width: 48px; text-align: right; }

.donut-chart-wrap { position: relative; display: inline-flex; align-items: center; justify-content: center; }
.donut-label { position: absolute; text-align: center; }
.donut-num { font-size: 1.5rem; font-weight: 900; color: var(--teal); }
.donut-sub { font-size: 0.7rem; color: var(--text-dim); }

.chart-legend { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 16px; }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); }
.legend-dot  { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* ===== GAME CARD ===== */
.game-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}
.game-card:hover { transform: translateY(-4px); border-color: var(--teal); box-shadow: var(--shadow-teal); }
.game-card-img { aspect-ratio: 16/10; background: var(--card-2); overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; }
.game-card-body { padding: 16px; }
.game-card-title { font-weight: 700; font-size: 0.96rem; margin-bottom: 4px; }
.game-card-meta  { font-size: 0.78rem; color: var(--text-dim); }

/* ===== PROVIDER STRIP ===== */
.provider-strip { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.provider-chip {
  background: var(--card-2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 20px; font-size: 0.82rem; font-weight: 700;
  color: var(--text-muted); transition: var(--transition);
}
.provider-chip:hover { border-color: var(--teal); color: var(--teal); }

/* ===== PAYMENT ICONS ===== */
.pay-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px,1fr)); gap: 16px; }
.pay-item {
  background: var(--card-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 12px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: var(--transition);
}
.pay-item:hover { border-color: var(--teal); transform: translateY(-3px); }
.pay-icon { font-size: 2rem; }
.pay-name { font-size: 0.78rem; font-weight: 700; text-align: center; }
.pay-time { font-size: 0.7rem; color: var(--text-dim); }

/* ===== BONUS CARD ===== */
.bonus-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; position: relative; overflow: hidden;
  transition: var(--transition);
}
.bonus-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
}
.bonus-card:hover { border-color: var(--teal-dark); box-shadow: var(--shadow-teal); }
.bonus-amount { font-size: 2rem; font-weight: 900; color: var(--teal); }
.bonus-label  { font-size: 0.78rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; }
.bonus-desc   { font-size: 0.88rem; color: var(--text-muted); margin: 10px 0; }

/* ===== STEPS ===== */
.steps { display: flex; flex-direction: column; gap: 0; position: relative; }
.steps::before {
  content: ''; position: absolute; left: 22px; top: 44px; bottom: 20px; width: 2px;
  background: linear-gradient(180deg, var(--teal), transparent);
}
.step { display: flex; gap: 20px; padding-bottom: 32px; position: relative; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1rem; flex-shrink: 0; position: relative; z-index: 1;
}
.step-body {}
.step-title { font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.step-desc  { font-size: 0.88rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer; font-weight: 700; font-size: 1rem;
  gap: 16px;
}
.faq-q .faq-arrow { color: var(--teal); transition: var(--transition); font-size: 1.2rem; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 0 20px; color: var(--text-muted); line-height: 1.78; }
.faq-item.open .faq-a { display: block; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark-2); border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.88rem; color: var(--text-dim); margin-top: 14px; max-width: 280px; line-height: 1.7; }
.footer-col h5 { color: var(--teal); margin-bottom: 20px; font-size: 0.78rem; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: var(--text-dim); }
.footer-links a:hover { color: var(--teal); }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: gap;
  gap: 16px; flex-wrap: wrap;
}
.footer-legal { font-size: 0.74rem; color: var(--text-dim); max-width: 700px; line-height: 1.7; }
.footer-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-badge {
  background: var(--card-2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 6px 14px; font-size: 0.72rem;
  color: var(--text-dim); font-weight: 700;
}

/* ===== TABS ===== */
.tabs-nav { display: flex; gap: 8px; border-bottom: 1px solid var(--border); margin-bottom: 32px; overflow-x: auto; }
.tab-btn {
  padding: 12px 22px; font-size: 0.88rem; font-weight: 700;
  color: var(--text-muted); border-bottom: 2px solid transparent;
  cursor: pointer; white-space: nowrap; margin-bottom: -1px;
  transition: var(--transition);
}
.tab-btn.active { color: var(--teal); border-bottom-color: var(--teal); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ===== FEATURE LIST ===== */
.feature-list { display: flex; flex-direction: column; gap: 12px; }
.feature-item { display: flex; gap: 12px; align-items: flex-start; }
.feature-icon { width: 22px; height: 22px; border-radius: 50%; background: rgba(30,184,204,0.18); display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 0.8rem; flex-shrink: 0; margin-top: 1px; }
.feature-text { font-size: 0.9rem; color: var(--text-muted); }
.feature-text strong { color: var(--text); }

/* ===== SLOT CARD ===== */
.slot-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: var(--transition);
}
.slot-card:hover { border-color: var(--teal); transform: translateY(-3px); }
.slot-card-img {
  aspect-ratio: 3/2; background: var(--card-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; position: relative; overflow: hidden;
}
.slot-rtp { position: absolute; top: 8px; right: 8px; }
.slot-card-body { padding: 12px; }
.slot-name { font-weight: 700; font-size: 0.9rem; }
.slot-provider { font-size: 0.75rem; color: var(--text-dim); }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--primary), var(--teal), transparent); }
.tl-item { position: relative; margin-bottom: 28px; }
.tl-dot { width: 16px; height: 16px; border-radius: 50%; background: var(--teal); position: absolute; left: -27px; top: 4px; border: 2px solid var(--dark); }
.tl-date { font-size: 0.75rem; color: var(--teal); font-weight: 700; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.08em; }
.tl-title { font-weight: 700; font-size: 0.96rem; }
.tl-desc  { font-size: 0.84rem; color: var(--text-muted); margin-top: 4px; }

/* ===== REVIEW WIDGET ===== */
.review-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; gap: 14px;
}
.review-stars { color: var(--gold); letter-spacing: 2px; }
.review-text  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--primary));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 0.88rem; }
.reviewer-location { font-size: 0.76rem; color: var(--text-dim); }

/* ===== SVG LINE CHART ===== */
.svg-chart-wrap { background: var(--card-2); border-radius: var(--radius); padding: 20px; overflow: hidden; }
.svg-chart-title { font-size: 0.88rem; font-weight: 700; margin-bottom: 12px; }

/* ===== INFO BOX ===== */
.info-box {
  border-radius: var(--radius); padding: 18px 20px; display: flex; gap: 14px; align-items: flex-start;
}
.info-box-teal  { background: rgba(30,184,204,0.10); border: 1px solid rgba(30,184,204,0.25); }
.info-box-red   { background: rgba(229,57,53,0.10); border: 1px solid rgba(229,57,53,0.25); }
.info-box-gold  { background: rgba(255,179,0,0.10); border: 1px solid rgba(255,179,0,0.30); }
.info-box-icon  { font-size: 1.4rem; flex-shrink: 0; }
.info-box-body  {}
.info-box-title { font-weight: 700; font-size: 0.92rem; margin-bottom: 4px; }
.info-box-text  { font-size: 0.86rem; color: var(--text-muted); line-height: 1.6; }

/* ===== DIVIDERS ===== */
.divider-teal { height: 2px; background: linear-gradient(90deg, transparent, var(--teal), transparent); margin: 0; }
.divider-red  { height: 2px; background: linear-gradient(90deg, transparent, var(--primary), transparent); margin: 0; }

/* ===== MISC ===== */
.mb-8 { margin-bottom: 32px; }
.mt-8 { margin-top: 32px; }
.mb-6 { margin-bottom: 24px; }
.mt-6 { margin-top: 24px; }
.gap-icon { font-size: 2rem; margin-bottom: 10px; display: block; }

.odds-bar { background: var(--dark-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 10px 0; overflow: hidden; }
.odds-ticker { display: flex; gap: 32px; animation: ticker 30s linear infinite; white-space: nowrap; width: max-content; }
.odds-item { display: inline-flex; gap: 10px; align-items: center; font-size: 0.82rem; color: var(--text-muted); }
.odds-event { color: var(--text); font-weight: 600; }
.odds-val   { color: var(--gold); font-weight: 900; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.stat-number { font-size: 2.2rem; font-weight: 900; line-height: 1; margin-bottom: 6px; }
.stat-label  { font-size: 0.78rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; }

.animate-fade-up { animation: fadeUp 0.6s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ===== AUTH PAGES ===== */
.auth-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.auth-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 44px; width: 100%; max-width: 460px; }
.auth-logo-wrap { text-align: center; margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.84rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.form-input {
  width: 100%; background: var(--card-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px; font-size: 0.96rem;
  color: var(--text); transition: var(--transition);
}
.form-input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(30,184,204,0.20); }
.form-hint { font-size: 0.78rem; color: var(--text-dim); margin-top: 6px; }

/* ===== BREADCRUMB ===== */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-dim); flex-wrap: wrap; }
.breadcrumb a { color: var(--teal); }
.breadcrumb a:hover { color: var(--teal-light); }
.breadcrumb-sep { opacity: 0.4; }

/* ===== 404 ===== */
.error-wrap { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 20px; }
.error-code { font-size: clamp(5rem, 20vw, 12rem); font-weight: 900; line-height: 1; background: linear-gradient(135deg, var(--teal), var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===== MOBILE MENU OVERLAY ===== */
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 98; }
.nav-overlay.open { display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-5 { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-cta { display: none; }
  .nav-menu {
    position: fixed; top: 0; right: -100%; width: min(320px, 85vw); height: 100vh;
    background: var(--card-bg); border-left: 1px solid var(--border);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 24px 0; z-index: 99; overflow-y: auto;
    transition: right 0.3s ease;
  }
  .nav-menu.open { right: 0; }
  .nav-menu-close { display: flex; margin: 0 20px 16px; font-size: 1.2rem; padding: 8px; color: var(--text-muted); }
  .nav-link { padding: 14px 24px; border-radius: 0; border-bottom: 1px solid var(--border-light); font-size: 1rem; }
  .nav-mobile-cta { display: block; padding: 20px 24px 0; }
  .hero-two-col { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero { padding: 72px 0 56px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-5 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }
  .bar-label { width: 110px; font-size: 0.78rem; }
  .rating-label { width: 110px; }
  .data-table th, .data-table td { padding: 10px 12px; font-size: 0.82rem; }
  .header-top .ht-long { display: none; }
  .pay-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 480px) {
  :root { --gutter: 16px; }
  h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  h2 { font-size: clamp(1.3rem, 5vw, 2rem); }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: 1fr 1fr; }
  .btn-xl { padding: 14px 24px; font-size: 1rem; }
  .pay-grid { grid-template-columns: repeat(2,1fr); }
  .tabs-nav { gap: 4px; }
  .tab-btn { padding: 10px 14px; font-size: 0.82rem; }
  .auth-card { padding: 28px 20px; }
  .bar-label { width: 90px; }
}
