* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #00e676;
  --green-dark: #00b050;
  --gold: #f5c518;
  --bg-dark: #0a0e14;
  --bg-card: #111720;
  --bg-card2: #161d28;
  --border: rgba(255,255,255,0.07);
  --text: #e0e6ef;
  --text-muted: #7a8a9e;
  --red: #ff4444;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ───── HEADER ───── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,14,20,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.header-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo img {
  height: 40px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  margin-left: 20px;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all .2s;
  white-space: nowrap;
}

nav a:hover, nav a.active {
  color: #fff;
  background: rgba(255,255,255,0.07);
}

nav a.active {
  color: var(--green);
}

.header-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s;
  border: none;
  white-space: nowrap;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(0,230,118,0.06);
}

.btn-primary {
  background: linear-gradient(135deg, #00e676, #00b050);
  color: #000;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #33ff9a, #00cc60);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,230,118,0.35);
}

.btn-gold {
  background: linear-gradient(135deg, #f5c518, #e0a800);
  color: #000;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #ffd740, #f5c518);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(245,197,24,0.35);
}

.btn-lg {
  padding: 14px 36px;
  font-size: 16px;
  border-radius: 12px;
}

/* ───── WINS TICKER ───── */
.wins-ticker {
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  z-index: 999;
  background: rgba(0,0,0,0.7);
  border-bottom: 1px solid rgba(0,230,118,0.15);
  padding: 8px 0;
  overflow: hidden;
}

.wins-ticker-inner {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.wins-ticker-inner:hover { animation-play-state: paused; }

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.win-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-size: 13px;
  border-right: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
}

.win-item .avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #006633);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

.win-item .win-amount {
  color: var(--gold);
  font-weight: 700;
}

.win-item .win-game {
  color: var(--text-muted);
}

/* ───── MAIN LAYOUT ───── */
main {
  padding-top: 100px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ───── HERO ───── */
.hero {
  position: relative;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  padding: 60px 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('background.webp');
  background-size: cover;
  background-position: center top;
  opacity: 0.25;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,20,0.3) 0%, rgba(10,14,20,0.9) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,230,118,0.12);
  border: 1px solid rgba(0,230,118,0.3);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.hero h1 span {
  background: linear-gradient(135deg, #00e676, #f5c518);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-bonus {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: 16px;
}

.bonus-val {
  text-align: center;
}

.bonus-val .num {
  display: block;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--green), #00cc60);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bonus-val .label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bonus-divider {
  font-size: 32px;
  font-weight: 900;
  color: var(--text-muted);
}

.bonus-val .num.gold {
  background: linear-gradient(135deg, #f5c518, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.6;
}

/* ───── SUPPORT BADGE ───── */
.support-badge {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  max-width: 220px;
  text-align: center;
}

.support-badge .pulse {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  position: relative;
  font-size: 22px;
}

.support-badge .pulse::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--green);
  opacity: 0.5;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0; }
}

.support-badge h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.support-badge p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ───── SECTION ───── */
section {
  padding: 60px 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}

.section-header h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-header h2 span {
  color: var(--green);
}

