/*
Theme Name: AviatorWin
Theme URI: https://aviatorwin.com
Author: AviatorWin Team
Description: Премиум тема для сайта об игре Авиатор. Стильный тёмный дизайн с анимациями самолёта и неоновыми акцентами.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: aviatorwin
Tags: gambling, aviator, dark, neon, gaming
*/

/* ===========================
   CSS VARIABLES
=========================== */
:root {
  --bg-dark:       #050a14;
  --bg-card:       #0b1628;
  --bg-glass:      rgba(11, 22, 40, 0.75);
  --accent-blue:   #00d4ff;
  --accent-gold:   #ffb700;
  --accent-red:    #ff3d5a;
  --accent-green:  #00e676;
  --text-primary:  #e8f4ff;
  --text-muted:    #7a9bbf;
  --border:        rgba(0, 212, 255, 0.15);
  --glow-blue:     0 0 20px rgba(0,212,255,0.4), 0 0 60px rgba(0,212,255,0.1);
  --glow-gold:     0 0 20px rgba(255,183,0,0.4), 0 0 60px rgba(255,183,0,0.1);
  --font-display:  'Orbitron', sans-serif;
  --font-body:     'Exo 2', sans-serif;
  --radius:        12px;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 88px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0,212,255,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(255,183,0,0.05) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300d4ff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

a { color: var(--accent-blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-gold); }

img { max-width: 100%; height: auto; display: block; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--text-primary);
  font-weight: 700;
}

p { margin-bottom: 1.2em; color: var(--text-muted); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ===========================
   SCROLLBAR
=========================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--accent-blue); border-radius: 3px; }

/* ===========================
   HEADER
=========================== */

/* Сдвигаем хедер когда видна админ-панель */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: rgba(5, 10, 20, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 40px rgba(0,212,255,0.1);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  position: relative;
}

.logo-plane {
  font-size: 28px;
  filter: drop-shadow(var(--glow-blue));
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(-10deg); }
  50% { transform: translateY(-4px) rotate(-5deg); }
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

/* Navigation */
.main-navigation {
  display: flex;
  align-items: center;
  flex: 1;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  display: block;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 8px;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
  color: var(--accent-blue);
  background: rgba(0,212,255,0.08);
}

.nav-menu li.current-menu-item a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent-blue);
  box-shadow: var(--glow-blue);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent-blue);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, #0099cc 0%, #00d4ff 50%, #00bfff 100%);
  color: #000;
  box-shadow: 0 4px 24px rgba(0,212,255,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0,212,255,0.5);
  color: #000;
}

.btn-gold {
  background: linear-gradient(135deg, #cc8800 0%, #ffb700 50%, #ffd54f 100%);
  color: #000;
  box-shadow: 0 4px 24px rgba(255,183,0,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(255,183,0,0.5);
  color: #000;
}

.btn-outline {
  background: transparent;
  color: var(--accent-blue);
  border: 1.5px solid var(--accent-blue);
}
.btn-outline:hover {
  background: rgba(0,212,255,0.1);
  color: var(--accent-blue);
  box-shadow: var(--glow-blue);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.78rem;
}

/* Pulse animation for CTA */
.btn-pulse {
  animation: btnPulse 2s ease-in-out infinite;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(255,183,0,0.35); }
  50% { box-shadow: 0 8px 50px rgba(255,183,0,0.65); }
}

/* ===========================
   MAIN CONTENT
=========================== */
#main-content {
  padding-top: 72px;
  position: relative;
  z-index: 1;
}

/* ===========================
   HERO SECTION
=========================== */
.hero-section {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Animated grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridScroll 20s linear infinite;
}

@keyframes gridScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(60px); }
}

/* Multiplier graph line */
.hero-graph {
  position: absolute;
  bottom: 30%;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 50%, var(--accent-red) 100%);
  opacity: 0.3;
  filter: blur(1px);
}

/* Plane flying */
.hero-plane-wrap {
  position: absolute;
  bottom: 38%;
  left: -100px;
  animation: planeFly 8s ease-in-out infinite;
  z-index: 2;
}

@keyframes planeFly {
  0% { left: -100px; bottom: 32%; transform: rotate(-8deg); }
  30% { bottom: 55%; transform: rotate(-5deg); }
  70% { bottom: 60%; transform: rotate(-3deg); }
  100% { left: 110%; bottom: 68%; transform: rotate(-2deg); }
}

.hero-plane-emoji {
  font-size: 3.5rem;
  filter: drop-shadow(0 0 16px rgba(0,212,255,0.9)) drop-shadow(0 0 40px rgba(0,212,255,0.4));
}

