/* ============================================
   FUSSBALL-SERIEN.COM - Sportwetten Portal
   Modern, SEO-optimized CSS
   ============================================ */

/* --- CSS Variables --- */
:root {
  --primary: #1a3a5c;
  --primary-dark: #0f2440;
  --primary-light: #2a5a8c;
  --accent: #e63946;
  --accent-hover: #c1121f;
  --gold: #f4a261;
  --gold-dark: #e76f51;
  --green: #2d6a4f;
  --green-light: #40916c;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --bg-dark: #1a1a2e;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --text-light: #ffffff;
  --border: #dee2e6;
  --border-light: #e9ecef;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-xl: 0 12px 40px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: all 0.3s ease;
  --font-main: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  min-height: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-dark);
  margin-bottom: 0.75em;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.75rem; border-bottom: 3px solid var(--accent); padding-bottom: 0.5rem; margin-top: 2rem; }
h3 { font-size: 1.35rem; color: var(--primary); margin-top: 1.5rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }

ul, ol { margin-bottom: 1rem; padding-left: 1.5rem; }
li { margin-bottom: 0.35rem; }

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

/* --- Top Bar --- */
.top-bar {
  background: var(--primary-dark);
  color: var(--text-light);
  font-size: 0.8rem;
  padding: 6px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a { color: var(--gold); }
.top-bar a:hover { color: #fff; }

.age-badge {
  background: var(--accent);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.75rem;
}

/* --- Header / Navigation --- */
.site-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e5e7eb;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  min-height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 6px 0;
}

.logo img {
  height: 72px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(26,58,92,0.25));
  transition: transform 0.2s ease, filter 0.2s ease;
}

.logo:hover img {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 12px rgba(26,58,92,0.35));
}

.logo span.accent { display: none; }

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav > li {
  position: relative;
  margin: 0;
}

.main-nav > li > a {
  display: block;
  padding: 20px 16px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  white-space: nowrap;
}

.main-nav > li > a:hover,
.main-nav > li.active > a {
  color: var(--accent);
  background: rgba(26,58,92,0.04);
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 280px;
  box-shadow: var(--shadow-xl);
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 999;
  max-height: 500px;
  overflow-y: auto;
  list-style: none;
  padding: 8px 0;
}

.dropdown-menu li { margin: 0; }

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--accent);
  padding-left: 24px;
}

.dropdown-menu .dropdown-header {
  padding: 8px 20px 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

li:hover > .dropdown-menu { display: block; }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 10px;
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: #fff;
  padding: 40px 0 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 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='%23ffffff' fill-opacity='0.03'%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");
  opacity: 0.5;
}

.hero > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  flex: 1;
  padding-top: 20px;
}

/* #1 Pick Card */
.hero-pick {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 340px;
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border: 2px solid var(--gold);
  border-radius: 18px;
  padding: 28px 32px;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 32px rgba(244,162,97,0.25), 0 0 0 1px rgba(244,162,97,0.1), inset 0 1px 0 rgba(255,255,255,0.06);
  animation: pickFloat 3s ease-in-out infinite;
  overflow: hidden;
}

.hero-pick::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(244,162,97,0.08) 25%, transparent 50%, rgba(244,162,97,0.05) 75%, transparent 100%);
  animation: pickShine 6s linear infinite;
  pointer-events: none;
}

@keyframes pickFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes pickShine {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-pick-badge {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
  color: #1a1a2e;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 16px rgba(244,162,97,0.45);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 3px 16px rgba(244,162,97,0.45); }
  50% { box-shadow: 0 3px 24px rgba(244,162,97,0.7), 0 0 0 4px rgba(244,162,97,0.15); }
}

.hero-pick-logo {
  position: relative;
  width: 95px;
  height: 95px;
  margin: 0 auto 16px;
  background: #fff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25), 0 0 0 3px rgba(244,162,97,0.15);
}

.hero-pick-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.hero-pick-name {
  position: relative;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 3px;
}

.hero-pick-subtitle {
  position: relative;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
  font-style: italic;
}

.hero-pick-bonus {
  position: relative;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 16px;
  text-shadow: 0 1px 8px rgba(244,162,97,0.3);
}

.hero-pick-stats {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.75rem;
}

.hero-pick-stat {
  text-align: center;
  flex: 1;
  padding: 8px 4px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-pick-stat strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}

.hero-pick-stat span {
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  font-size: 0.6rem;
  letter-spacing: 0.5px;
}

.hero-pick-cta {
  position: relative;
  display: block;
  width: 100%;
  padding: 15px 0;
  background: linear-gradient(135deg, #2d6a4f 0%, #40916c 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(45,106,79,0.4);
  animation: ctaGlow 2.5s ease-in-out infinite;
}

.hero-pick-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(45,106,79,0.6);
  color: #fff;
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 4px 15px rgba(45,106,79,0.4); }
  50% { box-shadow: 0 4px 25px rgba(45,106,79,0.65), 0 0 0 3px rgba(64,145,108,0.2); }
}