/* ───── TABS ───── */
.tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px;
  flex-wrap: wrap;
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.tab-btn:hover { color: #fff; }

.tab-btn.active {
  background: var(--green);
  color: #000;
}

/* ───── GAMES GRID ───── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}

.game-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
}

.game-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  border-color: rgba(0,230,118,0.3);
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.game-card:hover img { transform: scale(1.06); }

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
}

.game-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
  background: rgba(0,0,0,0.5);
}

.game-card:hover .game-card-play { opacity: 1; }

.play-btn {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,230,118,0.5);
}

.play-btn svg {
  width: 22px; height: 22px;
  fill: #000;
  margin-left: 3px;
}

.game-card-footer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 12px;
}

.game-card-name {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

.game-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game-badge.hot { background: #ff4444; color: #fff; }
.game-badge.new { background: var(--green); color: #000; }

/* ───── PROMO BANNER ───── */
.promo-banner {
  background: linear-gradient(135deg, #0d1f12, #0a1a1f);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,230,118,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.promo-content h2 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.promo-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 480px;
}

/* ───── INFO GRID ───── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: border-color .2s;
}

.info-card:hover { border-color: rgba(0,230,118,0.25); }

.info-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(0,230,118,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.info-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.info-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ───── STATS ───── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item { text-align: center; }

.stat-num {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--green), #00b050);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ───── LIVE WINS ───── */
.live-wins {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.live-win-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  transition: border-color .2s;
  animation: slideIn .4s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

.live-win-item:hover { border-color: rgba(0,230,118,0.2); }

.lw-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), #003322);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}

.lw-info { flex: 1; min-width: 0; }

.lw-user {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.lw-game {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lw-amount {
  font-size: 17px;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
}

.lw-time {
  font-size: 11px;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ───── PROVIDERS ───── */
.providers-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.provider-pill {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all .2s;
  cursor: pointer;
  text-decoration: none;
}

.provider-pill:hover {
  border-color: rgba(0,230,118,0.3);
  color: #fff;
  background: rgba(0,230,118,0.06);
}

/* ───── FAQ ───── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  gap: 12px;
  transition: color .2s;
}

.faq-q:hover { color: var(--green); }

.faq-q svg {
  flex-shrink: 0;
  transition: transform .25s;
  color: var(--text-muted);
}

.faq-item.open .faq-q svg { transform: rotate(180deg); }

.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.faq-item.open .faq-a { display: block; }

/* ───── LIVE GAMES ───── */
.live-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.live-game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s;
}

.live-game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,230,118,0.3);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.live-game-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.live-game-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.live-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.live-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.live-game-info {
  padding: 14px;
}

.live-game-name {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}

.live-game-players {
  font-size: 12px;
  color: var(--text-muted);
}

/* ───── BONUSES ───── */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all .25s;
}

.bonus-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,230,118,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.bonus-card-top {
  padding: 28px 24px 24px;
  background: linear-gradient(135deg, rgba(0,230,118,0.08), rgba(0,0,0,0));
}

.bonus-card-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.bonus-card-top h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.bonus-card-top p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.bonus-card-val {
  padding: 16px 24px;
  background: rgba(0,230,118,0.06);
  border-top: 1px solid rgba(0,230,118,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bv-num {
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--green), #00b050);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.bv-num.gold {
  background: linear-gradient(135deg, #f5c518, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bv-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

.bonus-card-btn {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
}

/* ───── PAGE HERO ───── */
.page-hero {
  padding: 60px 0 40px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.page-hero h1 span { color: var(--green); }

.page-hero p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ───── FOOTER ───── */
footer {
  background: #060a0f;
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
  margin-top: 60px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img { height: 36px; margin-bottom: 14px; }

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}

.footer-col ul li a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

.age-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}

/* ───── MOBILE BOTTOM NAV ───── */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,14,20,0.95);
  border-top: 1px solid var(--border);
  padding: 8px 0 env(safe-area-inset-bottom, 8px);
}

.mobile-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 10px;
  transition: all .2s;
}

.mobile-nav-item.active, .mobile-nav-item:hover {
  color: var(--green);
}

.mobile-nav-item svg {
  width: 22px; height: 22px;
}

/* ───── SEO CONTENT SECTIONS ───── */
.seo-section {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

.seo-article {
  max-width: 860px;
  margin: 0 auto;
}

.seo-article h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 36px 0 12px;
  letter-spacing: -0.3px;
  color: #fff;
}

.seo-article h2:first-child {
  margin-top: 0;
}

.seo-article p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.seo-article ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.seo-article ul li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 6px;
}

.seo-article a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.seo-article a:hover {
  text-decoration: none;
}

.seo-faq {
  margin-top: 40px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.seo-faq h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
}

.seo-internal-links {
  margin-top: 40px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.seo-internal-links h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.seo-internal-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
}

.seo-internal-links ul li a {
  display: inline-block;
  background: rgba(0,230,118,0.07);
  border: 1px solid rgba(0,230,118,0.18);
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  transition: all .2s;
}

.seo-internal-links ul li a:hover {
  background: rgba(0,230,118,0.14);
  border-color: var(--green);
}

/* ───── RESPONSIVE ───── */
@media (max-width: 900px) {
  .support-badge { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .wins-providers-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 680px) {
  header { height: 56px; }
  main { padding-top: 92px; }
  .wins-ticker { top: 56px; }
  nav { display: none; }
  .mobile-nav { display: block; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .hero { min-height: auto; padding: 40px 0; }
  .hero h1 { font-size: 32px; }
  .hero-bonus { flex-direction: column; gap: 8px; }
  .promo-banner { flex-direction: column; }
  body { padding-bottom: 70px; }
}