/* Trail */
.plane-trail {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.6));
  border-radius: 2px;
}

/* Floating particles */
.particle {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: var(--accent-blue);
  opacity: 0;
  animation: particleFloat var(--dur, 6s) var(--delay, 0s) ease-in-out infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(1); }
  20% { opacity: 0.8; }
  80% { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-200px) scale(0.5); }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-blue);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease both;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green);
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s 0.1s ease both;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--accent-blue) 0%, #7df9ff 40%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp 0.6s 0.3s ease both;
}

/* Stats row */
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.4s ease both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.stat-value.gold { color: var(--accent-gold); text-shadow: 0 0 20px rgba(255,183,0,0.5); }
.stat-value.blue { color: var(--accent-blue); text-shadow: 0 0 20px rgba(0,212,255,0.5); }
.stat-value.green { color: var(--accent-green); text-shadow: 0 0 20px rgba(0,230,118,0.5); }

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Multiplier counter on right */
.hero-multiplier {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 3;
  animation: fadeInUp 0.8s 0.5s ease both;
}

.multiplier-display {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.multiplier-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  opacity: 0.3;
  animation: ringPulse 2s ease-in-out infinite;
}

.multiplier-ring:nth-child(2) {
  inset: 20px;
  border-color: var(--accent-blue);
  animation-delay: 0.5s;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.05); opacity: 0.6; }
}

.multiplier-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent-gold);
  text-shadow: var(--glow-gold);
  line-height: 1;
  z-index: 1;
}

.multiplier-x {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  z-index: 1;
  margin-top: 4px;
}

/* ===========================
   SECTIONS COMMON
=========================== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Divider line */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-gold));
  border-radius: 3px;
  margin: 24px auto 0;
}

/* ===========================
   CARDS
=========================== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  border-color: rgba(0,212,255,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(0,212,255,0.1);
}

.card:hover::before { opacity: 1; }

/* Card icon */
.card-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(0,212,255,0.5));
}

.card-title {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.card-text {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ===========================
   HOW TO PLAY SECTION
=========================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: steps;
}

.step-card {
  counter-increment: steps;
}

.step-card::after {
  content: counter(steps);
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0,212,255,0.06);
  line-height: 1;
}

/* ===========================
   FEATURES GRID
=========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* ===========================
   CASINOS TABLE
=========================== */
.casinos-section { background: linear-gradient(180deg, transparent, rgba(0,212,255,0.03), transparent); }

.casinos-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: center;
  gap: 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.casino-card:hover {
  border-color: rgba(0,212,255,0.3);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.casino-card.top-pick::before {
  content: '🏆 ТОП';
  position: absolute;
  top: 0; left: 24px;
  background: linear-gradient(135deg, var(--accent-gold), #ff9800);
  color: #000;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 0 0 8px 8px;
}

.casino-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Star rating — two layers, gold clipped over grey */
.stars {
  position: relative;
  display: inline-block;
  font-size: 1.05rem;
  letter-spacing: 3px;
  line-height: 1;
  white-space: nowrap;
}

.stars-empty {
  color: rgba(255, 183, 0, 0.2);
}

.stars-filled {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: var(--accent-gold);
  filter: drop-shadow(0 0 4px rgba(255,183,0,0.5));
}

.rating-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-gold);
  white-space: nowrap;
}

.casino-bonus {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-green);
}

/* ===========================
   FAQ
=========================== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--accent-blue); }

.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  color: var(--accent-blue);
  transition: transform var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

/* ===========================
   CTA BANNER
=========================== */
.cta-banner {
  background: linear-gradient(135deg, rgba(0,50,80,0.9) 0%, rgba(10,20,40,0.9) 100%);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 24px;
  padding: 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0,212,255,0.3), transparent 40%, rgba(255,183,0,0.2));
  z-index: -1;
}

.cta-banner-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.cta-banner-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   PAGE CONTENT
=========================== */
.page-content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 40px;
}

.page-content-section h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 32px;
}

.page-content-section h2 {
  font-size: 1.6rem;
  margin: 48px 0 20px;
  color: var(--accent-blue);
}

.page-content-section h3 {
  font-size: 1.25rem;
  margin: 32px 0 14px;
}

.page-content-section p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.page-content-section ul,
.page-content-section ol {
  padding-left: 24px;
  margin-bottom: 1.5em;
  color: var(--text-muted);
}

.page-content-section li { margin-bottom: 8px; }

.page-content-section img:not(.avatar) {
  border-radius: 16px;
  margin: 32px 0;
  width: 100%;
}

