/* =====================================================
   Casino Selector — Main Stylesheet
   ===================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-dark:    #0f1117;
  --bg-card:    #181c27;
  --bg-card2:   #1e2336;
  --accent:     #3b82f6;
  --accent-h:   #2563eb;
  --green:      #22c55e;
  --green-h:    #16a34a;
  --gold:       #f59e0b;
  --text:       #e2e8f0;
  --text-muted: #94a3b8;
  --border:     rgba(255,255,255,0.07);
  --radius:     14px;
  --shadow:     0 8px 40px rgba(0,0,0,0.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-h); }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Typography ---------- */
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; line-height: 1.2; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.3; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; line-height: 1.4; }
p  { color: var(--text-muted); line-height: 1.75; }

.section-title { color: #fff; margin-bottom: 12px; }
.section-sub   { font-size: 1.05rem; max-width: 640px; }
.section-header { margin-bottom: 40px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 24px rgba(59,130,246,.45);
}
.btn-primary:hover { background: var(--accent-h); box-shadow: 0 6px 32px rgba(59,130,246,.6); color: #fff; }

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 24px rgba(34,197,94,.45);
}
.btn-green:hover { background: var(--green-h); color: #fff; }

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; }

.btn-lg { padding: 18px 44px; font-size: 1.1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,17,23,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }
.logo-icon {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

.site-nav { display: flex; gap: 6px; align-items: center; }
.site-nav a {
  color: var(--text-muted);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color .2s, background .2s;
  font-size: 0.95rem;
}
.site-nav a:hover, .site-nav a.active {
  color: #fff;
  background: var(--bg-card2);
}

.header-cta { display: flex; gap: 10px; align-items: center; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }

.mobile-nav {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  flex-direction: column;
  gap: 8px;
  z-index: 99;
}
.mobile-nav a {
  color: var(--text-muted);
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 500;
  display: block;
}
.mobile-nav a:hover { background: var(--bg-card2); color: #fff; }
.mobile-nav.open { display: flex; }

/* ---------- Hero Section ---------- */
.hero {
  background: linear-gradient(135deg, #0d1526 0%, #0f1117 60%, #131929 100%);
  padding: 80px 20px 60px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(59,130,246,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-text h1 { color: #fff; margin-bottom: 20px; }
.hero-text h1 em { font-style: normal; color: var(--accent); }
.hero-text p { font-size: 1.1rem; margin-bottom: 32px; max-width: 480px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-socials { display: flex; align-items: center; gap: 12px; }
.hero-socials span { color: var(--text-muted); font-size: 0.9rem; }
.social-icons { display: flex; gap: 8px; }
.social-icon {
  width: 38px; height: 38px;
  background: var(--bg-card2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: background .2s, color .2s;
  border: 1px solid var(--border);
}
.social-icon:hover { background: var(--accent); color: #fff; }

.hero-image {
  position: relative;
  display: flex;
  gap: 16px;
  justify-content: center;
}
.hero-image img {
  border-radius: 20px;
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  top: -14px; right: -14px;
  background: var(--gold);
  color: #000;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(245,158,11,.5);
}

/* ---------- Trust Strip ---------- */
.trust-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 20px;
}
.trust-strip-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.trust-item i { color: var(--accent); font-size: 1.1rem; }

/* ---------- Section Base ---------- */
.section { padding: 80px 20px; }
.section-dark { background: var(--bg-card); }
.section-darker { background: #0a0d14; }

/* ---------- Image Sections (Banner style) ---------- */
.img-banner {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}
.img-banner img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s;
}
.img-banner:hover img { transform: scale(1.02); }
.img-banner a { display: block; }

/* Split block image + text */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 60px;
}
.split-block.reverse { direction: rtl; }
.split-block.reverse > * { direction: ltr; }

.split-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform .4s;
}
.split-img:hover img { transform: scale(1.02); }

.split-text h2 { color: #fff; margin-bottom: 16px; }
.split-text p  { margin-bottom: 20px; }
.split-text ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.split-text li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.95rem;
}
.split-text li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ---------- Features Grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.feature-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.45);
  border-color: rgba(59,130,246,.3);
}
.feature-icon {
  width: 54px; height: 54px;
  background: rgba(59,130,246,.12);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.feature-card h3 { color: #fff; margin-bottom: 10px; }

/* ---------- Stats Row ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.stat-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.stat-num {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.9rem; color: var(--text-muted); }

/* ---------- Wins Table ---------- */
.wins-section .img-banner img { border-radius: var(--radius); }

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, #1a2744 0%, #0f1117 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  margin: 0 20px;
  box-shadow: var(--shadow);
}
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p  { max-width: 580px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card2);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  text-align: left;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background .2s;
}
.faq-q:hover { background: rgba(255,255,255,.04); }
.faq-q .faq-icon { font-size: 1.2rem; color: var(--accent); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 24px 20px; color: var(--text-muted); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.review-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.review-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.review-author { font-weight: 700; color: #fff; }
.review-stars { color: var(--gold); font-size: 0.85rem; }
.review-text { font-size: 0.92rem; color: var(--text-muted); }

/* ---------- Bonus Cards (bonus page) ---------- */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.bonus-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent);
}
.bonus-card.green::before { background: var(--green); }
.bonus-card.gold::before { background: var(--gold); }
.bonus-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,.4); }
.bonus-amount {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.bonus-card.green .bonus-amount { color: var(--green); }
.bonus-card.gold .bonus-amount { color: var(--gold); }
.bonus-name { font-weight: 700; color: #fff; font-size: 1.1rem; margin-bottom: 12px; }
.bonus-desc { font-size: 0.88rem; margin-bottom: 20px; }

/* ---------- Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  counter-reset: step;
}
.step-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  counter-increment: step;
  position: relative;
}
.step-num {
  width: 48px; height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.2rem;
  color: #fff;
  margin: 0 auto 16px;
}
.step-card h3 { color: #fff; font-size: 1rem; margin-bottom: 8px; }

/* ---------- Casino Games Grid (kazino page) ---------- */
.games-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.game-cat-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: transform .25s, border-color .25s;
  cursor: pointer;
}
.game-cat-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.game-cat-icon { font-size: 2.2rem; margin-bottom: 12px; }
.game-cat-card h3 { color: #fff; font-size: 1rem; margin-bottom: 6px; }
.game-cat-count { color: var(--accent); font-weight: 700; font-size: 0.85rem; }

/* ---------- Providers ---------- */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.provider-badge {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: border-color .2s, color .2s;
}
.provider-badge:hover { border-color: var(--accent); color: #fff; }

/* ---------- Table ---------- */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 0.92rem;
}
.styled-table thead tr {
  background: var(--bg-card2);
}
.styled-table th {
  padding: 14px 18px;
  text-align: left;
  color: var(--text-muted);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.styled-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.styled-table tr:hover td { background: rgba(255,255,255,.03); }
.td-green { color: var(--green); font-weight: 700; }
.td-accent { color: var(--accent); font-weight: 600; }
.td-bold { font-weight: 700; color: #fff; }

/* ---------- Footer ---------- */
.site-footer {
  background: #080b10;
  border-top: 1px solid var(--border);
  padding: 60px 20px 32px;
}
.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 16px; max-width: 300px; }
.footer-col h4 { color: #fff; font-weight: 700; margin-bottom: 16px; font-size: 0.95rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { color: var(--text-muted); font-size: 0.9rem; transition: color .2s; }
.footer-col li a:hover { color: var(--accent); }

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }
.footer-warning {
  background: rgba(245,158,11,.08);
  border: 1px solid rgba(245,158,11,.2);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 24px;
  text-align: center;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}
.footer-warning strong { color: var(--gold); }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: 16px 20px;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

/* ---------- Page Hero (sub pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, #0d1526 0%, #0f1117 100%);
  padding: 56px 20px 48px;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: 1160px; margin: 0 auto; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 12px; }
.page-hero p { font-size: 1.05rem; max-width: 680px; }

/* ---------- Tag / Badge ---------- */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tag-blue { background: rgba(59,130,246,.15); color: var(--accent); }
.tag-green { background: rgba(34,197,94,.15); color: var(--green); }
.tag-gold  { background: rgba(245,158,11,.15); color: var(--gold); }

/* ---------- Info Box ---------- */
.info-box {
  background: rgba(59,130,246,.08);
  border: 1px solid rgba(59,130,246,.2);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box p { color: var(--text); }
.info-box.warning {
  background: rgba(245,158,11,.08);
  border-color: rgba(245,158,11,.2);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row     { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid    { grid-template-columns: repeat(2, 1fr); }
  .steps-grid    { grid-template-columns: repeat(2, 1fr); }
  .games-categories { grid-template-columns: repeat(2, 1fr); }
  .providers-grid   { grid-template-columns: repeat(3, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .site-nav, .header-cta .btn:not(.btn-green) { display: none; }
  .burger { display: flex; }

  .hero-inner    { grid-template-columns: 1fr; }
  .hero { padding: 48px 20px 40px; }
  .hero-image    { order: -1; }

  .split-block   { grid-template-columns: 1fr; gap: 32px; direction: ltr !important; }

  .features-grid { grid-template-columns: 1fr; }
  .stats-row     { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid    { grid-template-columns: 1fr; }
  .steps-grid    { grid-template-columns: repeat(2, 1fr); }
  .games-categories { grid-template-columns: repeat(2, 1fr); }
  .providers-grid   { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .cta-section   { padding: 40px 24px; margin: 0 10px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-strip-inner { gap: 20px; }
}

@media (max-width: 480px) {
  .stats-row   { grid-template-columns: 1fr; }
  .steps-grid  { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}

/* ===== SEO Article Styles ===== */
.seo-article {
  background: #0f1117;
  padding: 64px 0;
}

.seo-article.section-dark {
  background: #080b10;
}

.seo-content {
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.85;
  color: #cbd5e1;
}

.seo-content p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #94a3b8;
}

.seo-content strong {
  color: #e2e8f0;
  font-weight: 600;
}

.seo-h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f1f5f9;
  margin: 40px 0 16px;
  line-height: 1.3;
  border-left: 4px solid #22c55e;
  padding-left: 16px;
}

.seo-h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 28px 0 12px;
  line-height: 1.4;
}

.seo-content ul {
  margin: 0 0 20px 24px;
  padding: 0;
}

.seo-content ul li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #94a3b8;
  list-style: disc;
}

.seo-content ol {
  margin: 0 0 20px 24px;
  padding: 0;
}

.seo-content ol li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #94a3b8;
}

/* SEO Table — таблица внутри seo-article */
.seo-table-wrap {
  overflow-x: auto;
  margin: 24px 0 32px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #181c27;
}

.seo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.seo-table thead tr {
  background: #1e2336;
}

.seo-table th {
  padding: 14px 18px;
  text-align: left;
  color: #64748b;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.seo-table td {
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #cbd5e1;
  vertical-align: middle;
}

.seo-table td:first-child {
  color: #64748b;
  font-weight: 600;
  width: 36px;
}

.seo-table td:nth-child(2) {
  color: #f1f5f9;
  font-weight: 600;
}

.seo-table td:nth-child(3) {
  color: #94a3b8;
}

.seo-table td:nth-child(4) {
  color: #22c55e;
  font-weight: 600;
}

.seo-table td:nth-child(5) {
  color: #94a3b8;
}

.seo-table td:last-child {
  color: #3b82f6;
  font-weight: 700;
}

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

.seo-table tbody tr:hover td {
  background: rgba(255,255,255,0.03);
}

/* seo-article-inner — обёртка для старых страниц */
.seo-article-inner {
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.85;
  color: #cbd5e1;
}

.seo-article-inner p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #94a3b8;
}

.seo-article-inner strong {
  color: #e2e8f0;
  font-weight: 600;
}

.seo-article-inner ul {
  margin: 0 0 20px 24px;
  padding: 0;
}

.seo-article-inner ul li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #94a3b8;
  list-style: disc;
}

@media (max-width: 768px) {
  .seo-h2 { font-size: 1.2rem; }
  .seo-h3 { font-size: 1rem; }
  .seo-content { padding: 0 4px; }
  .seo-article-inner { padding: 0 4px; }
  .seo-table th, .seo-table td { padding: 10px 12px; font-size: 0.82rem; }
}
