/* =========================================
   BANZAI CASINO FRANCE — MAIN STYLESHEET
   ========================================= */

:root {
  --red: #e8001c;
  --red-dark: #b50016;
  --red-light: #ff1f38;
  --cream: #fff8f0;
  --dark: #0d0d0f;
  --dark-2: #141418;
  --dark-3: #1e1e24;
  --dark-4: #252530;
  --gray: #6b7280;
  --gray-light: #9ca3af;
  --white: #ffffff;
  --gold: #f5a623;
  --gold-light: #ffd200;
  --green: #10b981;
  --blue: #3b82f6;

  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-head: 'Oswald', 'Inter', sans-serif;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.25);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.4);
  --transition: all 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;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--dark);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--red-light); }
ul { list-style: none; }

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; color: rgba(255,255,255,0.85); }
p:last-child { margin-bottom: 0; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white) !important;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(232,0,28,0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--red-light), var(--red));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232,0,28,0.55);
  color: var(--white) !important;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white) !important;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-xl { padding: 16px 36px; font-size: 1rem; border-radius: 14px; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-cta-header { padding: 10px 22px; font-size: 0.85rem; }

.pulse {
  animation: pulse-anim 2.5s infinite;
}

@keyframes pulse-anim {
  0%, 100% { box-shadow: 0 4px 15px rgba(232,0,28,0.4); }
  50% { box-shadow: 0 4px 30px rgba(232,0,28,0.75); }
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-3);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 20px;
  z-index: 9998;
  display: none;
}

.cookie-banner.show { display: block; }

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-inner p { margin: 0; font-size: 0.85rem; flex: 1; min-width: 200px; }

.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-accept {
  background: var(--red);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
}

.btn-decline {
  background: transparent;
  color: var(--gray-light);
  border: 1px solid var(--gray);
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
}

/* ===== AGE MODAL ===== */
.age-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-modal.hidden { display: none; }

.age-modal-box {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.age-logo {
  width: 80px;
  margin: 0 auto 24px;
  border-radius: 16px;
}

.age-modal-box h2 { color: var(--white); margin-bottom: 16px; font-size: 1.8rem; }
.age-modal-box p { color: rgba(255,255,255,0.75); margin-bottom: 24px; }

.age-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.age-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13,13,15,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,0,28,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}

.logo-wrap { flex-shrink: 0; }

/* ===== TEXT LOGO ===== */
.logo-text {
  display: inline-flex;
  align-items: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: #e8001c;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  text-decoration: none;
  user-select: none;
  gap: 2px;
}

.logo-b {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.logo-b::before {
  content: '';
  display: inline-block;
  width: 0.22em;
  height: 0.65em;
  background: #e8001c;
  clip-path: polygon(30% 0%, 70% 0%, 45% 45%, 75% 45%, 20% 100%, 45% 55%, 15% 55%);
  margin-right: 1px;
  vertical-align: middle;
}

.logo-text-footer {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 14px;
}

.logo-text-fcta {
  font-size: 2.2rem;
  display: block;
  margin: 0 auto 22px;
  text-align: center;
  justify-content: center;
}

.logo-img {
  height: 36px;
  width: auto;
}

.main-nav { flex: 1; }

.main-nav ul {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav ul li a {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: var(--transition);
}

.main-nav ul li a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== NAV CTA (mobile only) ===== */
.btn-nav-cta {
  display: none;
}


.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 28px 0 24px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13,13,15,0.92) 0%, rgba(13,13,15,0.75) 50%, rgba(13,13,15,0.88) 100%),
    url('../images/banner.png') center center / cover no-repeat;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,0,28,0.15);
  border: 1px solid rgba(232,0,28,0.4);
  color: var(--red-light);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.hero-title {
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 800;
}