/* Comments */
.page-content-section .avatar {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  flex-shrink: 0;
  margin: 0;
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comment-list .comment {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.comment-list .comment-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.comment-list .comment-author b a {
  color: var(--accent-blue);
  font-size: 0.95rem;
}

.comment-list .comment-metadata {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-left: auto;
}

.comment-list .comment-metadata a {
  color: var(--text-muted);
}

.comment-list .comment-body p {
  font-size: 0.93rem;
  margin: 0;
}

.comment-list .reply a {
  font-size: 0.8rem;
  color: var(--accent-blue);
  margin-top: 10px;
  display: inline-block;
}

#respond {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

#respond h3 {
  font-size: 1.2rem;
  margin-bottom: 24px;
}

#respond .comment-form p {
  margin-bottom: 16px;
}

#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"],
#respond textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.93rem;
  transition: border-color var(--transition);
  outline: none;
}

#respond input:focus,
#respond textarea:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.08);
}

#respond textarea { min-height: 140px; resize: vertical; }

#respond label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

#respond .submit {
  background: linear-gradient(135deg, #0099cc, #00d4ff);
  color: #000;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

#respond .submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,212,255,0.4);
}

.page-content-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
}

.page-content-section th,
.page-content-section td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
}

.page-content-section th {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--accent-blue);
  background: rgba(0,212,255,0.05);
}

.page-content-section tr:hover td { background: rgba(0,212,255,0.03); }

/* ===========================
   FOOTER
=========================== */
.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(5, 10, 20, 0.95);
  padding: 72px 0 32px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0,212,255,0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: all var(--transition);
  text-decoration: none;
}

.social-btn:hover {
  background: rgba(0,212,255,0.15);
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--accent-blue); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(122, 155, 191, 0.5);
  max-width: 560px;
  text-align: right;
  margin: 0;
  line-height: 1.5;
}

/* ===========================
   ANIMATIONS UTILITY
=========================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay utilities */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Neon glow text */
.neon-text {
  color: var(--accent-blue);
  text-shadow: 0 0 10px rgba(0,212,255,0.6), 0 0 30px rgba(0,212,255,0.3);
}

.gold-text {
  color: var(--accent-gold);
  text-shadow: 0 0 10px rgba(255,183,0,0.6), 0 0 30px rgba(255,183,0,0.3);
}

/* ===========================
   RESPONSIVE — таблетка
=========================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-multiplier { display: none; }
}

/* ===========================
   CONTENT + SIDEBAR GRID
=========================== */
.content-sidebar-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
  padding: 16px 0;
}

/* ===========================
   POST / ARCHIVE HERO BAR
=========================== */
.post-hero-bar,
.archive-hero-bar {
  background: linear-gradient(180deg, rgba(0,212,255,0.05), transparent);
  border-bottom: 1px solid var(--border);
  padding: 32px 0 24px;
  text-align: center;
}

.container--narrow { max-width: 1200px; }

.post-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.post-date {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.post-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  margin: 0;
}

.archive-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin: 12px 0 0;
}

.tag-badge {
  font-size: 0.72rem;
  padding: 3px 12px;
  border-radius: 100px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  color: var(--accent-blue);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--transition);
}
.tag-badge:hover { background: rgba(0,212,255,0.2); color: var(--accent-blue); }

.tag-badge--gold {
  background: rgba(255,183,0,0.08);
  border-color: rgba(255,183,0,0.25);
  color: var(--accent-gold);
}

/* ===========================
   POST CONTENT
=========================== */
.post-featured-img {
  border-radius: 16px;
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}

.post-tags {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.post-tags__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Post navigation */
.post-nav {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.post-nav__item {
  padding: 20px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.post-nav__item--right { text-align: right; }

.post-nav__dir {
  font-size: 0.72rem;
  color: var(--accent-blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-nav__title {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.4;
}

/* ===========================
   POST LIST CARDS
=========================== */
.posts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.post-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: start;
  padding: 0;
  overflow: hidden;
}

.post-card__thumb img {
  width: 200px;
  height: 130px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.post-card__body {
  padding: 24px 24px 24px 0;
}

.post-card__title {
  font-size: 1.05rem;
  margin: 10px 0 10px;
}

.post-card__title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition);
}
.post-card__title a:hover { color: var(--accent-blue); }

.post-card__excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0 0 16px;
  line-height: 1.6;
}

.pagination-wrap {
  margin-top: 48px;
}

.pagination-wrap .nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pagination-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--transition);
}

