@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Exo+2:wght@300;400;500;600;700;800&display=swap');

/*
 * Base styles. All colors are driven by the variables below.
 * The active palette in var.css (loaded after this file) overrides them.
 * To re-skin the whole site, replace var.css with any file from /palettes.
 */
:root {
  --main-background: #0a0e1a;
  --footer-header-bg: #080c16;
  --header-bg: rgba(8, 12, 22, 0.92);
  --brand-color: #f0c040;
  --brand-hover: #ffd060;
  --brand-contrast: #0a0e1a;
  --text: #e8eaf0;
  --text-muted: rgba(232, 234, 240, 0.85);
  --text-faint: rgba(232, 234, 240, 0.6);
  --accent-glow: rgba(240, 192, 64, 0.35);
  --accent-glow-strong: rgba(240, 192, 64, 0.65);
  --card-bg: rgba(255, 255, 255, 0.04);
  --border-subtle: rgba(240, 192, 64, 0.18);
  --gradient-hero: linear-gradient(135deg, #0a0e1a 0%, #111827 50%, #0d1628 100%);
  --glow-primary: rgba(240, 192, 64, 0.06);
  --glow-secondary: rgba(80, 120, 255, 0.07);
}

body {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 400;
  background: var(--main-background);
  color: var(--text);
  background-image:
    radial-gradient(ellipse at 20% 20%, var(--glow-primary) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, var(--glow-secondary) 0%, transparent 60%);
  background-attachment: fixed;
}

a:hover {
  text-decoration: none;
}

::selection { color: var(--brand-contrast); background: var(--brand-color); }
::-webkit-selection { color: var(--brand-contrast); background: var(--brand-color); }
::-moz-selection { color: var(--brand-contrast); background: var(--brand-color); }

ul {
  padding: 0; margin: 0; list-style-type: none;
}

.header-area {
  background: var(--header-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-subtle), 0 4px 40px rgba(0,0,0,0.4);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.6s ease both;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.inner_header_part {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_left { width: 20%; display: flex; align-items: center; }
.inner_header_ { width: 60%; }
.header_right { width: 20%; }

.header_logo img {
  width: 100%;
  max-width: 150px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 8px var(--accent-glow));
  transition: filter 0.3s;
}
.header_logo img:hover {
  filter: drop-shadow(0 0 16px var(--accent-glow-strong));
}

.header_nav ul {
  padding: 0; margin: 0; list-style-type: none;
  text-align: center;
}
.header_nav ul li { display: inline-block; }
.header_nav ul li a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.25s, text-shadow 0.25s;
  color: var(--text-muted);
  font-size: 18px;
}
.header_nav ul li a:hover {
  color: var(--brand-color);
  text-shadow: 0 0 12px var(--accent-glow);
}

.header_bnt a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  color: var(--brand-contrast);
  font-size: 16px;
  background: var(--brand-color) !important;
  width: 176px;
  height: 52px;
  display: block;
  line-height: 52px;
  text-align: center;
  border-radius: 4px;
  margin: auto;
  margin-right: 0;
  box-shadow: 0 0 20px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.3);
}
.header_bnt a:hover {
  background: var(--brand-hover) !important;
  box-shadow: 0 0 35px var(--accent-glow-strong);
  transform: translateY(-1px);
  color: var(--brand-contrast);
}

.mune_icon_ { display: none; }
.mune_icon_ img { width: 40px; height: 40px; }
.main_header_nav_img { display: none; }
.main_header_nav_img img { max-width: 100%; display: block; margin: auto; }
.header_bnts1 { display: none; }

.mobile_hero-area {
  background: transparent;
  padding: 0;
}

.hero-area {
  background: var(--gradient-hero);
  padding: 0;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--glow-primary) 1px, transparent 1px),
    linear-gradient(90deg, var(--glow-primary) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPulse 8s linear infinite;
  pointer-events: none;
}

@keyframes gridPulse {
  0%   { opacity: 0.5; }
  50%  { opacity: 1; }
  100% { opacity: 0.5; }
}

.hero-area::after {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--glow-primary) 0%, transparent 70%);
  pointer-events: none;
  animation: orbFloat 6s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-20px); }
}

.hero_right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px 60px;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.8s ease 0.2s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero_right h1 {
  font-family: 'Rajdhani', sans-serif;
  color: #ffffff;
  text-align: center;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  padding-bottom: 28px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
  letter-spacing: -0.5px;
}