.hero-title strong, .hero-title em {
  background: linear-gradient(135deg, var(--red), #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}

.hero-features {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.hero-features .fa-check-circle { color: var(--green); }

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.hero-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.hero-visual { position: relative; }

.hero-banner {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero-scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  animation: bounce 2s infinite;
}

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

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  padding: 20px 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-item > span:nth-child(2) {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 96px 0;
}

.section-dark {
  background: var(--dark-2);
}

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

.section-tag {
  display: inline-block;
  background: rgba(232,0,28,0.15);
  border: 1px solid rgba(232,0,28,0.35);
  color: var(--red-light);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.section-header h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.section-intro {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
}

/* ===== TWO COLUMN LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ===== CONTENT BLOCK ===== */
.content-block p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.2rem;
}

.check-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.check-list .fa-check {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ===== RATING CARD ===== */
.rating-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}

.rating-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.rating-score {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}

.rating-score span {
  font-size: 1.8rem;
  color: rgba(255,255,255,0.4);
}

.rating-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 24px;
  display: flex;
  gap: 4px;
  justify-content: center;
}

.rating-breakdown {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.rb-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
}

.rb-item span:first-child {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.rb-item span:last-child {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  min-width: 28px;
}

.rb-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}

.rb-bar div {
  height: 100%;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  border-radius: 3px;
}

/* ===== TABLES ===== */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
}

.table-wrap h3 {
  padding: 20px 24px 16px;
  background: var(--dark-3);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.data-table thead th {
  background: rgba(232,0,28,0.12);
  color: rgba(255,255,255,0.9);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  border-bottom: 1px solid rgba(232,0,28,0.2);
}

.data-table tbody td {
  padding: 12px 16px;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

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

.data-table tbody tr:nth-child(even) td {
  background: rgba(255,255,255,0.02);
}

.highlight-col {
  background: rgba(232,0,28,0.08) !important;
  color: var(--white) !important;
  font-weight: 600;
}

.badge-ok {
  background: rgba(16,185,129,0.15);
  color: var(--green);
  border: 1px solid rgba(16,185,129,0.3);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}

.badge-soon {
  background: rgba(245,166,35,0.15);
  color: var(--gold);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ===== DISCLAIMER BOX ===== */
.disclaimer-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 32px;
}

.disclaimer-box .fa-exclamation-triangle { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.disclaimer-box p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin: 0; }

/* ===== BONUS CARDS ===== */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.bonus-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: var(--transition);
}

.bonus-card:hover {
  border-color: rgba(232,0,28,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(232,0,28,0.15);
}

.bonus-card.featured {
  border-color: rgba(232,0,28,0.4);
  background: linear-gradient(135deg, rgba(232,0,28,0.1), var(--dark-3));
}

.bonus-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--red);
  color: white;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.bonus-icon {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 16px;
}

.bonus-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.bonus-amount {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.bonus-card > p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}

.bonus-terms {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bonus-terms li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.bonus-terms .fa-info-circle { color: var(--blue); font-size: 0.75rem; }

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

.game-cat-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}

.game-cat-card:hover {
  border-color: rgba(232,0,28,0.25);
  transform: translateY(-3px);
}

.gcat-icon {
  width: 56px;
  height: 56px;
  background: rgba(232,0,28,0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--red);
  margin-bottom: 16px;
}

.game-cat-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.game-cat-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.gcat-count {
  font-weight: 700;
  color: var(--red);
  font-size: 0.9rem;
}

/* ===== SCREENSHOT ===== */
.screenshot-wrap {
  margin-bottom: 48px;
  text-align: center;
}

.screenshot-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.08);
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.screenshot-caption {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  font-style: italic;
}

/* ===== LIVE FEATURES ===== */
.live-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.live-feat-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
}

.live-feat-card:hover { border-color: rgba(232,0,28,0.25); }
.live-feat-card i { font-size: 1.5rem; color: var(--red); margin-bottom: 10px; display: block; }
.live-feat-card h4 { color: var(--white); margin-bottom: 6px; font-size: 0.95rem; }
.live-feat-card p { font-size: 0.83rem; color: rgba(255,255,255,0.6); margin: 0; }

/* ===== STEPS ===== */
.steps-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.step-item {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  gap: 20px;
  transition: var(--transition);
}

.step-item:hover { border-color: rgba(232,0,28,0.25); }

.step-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(232,0,28,0.25);
  line-height: 1;
  flex-shrink: 0;
}

.step-content h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* ===== CTA BOX ===== */
.cta-box {
  background: linear-gradient(135deg, rgba(232,0,28,0.15), rgba(232,0,28,0.05));
  border: 1px solid rgba(232,0,28,0.3);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}

.cta-box h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.cta-box p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}

/* ===== PAYMENT GRID ===== */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.pay-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.pay-card:hover {
  border-color: rgba(232,0,28,0.25);
  transform: translateY(-3px);
}