.hero-pick-disclaimer {
  position: relative;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.35);
  margin-top: 12px;
}

@media (max-width: 900px) {
  .hero > .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-pick {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .hero-pick {
    max-width: 100%;
  }
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero h1 span { color: var(--gold); }

.hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  max-width: 650px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-author {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  opacity: 0.85;
}

.hero-author span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-author .author-avatar {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.4);
  font-size: 0;
  color: transparent;
  flex-shrink: 0;
  overflow: hidden;
  object-fit: cover;
}

.hero-author .author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hero-author a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-author a:hover {
  color: #fff;
}

.hero-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
}

/* --- CTA Buttons --- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230,57,70,0.4);
}

.btn-secondary {
  background: var(--gold);
  color: var(--primary-dark);
}
.btn-secondary:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
}

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

.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-green:hover {
  background: var(--green-light);
  color: #fff;
  transform: translateY(-2px);
}

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

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

/* --- Operator Cards / Table --- */
.operator-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.operator-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.operator-card.featured {
  border: 2px solid var(--gold);
  position: relative;
}

.operator-card.featured::before {
  content: 'Top Empfehlung';
  position: absolute;
  top: 0; right: 20px;
  background: var(--gold);
  color: var(--primary-dark);
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 2;
}

.operator-inner {
  display: grid;
  grid-template-columns: 180px 1fr 200px 160px;
  align-items: center;
  padding: 20px 24px;
  gap: 20px;
}

.operator-rank {
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: #fff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.85rem;
}

.operator-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.operator-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
}

.operator-logo img {
  max-width: 140px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.operator-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--gold);
  font-size: 0.9rem;
}

.operator-rating .stars { color: var(--gold); }
.operator-rating .score { color: var(--text-dark); font-weight: 700; }

.operator-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.operator-info h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--primary);
}

.operator-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.operator-features li {
  background: var(--bg-light);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

.operator-bonus {
  text-align: center;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: var(--radius);
  text-decoration: none;
  display: block;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.operator-bonus:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(45,106,79,0.35);
  background: linear-gradient(135deg, var(--green-light), var(--green));
}

.operator-bonus .bonus-amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  display: block;
}

.operator-bonus .bonus-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  display: block;
}

.operator-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.operator-cta .review-link {
  font-size: 0.85rem;
  color: var(--primary-light);
  font-weight: 600;
}

/* --- Section Styles --- */
.section {
  padding: 20px 0;
}

.section-alt {
  background: #fff;
}

.section-dark {
  background: var(--primary-dark);
  color: #fff;
}

.section-dark h2 { color: #fff; border-bottom-color: var(--gold); }
.section-dark h3 { color: var(--gold); }

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  display: inline-block;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0.5rem auto 0;
}

/* --- Content Cards Grid --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
  color: #fff;
}

.card h3 {
  margin-top: 0;
  font-size: 1.15rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* --- Info Box / Callout --- */