.hero_right a {
  color: var(--brand-contrast);
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  width: 240px;
  height: 54px;
  border-radius: 4px;
  background: var(--brand-color);
  display: block;
  margin: auto;
  line-height: 54px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px var(--accent-glow), 0 4px 20px rgba(0,0,0,0.3);
  position: relative;
}
.hero_right a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.2) 0%, transparent 100%);
  border-radius: 4px;
  pointer-events: none;
}
.hero_right a:hover {
  background: var(--brand-hover);
  box-shadow: 0 0 50px var(--accent-glow-strong), 0 8px 30px rgba(0,0,0,0.4);
  transform: translateY(-3px) scale(1.02);
  color: var(--brand-contrast);
}

.welcome-offer {
  font-family: 'Exo 2', sans-serif;
  margin: 28px 0 0;
  padding: 20px 28px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.welcome-offer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-color), transparent);
}
.welcome-label {
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.welcome-main {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--brand-color);
  line-height: 1.2;
  display: block;
  margin-bottom: 14px;
  text-shadow: 0 0 20px var(--accent-glow);
}
.welcome-bonus-btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--brand-color);
  color: var(--brand-contrast) !important;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 0 16px var(--accent-glow);
}
.welcome-bonus-btn:hover {
  background: var(--brand-hover);
  box-shadow: 0 0 28px var(--accent-glow-strong);
  transform: translateY(-2px);
  color: var(--brand-contrast) !important;
}

.inner-area {
  padding: 60px 0 80px;
}

.main_text_box {
  padding-top: 20px;
}

.main_text_box h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-color);
  padding-top: 32px;
  padding-bottom: 12px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.main_text_box h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  padding-top: 24px;
  padding-bottom: 8px;
  opacity: 0.9;
}

.main_text_box p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  padding-top: 10px;
}

.main_text_box ul {
  list-style: none;
  padding: 12px 0 0 0;
}

.main_text_box ul li {
  position: relative;
  padding-left: 20px;
  padding-bottom: 8px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.main_text_box ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--brand-color);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 32px;
  font-size: 15px;
}

table th {
  background: var(--footer-header-bg);
  color: var(--brand-color);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.07);
  text-align: left;
}

table td {
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  background: rgba(255,255,255,0.02);
  vertical-align: top;
  line-height: 1.5;
}

table tr:nth-child(even) td {
  background: rgba(255,255,255,0.04);
}

table tr:hover td {
  background: var(--glow-primary);
}

.footer-area {
  background: var(--footer-header-bg);
  padding: 48px 0 0;
  border-top: 1px solid var(--border-subtle);
}

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

.footer-navigation ul li {
  margin-bottom: 10px;
}

.footer-navigation ul li a {
  color: var(--text-faint);
  font-size: 14px;
  transition: color 0.2s, text-shadow 0.2s;
}

.footer-navigation ul li a:hover {
  color: var(--brand-color);
  text-shadow: 0 0 8px var(--accent-glow);
}

/* Language switcher: native <details> dropdown, no JS. List scrolls for dozens of languages. */
.lang-switcher-wrap {
  display: flex;
  justify-content: center;
  padding: 20px 0 4px;
}

.lang-switcher {
  position: relative;
  min-width: 250px;
}

.lang-switcher summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  color: var(--text);
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lang-switcher summary::-webkit-details-marker { display: none; }

.lang-switcher summary::after {
  content: '\25BE';
  color: var(--brand-color);
  font-size: 12px;
  transition: transform 0.2s;
}

.lang-switcher[open] summary::after { transform: rotate(180deg); }

.lang-switcher summary:hover,
.lang-switcher[open] summary {
  border-color: var(--brand-color);
  box-shadow: 0 0 12px var(--accent-glow);
}

.lang-list {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: 320px;
  overflow-y: auto;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.lang-list li a {
  display: block;
  padding: 9px 12px;
  border-radius: 4px;
  color: var(--text-muted);
  font-size: 14px;
  transition: background 0.15s, color 0.15s;
}

.lang-list li a:hover {
  background: var(--glow-primary);
  color: var(--brand-color);
}

.lang-list li a[aria-current="true"] {
  color: var(--brand-color);
  font-weight: 700;
}

.footer_part {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 28px 0 20px;
  margin-top: 20px;
}

.footer_logo img {
  max-width: 130px;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.footer_logo img:hover { opacity: 1; }

.copyright-text p {
  font-size: 13px;
  color: var(--text-faint);
  line-height: 1.6;
  margin-bottom: 6px;
}

.footer-icons-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.3);
  margin: 10px -9999px 20px;
  padding: 24px 9999px;
  border-top: 1px solid rgba(255,255,255,0.05);
  gap: 16px;
}