.pay-icon {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}

.pay-card h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 8px; }
.pay-card p { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 12px; }

.pay-tag {
  display: inline-block;
  background: rgba(232,0,28,0.15);
  color: var(--red-light);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* ===== SECURITY GRID ===== */
.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.sec-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.sec-icon {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 16px;
  display: block;
}

.sec-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 10px; }
.sec-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin: 0; }

.responsible-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 32px;
}

.resp-icon {
  width: 56px;
  height: 56px;
  background: rgba(16,185,129,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--green);
  flex-shrink: 0;
}

.resp-content h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.resp-content p { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin: 0; }

/* ===== MOBILE MOCKUP ===== */
.mobile-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.phone-frame {
  width: 280px;
  background: var(--dark-4);
  border: 3px solid rgba(255,255,255,0.1);
  border-radius: 36px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
}

.phone-screen { background: var(--dark-3); border-radius: 24px; padding: 20px; overflow: hidden; }
.phone-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.ph-logo { font-family: var(--font-head); font-weight: 700; color: var(--red); font-size: 1rem; }
.ph-balance { font-weight: 700; color: var(--gold); font-size: 0.9rem; }

.phone-games {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.ph-game {
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
}

.ph-cta {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

/* ===== VIP LEVELS ===== */
.vip-levels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.vip-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.vip-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); }

.vip-card.featured-vip {
  border-color: rgba(245,166,35,0.4);
  background: linear-gradient(135deg, rgba(245,166,35,0.08), var(--dark-3));
}

.vip-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  padding: 3px 14px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.vip-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.vip-badge.bronze { background: rgba(205,127,50,0.2); color: #cd7f32; border: 1px solid rgba(205,127,50,0.4); }
.vip-badge.silver { background: rgba(192,192,192,0.15); color: #c0c0c0; border: 1px solid rgba(192,192,192,0.3); }
.vip-badge.gold { background: rgba(245,166,35,0.15); color: var(--gold); border: 1px solid rgba(245,166,35,0.35); }
.vip-badge.platinum { background: rgba(59,130,246,0.15); color: #93c5fd; border: 1px solid rgba(59,130,246,0.3); }
.vip-badge.diamond { background: rgba(139,92,246,0.15); color: #c4b5fd; border: 1px solid rgba(139,92,246,0.3); }

.vip-card ul {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vip-card ul li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}

.vip-points {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
}

/* ===== TOURNAMENTS ===== */
.tournament-highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.tourn-event {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
}

.tourn-tag {
  display: inline-block;
  background: rgba(232,0,28,0.12);
  color: var(--red-light);
  border: 1px solid rgba(232,0,28,0.25);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tourn-event h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; }
.tourn-prize { font-family: var(--font-head); font-size: 1.2rem; color: var(--gold); margin-bottom: 10px; }
.tourn-event p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin: 0; }

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

.support-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.support-card:hover {
  border-color: rgba(232,0,28,0.25);
  transform: translateY(-3px);
}

.support-icon {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 16px;
  display: block;
}

.support-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 10px; }
.support-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 16px; }

.support-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  color: var(--green);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ===== JACKPOTS ===== */
.jackpot-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.jp-item {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 180px 140px 1fr;
  align-items: center;
  gap: 24px;
}

.jp-name { font-weight: 700; color: var(--white); }
.jp-provider { font-size: 0.82rem; color: rgba(255,255,255,0.45); }

.jp-meter { display: flex; align-items: center; gap: 12px; }
.jp-bar-outer { flex: 1; height: 8px; background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; }
.jp-bar-inner { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 4px; }
.jp-amount { font-family: var(--font-head); font-weight: 700; color: var(--gold); font-size: 1rem; white-space: nowrap; min-width: 120px; text-align: right; }

/* ===== CM 2026 ===== */
.cm-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cm-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cm-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,0,28,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--red);
  flex-shrink: 0;
}

.cm-card h4 { color: var(--white); margin-bottom: 4px; font-size: 0.95rem; }
.cm-card p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin: 0; }

/* ===== CELEBRITIES ===== */
.celeb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.celeb-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}

.celeb-card:hover { border-color: rgba(232,0,28,0.25); transform: translateY(-3px); }