.pagination-wrap .page-numbers.current,
.pagination-wrap .page-numbers:hover {
  background: rgba(0,212,255,0.1);
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

.pagination-wrap .prev,
.pagination-wrap .next {
  width: auto;
  padding: 0 16px;
}

/* ===========================
   MOBILE — всё адаптивное
=========================== */
@media (max-width: 900px) {
  /* Грид контент+сайдбар → одна колонка */
  .content-sidebar-grid {
    grid-template-columns: 1fr;
    padding: 40px 0;
    gap: 40px;
  }

  /* Сайдбар идёт после контента */
  .sidebar { order: 2; }
  main, article.page-content-section { order: 1; }

  /* Убираем боковые отступы — container уже даёт 24px */
  .page-content-section {
    padding-left: 0;
    padding-right: 0;
  }

  /* Пост-карточка в архиве → вертикально */
  .post-card {
    grid-template-columns: 1fr;
  }

  .post-card__thumb img {
    width: 100%;
    height: 200px;
    border-radius: 0;
  }

  .post-card__body {
    padding: 0 20px 20px;
  }

  /* Навигация поста */
  .post-nav { grid-template-columns: 1fr; }
  .post-nav__item--right { text-align: left; }
}

@media (max-width: 768px) {
  /* Хедер мобильный */
  .site-header { padding: 0 16px; }
  .header-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }

  /* Мобильное меню — строго в границах экрана */
  .main-navigation {
    display: none;
  }

  .main-navigation.open {
    display: block;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100dvh - 72px);
    background: rgba(5,10,20,0.99);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 998;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .admin-bar .main-navigation.open {
    top: calc(72px + 46px);
    height: calc(100dvh - 72px - 46px);
  }

  .main-navigation.open .nav-menu {
    display: flex;
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    width: 100%;
    margin: 0;
    list-style: none;
  }

  .main-navigation.open .nav-menu li {
    width: 100%;
  }

  .main-navigation.open .nav-menu li a {
    display: block;
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: 10px;
  }

  /* Общие секции */
  .section { padding: 60px 0; }
  .hero-section { padding: 48px 0; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .cta-banner { padding: 40px 24px; }

  /* Казино на мобилке */
  .casino-card {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .casino-card .btn { grid-column: 1 / -1; width: 100%; justify-content: center; }
  .casino-card .casino-name { grid-column: 1 / -1; }

  /* Футер */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-disclaimer { text-align: left; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-banner-actions { flex-direction: column; align-items: stretch; }
  .cta-banner-actions .btn { justify-content: center; }
  .casino-card { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .post-nav { grid-template-columns: 1fr; }
}

/* ===========================
   HEADER MOBILE OVERFLOW FIX
=========================== */
@media (max-width: 480px) {
  .logo-text {
    display: none;
  }

  .header-inner {
    gap: 12px;
  }

  .header-cta .btn-primary {
    padding: 8px 14px;
    font-size: 0.75rem;
  }
}

/* Компенсация высоты админ-бара */
.admin-bar #main-content {
  padding-top: calc(72px + 32px);
}
@media screen and (max-width: 782px) {
  .admin-bar #main-content {
    padding-top: calc(72px + 46px);
  }
}

/* ===========================
   SIDEBAR WIDGETS
=========================== */
.sidebar-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 96px;
}

/* Казино CTA виджет */
.widget-casino-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(0,30,50,0.9), rgba(0,10,25,0.9));
  border-color: rgba(255,183,0,0.25);
}

.widget-casino-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
}

.widget-casino-title {
  font-size: 1rem !important;
  margin-bottom: 8px !important;
  color: var(--text-primary);
}

.widget-casino-bonus {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.widget-casino-cta .btn {
  width: 100%;
  justify-content: center;
}

/* Когда виджет заполнен через админку */
.widget-casino-cta .widget-title {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

/* Быстрая навигация */
.widget-quicknav-title {
  font-family: var(--font-display) !important;
  font-size: 0.75rem !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-blue) !important;
  margin-bottom: 16px !important;
}

.quicknav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quicknav-list a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.quicknav-list a:hover { color: var(--accent-blue); }

/* Последние записи */
.widget-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 16px;
}

.recent-posts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.recent-posts-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.recent-posts-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.recent-posts-link {
  font-size: 0.87rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.4;
  transition: color var(--transition);
}

.recent-posts-link:hover { color: var(--accent-blue); }

.recent-posts-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Стандартные WP виджеты в стиле темы */
.widget { padding: 0; }
.widget select { 
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  padding: 10px 14px;
  font-family: var(--font-body);
}

.widget ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.widget ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.widget ul li a:hover { color: var(--accent-blue); }