.footer-svg-icon {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  transition: opacity 0.25s, filter 0.25s;
}

.footer-svg-icon:hover {
  opacity: 1;
  filter: drop-shadow(0 0 8px var(--accent-glow));
}

.footer-svg-icon img,
.footer-svg-icon svg {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-icon-label {
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.3px;
  color: var(--text-faint);
}

/* Sticky bottom bar with Get Bonus CTA */
body {
  padding-bottom: 80px;
}

.sticky-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  background: var(--header-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-subtle);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.4);
  padding: 12px 0;
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-cta-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-color);
  text-shadow: 0 0 16px var(--accent-glow);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-cta-btn {
  flex-shrink: 0;
}

/* ===== Article components (review format) ===== */

.breadcrumb-nav {
  margin-bottom: 8px;
}
.breadcrumb-nav ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 13px;
  color: var(--text-faint);
}
.breadcrumb-nav li:not(:last-child)::after {
  content: '›';
  margin-left: 8px;
  color: var(--brand-color);
}
.breadcrumb-nav a {
  color: var(--text-faint);
  transition: color 0.2s;
}
.breadcrumb-nav a:hover {
  color: var(--brand-color);
}
.breadcrumb-nav li[aria-current] {
  color: var(--text-muted);
}

.last-updated {
  font-size: 12px;
  color: var(--text-faint);
  padding-top: 0 !important;
  margin-bottom: 4px;
}

.verdict-lead {
  font-size: 18px !important;
  line-height: 1.6;
  color: var(--text) !important;
  border-left: 3px solid var(--brand-color);
  padding-left: 16px;
  margin-top: 10px;
}

.pros-cons-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
  margin: 28px 0;
  padding: 20px 24px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
}
.pros-col, .cons-col { flex: 1; }
.score-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-top: 0 !important;
  margin-bottom: 8px;
}
.pc-pros { color: var(--brand-color); }
.pc-cons { color: var(--text-faint); }
.main_text_box .pros-list li::before {
  content: '✓';
  color: var(--brand-color);
}
.main_text_box .cons-list li::before {
  content: '✗';
  color: var(--text-faint);
}
.score-badge {
  font-family: 'Rajdhani', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--brand-color);
  text-shadow: 0 0 24px var(--accent-glow);
  border: 2px solid var(--border-subtle);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1;
}
.score-badge span {
  font-size: 16px;
  color: var(--text-faint);
  font-weight: 600;
}

.cta-block {
  text-align: center;
  margin: 32px 0 12px;
}
.cta-block .welcome-bonus-btn {
  padding: 16px 48px;
  font-size: 16px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 20px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  background: var(--card-bg);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--text-muted);
  opacity: 0.85;
  transition: opacity 0.25s, border-color 0.25s, filter 0.25s;
}
.trust-badge svg {
  flex-shrink: 0;
}
.trust-badge:hover {
  opacity: 1;
  border-color: var(--brand-color);
  filter: drop-shadow(0 0 8px var(--accent-glow));
}

.rg-note {
  font-size: 13px !important;
  color: var(--text-faint) !important;
  border: 1px dashed var(--border-subtle);
  border-radius: 8px;
  padding: 12px 16px;
  background: var(--card-bg);
}

.table-note {
  font-size: 13px !important;
  color: var(--text-faint) !important;
}

.main_text_box h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-color);
  padding-top: 20px;
  padding-bottom: 6px;
}