.celeb-avatar {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.celeb-card h4 { color: var(--white); margin-bottom: 6px; }
.celeb-tag { display: inline-block; background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.45); font-size: 0.78rem; padding: 3px 10px; border-radius: 20px; margin-bottom: 12px; }
.celeb-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin: 0; font-style: italic; }

/* ===== SLOTS GRID ===== */
.slots-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.slot-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}

.slot-card:hover { border-color: rgba(232,0,28,0.2); }

.slot-rank {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(232,0,28,0.4);
  min-width: 40px;
}

.slot-info { flex: 1; }
.slot-info h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 2px; }
.slot-info span { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

.slot-meta { display: flex; align-items: center; gap: 10px; }

.rtp {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(16,185,129,0.1);
  padding: 3px 8px;
  border-radius: 6px;
}

.vol {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
}

.vol-high { background: rgba(245,166,35,0.1); color: var(--gold); }
.vol-extreme { background: rgba(232,0,28,0.1); color: var(--red-light); }
.vol-med { background: rgba(59,130,246,0.1); color: #93c5fd; }

/* ===== STRATEGY GRID ===== */
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.strat-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
}

.strat-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(232,0,28,0.12);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
}

.strat-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 10px; }
.strat-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin: 0; }

/* ===== HELPLINES ===== */
.helplines {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.helplines h3 { color: var(--white); margin-bottom: 20px; font-size: 1.1rem; }

.helpline-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.helpline-item:last-child { border-bottom: none; }

.helpline-item i {
  width: 36px;
  height: 36px;
  background: rgba(232,0,28,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.helpline-item strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 2px; }
.helpline-item p { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin: 0; }

/* ===== FAQ ===== */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.faq-item {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.faq-item:hover { border-color: rgba(232,0,28,0.2); }
.faq-item.open { border-color: rgba(232,0,28,0.3); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  gap: 16px;
}

.faq-q span {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

.faq-q i {
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-q i { transform: rotate(180deg); }

.faq-a {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  display: none;
  line-height: 1.7;
}

.faq-item.open .faq-a { display: block; }

/* ===== NEWS ===== */
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.news-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}

.news-card:hover { border-color: rgba(232,0,28,0.2); transform: translateY(-3px); }

.news-card.featured-news {
  grid-column: 1 / -1;
  border-color: rgba(232,0,28,0.2);
  background: linear-gradient(135deg, rgba(232,0,28,0.07), var(--dark-3));
}

.news-tag {
  display: inline-block;
  background: rgba(232,0,28,0.12);
  color: var(--red-light);
  border: 1px solid rgba(232,0,28,0.25);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.news-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 10px; }
.news-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-bottom: 16px; }
.news-meta { font-size: 0.78rem; color: rgba(255,255,255,0.35); display: flex; align-items: center; gap: 6px; }

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, rgba(232,0,28,0.18), var(--dark-2));
  border-top: 1px solid rgba(232,0,28,0.2);
  border-bottom: 1px solid rgba(232,0,28,0.2);
  padding: 80px 0;
}

.fcta-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.fcta-logo {
  height: 48px;
  width: auto;
  margin: 0 auto 24px;
  mix-blend-mode: lighten;
  filter: brightness(1.05);
}

.fcta-content h2 { color: var(--white); margin-bottom: 16px; font-size: 2rem; }
.fcta-content > p { color: rgba(255,255,255,0.7); margin-bottom: 28px; }

.fcta-disc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin-top: 20px;
}

/* ===== FOOTER ===== */
.site-footer-main {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 0;
}

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

.footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
  mix-blend-mode: lighten;
  filter: brightness(1.05);
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
  padding: 4px 10px;
  border-radius: 20px;
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}

.footer-links ul li a:hover { color: var(--white); }

.footer-responsible h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.footer-responsible p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}

.resp-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.resp-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 6px;
}

.footer-affil {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  margin-bottom: 4px;
}

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: white !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(232,0,28,0.4);
}

