:root {
  --bg-primary: #0d0d14;
  --bg-secondary: #14141f;
  --bg-card: #1a1a28;
  --bg-card-hover: #22223a;
  --accent-gold: #f0c040;
  --accent-gold-dark: #c9962a;
  --accent-green: #2ecc71;
  --accent-red: #e74c3c;
  --text-primary: #f0f0f0;
  --text-secondary: #9090b0;
  --text-muted: #5a5a7a;
  --border-color: #2a2a40;
  --gradient-gold: linear-gradient(135deg, #f0c040, #c9962a);
  --gradient-green: linear-gradient(135deg, #2ecc71, #1a9e50);
  --shadow-gold: 0 0 20px rgba(240, 192, 64, 0.3);
  --radius: 12px;
  --radius-sm: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

img { display: block; max-width: 100%; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 20, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav a:hover,
.nav a.active {
  color: var(--text-primary);
  background: var(--bg-card);
}

.nav a.active {
  color: var(--accent-gold);
}

.header-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gradient-gold);
  color: #1a1000;
}

.btn-gold:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-green {
  background: var(--gradient-green);
  color: #fff;
}

.btn-green:hover {
  box-shadow: 0 0 20px rgba(46, 204, 113, 0.4);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: var(--radius);
}

/* ===== TICKER ===== */
.ticker-bar {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}

.ticker-label {
  background: var(--gradient-gold);
  color: #1a1000;
  font-size: 11px;
  font-weight: 700;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ticker-track {
  display: flex;
  gap: 40px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
  padding: 0 20px;
}

.ticker-item {
  font-size: 12px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.ticker-item .name { color: var(--text-primary); font-weight: 500; }
.ticker-item .game { color: var(--text-muted); }
.ticker-item .amount { color: var(--accent-green); font-weight: 700; }

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-banner {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,13,20,0.85) 40%, transparent 100%);
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: var(--gradient-gold);
  color: #1a1000;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.hero-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero-title span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== PROMO STRIP ===== */
.promo-strip {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 0;
  overflow: hidden;
}

.promo-scroll {
  display: flex;
  animation: promo-scroll 20s linear infinite;
}

.promo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  white-space: nowrap;
  border-right: 1px solid var(--border-color);
  flex-shrink: 0;
}

.promo-item .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.promo-item .icon.gold { background: rgba(240,192,64,0.15); }
.promo-item .icon.green { background: rgba(46,204,113,0.15); }
.promo-item .icon.blue { background: rgba(52,152,219,0.15); }
.promo-item .icon.purple { background: rgba(155,89,182,0.15); }

.promo-item strong {
  display: block;
  font-size: 13px;
  color: var(--accent-gold);
}

.promo-item span {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}

@keyframes promo-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== MAIN LAYOUT ===== */
.main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 20px;
}

.section {
  margin-bottom: 48px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
}

.section-title {
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title .dot {
  width: 6px;
  height: 24px;
  background: var(--gradient-gold);
  border-radius: 3px;
}

.view-all {
  font-size: 13px;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.view-all:hover { gap: 8px; }

/* ===== GAMES GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  aspect-ratio: 3/4;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.game-card:hover img { transform: scale(1.05); }

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 40%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.2s;
}

.game-card:hover .game-card-overlay { opacity: 1; }

.game-card-overlay .play-btn {
  background: var(--gradient-gold);
  color: #1a1000;
  font-size: 13px;
  font-weight: 700;
  padding: 8px;
  border-radius: var(--radius-sm);
  text-align: center;
  display: block;
}

.game-card-overlay .play-btn:hover {
  box-shadow: var(--shadow-gold);
}

/* ===== LIVE WINNINGS ===== */
.winnings-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.win-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  border: 1px solid var(--border-color);
  transition: border-color 0.3s;
  animation: win-appear 0.4s ease-out;
}

.win-item.new {
  border-color: var(--accent-gold);
  background: rgba(240,192,64,0.05);
}

@keyframes win-appear {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

.win-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  font-weight: 700;
  color: #1a1000;
}

.win-info { flex: 1; min-width: 0; }

.win-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.win-game {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.win-amount {
  font-size: 16px;
  font-weight: 800;
  color: var(--accent-green);
  white-space: nowrap;
  flex-shrink: 0;
}

.win-time {
  font-size: 11px;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ===== APP DOWNLOAD ===== */
.app-section {
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  position: relative;
}

.app-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(240,192,64,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.app-content { flex: 1; }

.app-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.app-desc {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.app-stores {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  transition: all 0.2s;
}

.store-btn:hover {
  border-color: var(--accent-gold);
  background: rgba(240,192,64,0.05);
}

.store-btn .store-icon { font-size: 22px; }
.store-btn .store-text { line-height: 1.3; }
.store-btn .store-text small { font-size: 10px; color: var(--text-muted); display: block; }
.store-btn .store-text strong { font-size: 14px; font-weight: 600; }

.app-phone {
  font-size: 64px;
  line-height: 1;
  flex-shrink: 0;
}

/* ===== SEO TEXT ===== */
.seo-section {
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  padding: 32px 40px;
}

.seo-section h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--accent-gold);
}

.seo-section h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 20px 0 8px;
  color: var(--text-primary);
}

.seo-section p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.seo-section ul {
  list-style: none;
  margin-bottom: 12px;
}

.seo-section ul li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.seo-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 40px 20px 24px;
  margin-top: 48px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 24px;
}

.footer-logo { margin-bottom: 12px; }
.footer-logo img { height: 36px; }

.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--accent-gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-18 {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}

.footer-warning {
  font-size: 11px;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.5;
}

/* ===== SLOTS/LIVE PAGE STYLES ===== */
.page-hero {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  padding: 40px 20px;
  text-align: center;
}

.page-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero h1 span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ===== FILTERS ===== */
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.filter-btn {
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(240,192,64,0.08);
}

/* ===== BONUSES PAGE ===== */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.bonus-card {
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.bonus-card-top {
  padding: 24px;
  background: linear-gradient(135deg, rgba(240,192,64,0.1), rgba(200,150,42,0.05));
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.bonus-icon {
  font-size: 48px;
  margin-bottom: 12px;
  display: block;
}

.bonus-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.bonus-amount {
  font-size: 28px;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bonus-card-body {
  padding: 20px 24px;
}

.bonus-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.bonus-features {
  list-style: none;
  margin-bottom: 20px;
}

.bonus-features li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.bonus-features li:last-child { border-bottom: none; }
.bonus-features li .check { color: var(--accent-green); }

/* ===== FAQ PAGE ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
  gap: 12px;
}

.faq-q:hover { color: var(--accent-gold); }

.faq-q .arrow {
  font-size: 12px;
  color: var(--text-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-q { color: var(--accent-gold); }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-a { max-height: 400px; }

.faq-a-inner {
  padding: 0 24px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

/* ===== LIVE TABLE STYLES ===== */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.live-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.live-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.live-card-img {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-secondary);
  overflow: hidden;
}

.live-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--accent-red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.live-players {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.7);
  color: var(--text-secondary);
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.live-card-body {
  padding: 12px 16px;
}

.live-card-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.live-card-limits {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== STATS ROW ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.stat-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  padding: 20px;
  text-align: center;
}

.stat-icon { font-size: 28px; margin-bottom: 8px; }
.stat-value {
  font-size: 24px;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.stat-label { font-size: 12px; color: var(--text-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-inner { gap: 12px; }
  .nav { display: none; }
  .hero-overlay { background: rgba(13,13,20,0.75); }
  .hero-content { padding: 0 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .app-section { flex-direction: column; text-align: center; padding: 24px; }
  .app-phone { display: none; }
  .seo-section { padding: 24px; }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .bonuses-grid { grid-template-columns: 1fr; }
  .live-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== HAMBURGER MOBILE MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  flex-shrink: 0;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 8px 16px 16px;
}

.mobile-nav a {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
  display: block;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--accent-gold);
  background: var(--bg-card);
}

.mobile-nav.open { display: flex; }

@media (max-width: 768px) {
  .hamburger { display: flex; }
}

/* ===== NOTIFICATION TOAST ===== */
.win-toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--bg-card);
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), var(--shadow-gold);
  z-index: 9999;
  max-width: 320px;
  transform: translateX(-360px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.win-toast.show { transform: translateX(0); }

.win-toast-icon { font-size: 24px; flex-shrink: 0; }
.win-toast-text {}
.win-toast-title { font-size: 12px; color: var(--text-muted); }
.win-toast-body { font-size: 14px; font-weight: 600; }
.win-toast-body span { color: var(--accent-green); }

/* ===== COUNTERS ===== */
.counter-animate {
  display: inline-block;
  transition: opacity 0.3s;
}

/* ===== SEO SEMANTIC SECTIONS ===== */
.seo-block {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.seo-block:last-of-type {
  border-bottom: none;
}

.seo-block__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.seo-block__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.85;
}

.seo-link {
  color: var(--accent-gold);
  border-bottom: 1px solid rgba(240, 192, 64, 0.3);
  transition: border-color 0.2s, opacity 0.2s;
}

.seo-link:hover {
  opacity: 0.8;
  border-color: var(--accent-gold);
}

.seo-faq {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border-color);
}

.seo-faq__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.seo-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.seo-faq__item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}

.seo-faq__item:last-child {
  border-bottom: none;
}

.seo-faq__question {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: block;
}

.seo-faq__answer {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.75;
  display: block;
}

.seo-nav {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.seo-nav__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.seo-nav__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  flex-direction: column;
}

.seo-nav__list li {
  padding-left: 16px;
  position: relative;
}

.seo-nav__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-size: 12px;
}

.seo-nav__link {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.seo-nav__link:hover {
  color: var(--accent-gold);
}

.seo-cta {
  margin-top: 28px;
  text-align: center;
}