.widget_search .search-form {
  display: flex;
  gap: 8px;
}

.widget_search input[type="search"] {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--transition);
}

.widget_search input[type="search"]:focus {
  border-color: var(--accent-blue);
}

.widget_search input[type="submit"] {
  background: rgba(0,212,255,0.1);
  border: 1px solid var(--accent-blue);
  border-radius: var(--radius);
  color: var(--accent-blue);
  padding: 10px 16px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all var(--transition);
}

.widget_search input[type="submit"]:hover {
  background: rgba(0,212,255,0.2);
}

/* ===========================
   LOGO MOBILE FIX
=========================== */
@media (max-width: 480px) {
  /* Убираем display:none, просто уменьшаем */
  .logo-text {
    display: block;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
  }

  .logo-plane {
    font-size: 20px;
  }

  .header-cta .btn-primary {
    padding: 8px 12px;
    font-size: 0.72rem;
  }

  .header-inner {
    gap: 8px;
  }
}

/* ===========================
   SIDEBAR WIDGETS
=========================== */
.sidebar-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 96px;
}

/* Казино CTA */
.sidebar-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(0,30,50,0.9), rgba(0,10,25,0.9));
  border-color: rgba(255,183,0,0.25);
}
.sidebar-cta__icon { font-size: 2.2rem; display: block; margin-bottom: 12px; }
.sidebar-cta__title { font-size: 1rem; margin-bottom: 6px; }
.sidebar-cta__sub { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 18px; }
.sidebar-cta__btn { width: 100%; justify-content: center; }

/* Виджет казино из админки */
.widget-casino-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(0,30,50,0.9), rgba(0,10,25,0.9));
  border-color: rgba(255,183,0,0.25);
}
.widget-casino-title {
  font-size: 1rem;
  font-family: var(--font-display);
  color: var(--text-primary);
  margin-bottom: 8px;
}

/* Быстрая навигация */
.sidebar-quicknav__title,
.widget-quicknav-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 16px;
}
.sidebar-quicknav__list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sidebar-quicknav__list a {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}
.sidebar-quicknav__list a:hover { color: var(--accent-blue); }

/* Виджет навигации из админки */
.widget-quicknav .widget-quicknav-title { margin-bottom: 16px; }
.widget-quicknav ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.widget-quicknav ul a { font-size: 0.88rem; color: var(--text-muted); transition: color var(--transition); }
.widget-quicknav ul a:hover { color: var(--accent-blue); }

/* Последние статьи */
.sidebar-recent__title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 16px;
}
.sidebar-recent__list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.sidebar-recent__list li {
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sidebar-recent__list li:last-child { border-bottom: none; }
.sidebar-recent__list a {
  font-size: 0.87rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.4;
  transition: color var(--transition);
}
.sidebar-recent__list a:hover { color: var(--accent-blue); }
.sidebar-recent__list span { font-size: 0.75rem; color: var(--text-muted); }

/* Виджет заголовок (общий) */
.widget-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 16px;
}

/* ===========================
   ЛОГОТИП — мобилка
=========================== */
@media (max-width: 480px) {
  /* Убираем display:none — просто уменьшаем */
  .logo-text {
    display: block;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
  }
  .logo-plane { font-size: 22px; }
  .header-cta .btn-primary { padding: 8px 12px; font-size: 0.72rem; }
}

/* ===========================
   МОБИЛЬНЫЙ СЧЁТЧИК МНОЖИТЕЛЯ
=========================== */
.hero-multiplier-mobile {
  display: none;
  margin: 28px auto 0;
  justify-content: center;
}

.hero-multiplier-mobile .multiplier-display {
  width: 160px;
  height: 160px;
}

.hero-multiplier-mobile .multiplier-number {
  font-size: 2.4rem;
}

@media (max-width: 1024px) {
  /* Десктопный прячем, мобильный показываем */
  .hero-multiplier { display: none; }
  .hero-multiplier-mobile { display: flex; }
}

@media (min-width: 1025px) {
  .hero-multiplier-mobile { display: none; }
}
/* Таблица сравнения казино */
.table-wrap {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    min-width: 560px;
}

.compare-table th {
    background: #1a2332;
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.compare-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    color: #e0e0e0;
}

.compare-table tbody tr:nth-child(odd) {
    background: rgba(255,255,255,0.03);
}

.compare-table tbody tr:hover {
    background: rgba(255,255,255,0.07);
    transition: background 0.2s;
}

.compare-table tbody tr:first-child td {
    color: #ffd700;
    font-weight: 600;
}

@media (max-width: 600px) {
    .compare-table th,
    .compare-table td {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}