.back-top.visible { opacity: 1; visibility: visible; }
.back-top:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(232,0,28,0.5); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .vip-levels { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-banner { max-width: 500px; margin: 0 auto; }
  .two-col, .two-col.reverse { grid-template-columns: 1fr; direction: ltr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .live-features { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card.featured-news { grid-column: auto; }
  .jp-item { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 768px) {
  .main-nav { display: none !important; }
  .burger { display: none; }
  .btn-cta-header { display: flex !important; }

  .hero { min-height: auto; padding: 28px 0 20px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-xl { width: 100%; justify-content: center; }

  .section { padding: 64px 0; }

  .vip-levels { grid-template-columns: repeat(2, 1fr); }

  .steps-wrap { grid-template-columns: 1fr; }

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

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

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

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

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

  .tournament-highlight { grid-template-columns: 1fr; }

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

  .cta-box { padding: 32px 24px; }

  .age-modal-box { padding: 32px 24px; }
}

@media (max-width: 520px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-num { font-size: 1.8rem; }
  .payment-grid { grid-template-columns: 1fr 1fr; }
  .vip-levels { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .live-features { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .slot-card { flex-wrap: wrap; }
  .slot-meta { margin-top: 8px; }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: rgba(232,0,28,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(232,0,28,0.7); }

/* ===== SELECTION ===== */
::selection { background: rgba(232,0,28,0.3); color: var(--white); }

/* ===== DIAGNOSTIC PROFIL ===== */
.diag-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.diag-col { background: var(--dark-3); border-radius: var(--radius-lg); padding: 28px 24px; }
.diag-yes { border: 1px solid rgba(16,185,129,0.3); }
.diag-no  { border: 1px solid rgba(232,0,28,0.3); }
.diag-header { font-weight: 700; font-size: 1rem; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.diag-yes .diag-header { color: var(--green); }
.diag-no  .diag-header { color: var(--red-light); }
.diag-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.diag-col ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.5; }
.diag-yes ul li i { color: var(--green); margin-top: 3px; flex-shrink: 0; }
.diag-no  ul li i { color: var(--red-light); margin-top: 3px; flex-shrink: 0; }

/* ===== RETURN REASONS ===== */
.return-reasons { display: flex; flex-direction: column; gap: 16px; }
.reason-card { background: var(--dark-3); border-radius: var(--radius); padding: 20px; border-left: 3px solid var(--red); }
.reason-card .reason-icon { font-size: 1.4rem; color: var(--red-light); margin-bottom: 10px; }
.reason-card h4 { font-family: var(--font-head); font-size: 1rem; color: var(--white); margin-bottom: 8px; }
.reason-card p { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin: 0; }

/* ===== FRICTION BOX (CB REFUS) ===== */
.friction-box { background: var(--dark-3); border-radius: var(--radius-lg); padding: 28px; margin-top: 28px; border: 1px solid rgba(232,0,28,0.2); }
.friction-box h3 { font-family: var(--font-head); font-size: 1.3rem; color: var(--white); margin-bottom: 20px; }
.friction-grid { display: flex; flex-direction: column; gap: 16px; }
.friction-item { display: flex; gap: 16px; align-items: flex-start; }
.fri-num { background: var(--red); color: var(--white); width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.8rem; flex-shrink: 0; margin-top: 2px; }
.friction-item strong { display: block; color: var(--white); font-weight: 600; margin-bottom: 4px; font-size: 0.95rem; }
.friction-item p { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin: 0; line-height: 1.6; }
.friction-note { margin-top: 16px; padding: 12px 16px; background: rgba(232,0,28,0.08); border-radius: var(--radius-sm); font-size: 0.88rem; color: rgba(255,255,255,0.8); }

/* ===== CM INFO CARDS ===== */
.cm-info { display: flex; flex-direction: column; gap: 16px; }
.cm-card { background: var(--dark-3); border-radius: var(--radius); padding: 20px; display: flex; gap: 14px; align-items: flex-start; }
.cm-icon { font-size: 1.6rem; color: var(--red-light); flex-shrink: 0; }
.cm-card h4 { color: var(--white); font-size: 1rem; margin-bottom: 6px; font-weight: 600; }
.cm-card p { font-size: 0.87rem; color: rgba(255,255,255,0.7); margin: 0; line-height: 1.5; }

/* ===== OBJECTION FAQ ===== */
.faq-a p { margin-bottom: 10px; font-size: 0.92rem; color: rgba(255,255,255,0.8); line-height: 1.7; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a ul { padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 6px; }
.faq-a ul li { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.6; }

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 768px) {
  .diag-grid { grid-template-columns: 1fr; }
  .friction-grid { gap: 12px; }
}