.info-box {
  background: linear-gradient(135deg, #e8f4f8, #f0f7ff);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.info-box.warning {
  background: linear-gradient(135deg, #fff3cd, #ffeeba);
  border-left-color: var(--gold-dark);
}

.info-box.success {
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  border-left-color: var(--green);
}

.info-box.danger {
  background: linear-gradient(135deg, #f8d7da, #f5c6cb);
  border-left-color: var(--accent);
}

.info-box h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.info-box p:last-child { margin-bottom: 0; }

/* --- Pros/Cons Box --- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}

.pros, .cons {
  padding: 20px;
  border-radius: var(--radius);
}

.pros {
  background: #d4edda;
  border: 1px solid #c3e6cb;
}

.cons {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
}

.pros h4 { color: var(--green); }
.cons h4 { color: var(--accent); }

.pros ul, .cons ul {
  list-style: none;
  padding: 0;
}

.pros li::before {
  content: '✓ ';
  color: var(--green);
  font-weight: 700;
}

.cons li::before {
  content: '✗ ';
  color: var(--accent);
  font-weight: 700;
}

/* --- Table Styles --- */
.table-responsive {
  overflow-x: auto;
  margin: 24px 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.data-table th {
  background: var(--primary);
  color: #fff;
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.88rem;
}

.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
}

.data-table tr:hover td {
  background: var(--bg-light);
}

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

/* --- FAQ Accordion --- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  background: var(--bg-light);
  padding: 16px 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover { background: var(--border-light); }

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  transition: var(--transition);
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  padding: 16px 20px;
  max-height: 500px;
}

/* --- TOC --- */
.toc {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 24px 0;
}

.toc h4 {
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--primary);
}

.toc ol {
  padding-left: 1.2rem;
}

.toc li {
  margin-bottom: 6px;
}

.toc a {
  color: var(--primary-light);
  font-size: 0.92rem;
}

.toc a:hover {
  color: var(--accent);
}

/* --- Author Box (EEAT) --- */
.author-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 30px 0;
  border: 1px solid var(--border);
}

.author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.author-info h4 {
  margin-bottom: 4px;
}

.author-info .author-title {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- Author Profile Cards --- */
.author-profiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}
.author-profile {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
}
.author-profile:hover {
  box-shadow: var(--shadow-lg);
}
.author-profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 24px 16px;
  background: linear-gradient(135deg, #f8fafc, #f0f4f8);
  border-bottom: 1px solid var(--border-light);
}
.author-profile-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  flex-shrink: 0;
}
.author-profile-name {
  margin: 0;
  font-size: 1.2rem;
  color: var(--primary);
}
.author-profile-role {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.author-profile-body {
  padding: 20px 24px;
}
.author-profile-body p {
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.65;
  margin: 0 0 14px 0;
}
.author-profile-body p:last-child {
  margin-bottom: 0;
}
.author-profile-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.author-profile-expertise span {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}
.author-profile-stats {
  display: flex;
  gap: 20px;
  padding: 14px 24px;
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
}
.author-profile-stat {
  text-align: center;
}
.author-profile-stat strong {
  display: block;
  font-size: 1.1rem;
  color: var(--primary);
}
.author-profile-stat span {
  font-size: 0.75rem;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .author-profiles { grid-template-columns: 1fr; }
  .author-profile-header { flex-direction: column; text-align: center; }
  .author-profile-stats { justify-content: center; }
}

/* --- Last Updated Badge --- */
.last-updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* --- Breadcrumb --- */
.hero-content > .breadcrumb {
  position: absolute;
  top: -30px;
  left: 0;
  padding: 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

.breadcrumb {
  padding: 0 0 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin: 0 4px; }
.breadcrumb strong { color: rgba(255,255,255,0.9); font-weight: 500; }

/* --- Sidebar Widget --- */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  align-items: start;
}

.content-main {
  min-width: 0;
}

.content-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Sidebar Card Base */
.sidebar-card {
  border-radius: 14px;
  padding: 22px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.sidebar-card:nth-child(1) {
  background: linear-gradient(160deg, #0f1b2d 0%, #162338 60%, #1a3050 100%);
  border: 1px solid rgba(244,162,97,0.15);
}

.sidebar-card:nth-child(2) {
  background: linear-gradient(160deg, #1a3a5c 0%, #2a5a8c 100%);
  border: 1px solid rgba(255,255,255,0.1);
}

.sidebar-card:nth-child(3) {
  background: linear-gradient(160deg, #2d6a4f 0%, #40916c 100%);
  border: 1px solid rgba(255,255,255,0.12);
}

.sidebar-card-title {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Top Picks */
.sidebar-pick {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}

.sidebar-pick:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-pick-rank {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.sidebar-pick-rank.rank-1 { background: linear-gradient(135deg, #f4a261, #e76f51); color: #1a1a2e; }
.sidebar-pick-rank.rank-2 { background: rgba(255,255,255,0.12); color: #fff; }
.sidebar-pick-rank.rank-3 { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }

.sidebar-pick-logo {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 10px;
  padding: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-pick-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.sidebar-pick-info {
  flex: 1;
  min-width: 0;
}

.sidebar-pick-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.sidebar-pick-bonus {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.sidebar-pick-cta {
  font-size: 0.68rem;
  font-weight: 800;
  color: #1a1a2e;
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
  padding: 6px 14px;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(244,162,97,0.3);
  animation: sidebarCtaPulse 2.5s ease-in-out infinite;
  margin-left: auto;
  align-self: flex-end;
}

.sidebar-pick-cta:hover {
  color: #1a1a2e;
  transform: translateY(-1px) scale(1.05);
  box-shadow: 0 4px 14px rgba(244,162,97,0.5);
}

@keyframes sidebarCtaPulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(244,162,97,0.3); }
  50% { box-shadow: 0 2px 14px rgba(244,162,97,0.55), 0 0 0 2px rgba(244,162,97,0.12); }
}

/* Quick Stats */
.sidebar-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.sidebar-stat {
  text-align: center;
  padding: 12px 6px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
}

.sidebar-stat-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
}

.sidebar-stat-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* Trust Signals */
.sidebar-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
}

.sidebar-trust-item:last-child {
  padding-bottom: 0;
}

.sidebar-trust-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.sidebar-trust-icon.green { background: rgba(45,106,79,0.2); color: #40916c; }
.sidebar-trust-icon.blue { background: rgba(42,90,140,0.2); color: #5b9bd5; }
.sidebar-trust-icon.gold { background: rgba(244,162,97,0.15); color: var(--gold); }
.sidebar-trust-icon.red { background: rgba(230,57,70,0.15); color: #e63946; }

@media (max-width: 1024px) {
  .content-with-sidebar {
    grid-template-columns: 1fr;
  }
  .content-sidebar {
    position: relative;
    top: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* --- Footer --- */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 50px 0 0;
}

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

.footer-about h3,
.footer-col h4 {
  color: #fff;
  margin-bottom: 16px;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li { margin-bottom: 8px; }

.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
}

.footer-responsible {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 20px;
  font-size: 0.82rem;
  text-align: center;
}

.footer-responsible a { color: var(--gold); }

/* --- Review Page Specifics --- */
.review-header {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--border);
}

.review-logo {
  width: 120px;
  height: 120px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
  border: 2px solid var(--border);
}

.review-summary {
  flex: 1;
}

.review-summary h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.review-quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.quick-fact {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quick-fact .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quick-fact .value {
  font-weight: 700;
  color: var(--primary);
}

/* --- Rating Stars --- */
.stars {
  color: var(--gold);
  letter-spacing: 2px;
}

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.comparison-table th {
  background: var(--primary);
  color: #fff;
  padding: 12px;
  font-size: 0.88rem;
}

.comparison-table td {
  padding: 12px;
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.check { color: var(--green); font-weight: 700; }
.cross { color: var(--accent); font-weight: 700; }

/* --- Step Guide --- */
.step-guide {
  counter-reset: step;
}

.step {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

/* --- Payment Icons --- */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.payment-item {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}

/* --- Sticky Sidebar TOC --- */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}

.sidebar-toc {
  position: sticky;
  top: 80px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
}

.sidebar-toc h4 {
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.sidebar-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-toc li {
  margin-bottom: 6px;
}

.sidebar-toc a {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: block;
  padding: 4px 0;
  border-left: 2px solid transparent;
  padding-left: 10px;
}

.sidebar-toc a:hover,
.sidebar-toc a.active {
  color: var(--primary);
  border-left-color: var(--accent);
}

/* --- Bonus Box --- */
.bonus-highlight {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  margin: 30px 0;
}

.bonus-highlight .bonus-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.bonus-highlight .bonus-desc {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .content-with-sidebar {
    grid-template-columns: 1fr;
  }
  .sidebar-toc { display: none; }
  .operator-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  .hero { padding: 30px 0 15px; }
  .hero h1 { font-size: 2rem; }

  .main-nav {
    display: none;
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 10px 0;
    border-top: 1px solid #e5e7eb;
  }

  .main-nav.open { display: flex; }

  .main-nav > li > a {
    padding: 14px 20px;
    color: var(--primary);
    border-bottom: 1px solid #e5e7eb;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: #f8f9fa;
    display: none;
    border-radius: 0;
  }

  li.open > .dropdown-menu { display: block; }

  .dropdown-menu a {
    color: var(--text-dark);
    padding-left: 40px;
    border-bottom-color: #e5e7eb;
  }

  .menu-toggle { display: block; }

  .operator-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .review-header {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero-badges {
    justify-content: center;
    gap: 8px;
  }
  .hero-badge {
    padding: 5px 10px;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .container { padding: 0 15px; }
  .hero h1 { font-size: 1.6rem; }
  .hero-badges {
    gap: 6px;
  }
  .hero-badge {
    padding: 4px 9px;
    font-size: 0.65rem;
  }
  .operator-bonus .bonus-amount { font-size: 1.2rem; }
}

/* --- Mini Reviews --- */
.mini-review {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.mini-review:hover {
  box-shadow: var(--shadow-lg);
}
.mini-review:first-child {
  border: 2px solid var(--gold);
}
.mini-review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: linear-gradient(135deg, #f8fafc, #f0f4f8);
  border-bottom: 1px solid var(--border-light);
}
.mini-review-rank {
  width: 34px;
  height: 34px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.mini-review:first-child .mini-review-rank {
  background: var(--gold);
  color: var(--primary-dark);
}
.mini-review-logo {
  max-width: 140px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.mini-review-title {
  flex: 1;
  min-width: 0;
}
.mini-review-title h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.mini-review-score {
  background: var(--green);
  color: #fff;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}
.mini-review-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}
.mini-review-bonus {
  text-align: center;
  flex-shrink: 0;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: var(--radius);
  text-decoration: none;
  display: block;
  cursor: pointer;
  transition: var(--transition);
}
.mini-review-bonus:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(45,106,79,0.35);
  background: linear-gradient(135deg, var(--green-light), var(--green));
}
.mini-review-bonus .bonus-amount {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  display: block;
}
.mini-review-bonus .bonus-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.85);
  display: block;
}
.mini-review-body {
  padding: 18px 24px;
}
.mini-review-body > p {
  margin: 0 0 14px 0;
  color: var(--text-dark);
  line-height: 1.65;
  font-size: 0.94rem;
}
.mini-review-proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}
.mini-review-proscons h4 {
  margin: 0 0 6px 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mini-review-pros {
  background: #f0faf4;
  border: 1px solid #c8e6d6;
  border-radius: var(--radius);
  padding: 14px 16px;
}
.mini-review-cons {
  background: #fef2f2;
  border: 1px solid #f5c6c6;
  border-radius: var(--radius);
  padding: 14px 16px;
}
.mini-review-pros h4 { color: var(--green); }
.mini-review-cons h4 { color: var(--accent); }
.mini-review-proscons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mini-review-proscons li {
  padding: 4px 0;
  font-size: 0.86rem;
  color: var(--text-dark);
  line-height: 1.5;
}
.mini-review-pros li::before {
  content: '✓ ';
  color: var(--green);
  font-weight: 700;
}
.mini-review-cons li::before {
  content: '✗ ';
  color: var(--accent);
  font-weight: 700;
}
.mini-review-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--text-muted);
}
.mini-review-stats span {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 6px 12px;
  display: inline-block;
}
.mini-review-stats strong {
  color: var(--text-dark);
}
.mini-review-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #f8fafc, #f0f4f8);
  border-top: 1px solid var(--border-light);
}
.mini-review-footer .review-link {
  font-size: 0.88rem;
  color: var(--primary-light);
  font-weight: 600;
}
@media (max-width: 768px) {
  .mini-review-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 18px 16px;
  }
  .mini-review-title { text-align: center; }
  .mini-review-title h3 { justify-content: center; }
  .mini-review-bonus { width: 100%; }
  .mini-review-body { padding: 14px 16px; }
  .mini-review-proscons { grid-template-columns: 1fr; gap: 10px; }
  .mini-review-stats { gap: 8px; }
  .mini-review-footer { padding: 12px 16px; flex-wrap: wrap; justify-content: center; }
}

/* --- Utility Classes --- */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.fw-bold { font-weight: 700; }
.fs-sm { font-size: 0.88rem; }
.d-flex { display: flex; }
.gap-2 { gap: 1rem; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