.main_text_box ol {
  padding-left: 22px;
  margin: 12px 0;
}
.main_text_box ol li {
  padding-bottom: 8px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.to-verify {
  background: rgba(255, 193, 7, 0.16);
  color: #ffc107;
  border: 1px dashed rgba(255, 193, 7, 0.5);
  border-radius: 4px;
  padding: 0 6px;
  font-size: 0.85em;
  white-space: normal;
}

.chart-placeholder {
  margin: 20px 0 32px;
  padding: 40px 24px;
  border: 2px dashed var(--border-subtle);
  border-radius: 8px;
  background: var(--card-bg);
  color: var(--text-faint);
  font-family: monospace;
  font-size: 13px;
  text-align: center;
  line-height: 1.6;
}

.img-placeholder {
  margin: 20px 0 32px;
  padding: 40px 24px;
  border: 2px dashed var(--border-subtle);
  border-radius: 8px;
  background: var(--card-bg);
  text-align: center;
}
.img-token {
  display: block;
  font-family: monospace;
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 8px;
}
.img-placeholder figcaption {
  font-size: 13px;
  color: var(--text-muted);
}

.player-quote {
  margin: 20px 0;
  padding: 16px 20px;
  border-left: 3px solid var(--brand-color);
  background: var(--card-bg);
  border-radius: 0 8px 8px 0;
}
.player-quote p {
  font-size: 14px !important;
  color: var(--text-muted) !important;
  padding-top: 6px !important;
  margin: 0;
  font-style: italic;
}
.player-quote .quote-meta {
  font-style: normal;
  font-size: 12px !important;
  color: var(--text-faint) !important;
  padding-top: 0 !important;
}
.stars {
  color: var(--brand-color);
  letter-spacing: 2px;
  text-shadow: 0 0 8px var(--accent-glow);
}
.verified {
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 0 6px;
  font-size: 11px;
  color: var(--brand-color);
}

.editor-card {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
  padding: 16px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
}
.editor-photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 2px dashed var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
  font-size: 10px;
  color: var(--text-faint);
  text-align: center;
  flex-shrink: 0;
  padding: 6px;
}
.editor-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  padding-top: 0 !important;
  margin: 0;
}
.editor-role {
  font-size: 13px !important;
  color: var(--brand-color) !important;
  padding-top: 2px !important;
  margin: 0;
}
.editor-date {
  font-size: 12px !important;
  color: var(--text-faint) !important;
  padding-top: 2px !important;
  margin: 0;
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .container { padding: 0 30px; }
  .header_nav ul li a { font-size: 16px; }
  .hero_right h1 { font-size: 42px; line-height: 1.15; padding-top: 60px; }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .container { padding: 0 30px; }
  .hero_right h1 { font-size: clamp(20px, 4vw, 34px); line-height: 1.2; padding-bottom: 24px; padding-top: 36px; }
  .hero-area { padding-top: 60px; }
  .inner_header_ { display: none; }
  .header-area { padding: 12px 0; }
  .header_left { width: 80%; }
  .header_right { width: 20%; text-align: right; }
  .header_bnts { display: none; }
  .close1_icon { display: none; }
  .mune_icon_ { display: block; }
  .main_header_nav_img { display: block; }
  .inner_header_ { width: 0%; display: block; }
  .main_header_nav {
    width: 105%; height: 591px; position: absolute;
    left: -9px; z-index: 99999; top: 88px;
    background: var(--main-background);
    padding: 0 16px; padding-top: 64px;
    display: none;
    border-bottom: 1px solid var(--border-subtle);
  }
  .header_nav ul li a {
    color: var(--text); font-size: 24px;
    font-weight: 600; display: block; margin: 28px 0;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 1px; text-transform: uppercase;
  }
  .header_nav ul li { display: block; }
  .header_bnt a {
    background: var(--brand-color) !important;
    color: var(--brand-contrast); font-size: 15px; font-weight: 700;
    width: 100%; height: 54px; line-height: 54px;
    text-align: center; border-radius: 4px;
    display: block; margin: auto; margin-right: 0;
    margin-top: 80px;
  }
}

@media screen and (max-width: 767px) {
  .inner_header_ { display: block; width: 0%; }
  .header-area { padding: 12px 0; }
  .header_left { width: 80%; }
  .header_right { width: 20%; text-align: right; }
  .header_bnts { display: none; }
  .close1_icon { display: none; }
  .mune_icon_ { display: block; }
  .main_header_nav_img { display: block; }
  .main_header_nav {
    width: 105%; height: 591px; position: absolute;
    left: -9px; z-index: 99999; top: 65px;
    background: var(--main-background);
    padding: 0 16px; padding-top: 64px; display: none;
    border-bottom: 1px solid var(--border-subtle);
  }
  .header_nav ul li a {
    color: var(--text);
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    display: block; margin: 28px 0;
  }
  .header_nav ul li { display: block; }
  .header_bnt a {
    background: var(--brand-color) !important;
    color: var(--brand-contrast); font-size: 15px; font-weight: 700;
    width: 100%; height: 54px; line-height: 54px;
    text-align: center; border-radius: 4px;
    display: block; margin: auto; margin-right: 0;
    margin-top: 80px;
  }
  .footer-area { padding: 0 0 34px; }
  .footer_logo img { display: block; margin: auto; margin-bottom: 24px; }
  .container { padding: 0 16px; }
  .main_text_box h2 { font-size: 24px; line-height: 34px; }
  .main_text_box { padding-top: 28px; }
  .main_text_box p { font-size: 15px; padding-top: 14px; }
  .hero-area { padding-top: 40px; }
  .hero_right h1 { font-size: clamp(26px, 6vw, 38px); line-height: 1.2; padding-bottom: 20px; padding-top: 0; }
  .hero_right { padding: 24px 16px 48px; }
  .header_bnts1 { display: block; }
  .footer-navigation { text-align: center; }
  .footer-navigation .col-sm-12 { margin-bottom: 30px; }
  .lang-switcher { min-width: 0; width: 100%; }
  .lang-switcher-wrap { padding: 24px 0 0; }
  .lang-list { max-height: 260px; }
  .footer-icons-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .footer-svg-icon {
    flex: 0 0 calc(33.333% - 20px);
  }
  .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  table { width: 100%; min-width: 700px; }
  body { padding-bottom: 66px; }
  .sticky-cta-bar { padding: 10px 0; }
  .sticky-cta-text { font-size: 13px; letter-spacing: 0.5px; }
  .sticky-cta-btn { padding: 8px 18px; font-size: 12px; }
  .pros-cons-row { flex-direction: column; gap: 16px; padding: 16px; }
  .score-badge { width: 90px; height: 90px; font-size: 34px; }
  .verdict-lead { font-size: 16px !important; }
  .editor-card { flex-direction: column; text-align: center; }
  .cta-block .welcome-bonus-btn { padding: 14px 32px; font-size: 14px; }
}

@media (min-width: 992px) {
  .header_nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0; margin: 0;
  }
  .header_nav li {
    margin: 0 18px;
    position: relative;
    padding-right: 20px;
  }
  .header_nav li:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -15px;
    color: rgba(255,255,255,0.2);
    font-size: 14px;
  }
}

body, .main {
  overflow-x: hidden;
}

/* ===== One-page version: simplified header (logo + single CTA, no nav menu) ===== */
.header_cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header_cta .header_bnt a {
  margin: 0;
}

@media screen and (max-width: 991px) {
  .header_cta .header_bnt a {
    width: auto;
    height: 42px;
    line-height: 42px;
    padding: 0 20px;
    font-size: 13px;
    letter-spacing: 1px;
    margin-top: 0;
    display: inline-block;
  }
}

@media screen and (max-width: 767px) {
  .header_cta { width: auto; }
  .header_left { width: auto; flex: 1; }
}

/* ===== Spec-compliant review elements ===== */
.score-col { display: flex; align-items: center; justify-content: center; flex: 0 0 auto; padding-left: 16px; }
.score-col .score-badge { margin: 0; }
.cta-block { text-align: center; margin: 20px 0; }
.rg-note { font-size: 12px; color: var(--text-faint); text-align: center; margin: 8px 0 24px; }
.table-note { font-size: 12px; color: var(--text-faint); font-style: italic; margin-top: 8px; }
.chart-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
  padding: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
}
.chart-bar-row { display: grid; grid-template-columns: 130px 1fr 48px; align-items: center; gap: 10px; font-size: 13px; }
.chart-bar-label { color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chart-bar { height: 14px; border-radius: 3px; background: linear-gradient(90deg, rgba(0,168,255,0.25), var(--brand-color)); display: block; }
.chart-bar-val { text-align: right; color: var(--text-faint); font-size: 12px; }
.verified { color: #2ecc71; font-weight: 600; }
.stars { color: #f0c040; letter-spacing: 1px; }
.welcome-bonus-btn {
  display: inline-block;
  padding: 14px 34px;
  background: var(--brand-color);
  color: #fff !important;
  border-radius: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  transition: filter .2s ease;
}
.welcome-bonus-btn:hover { filter: brightness(1.08); }
ul.pros-list, ul.cons-list { margin: 0; padding-left: 20px; }
