/*
 * ParisBonusFR.com - Premium Design System
 * Color Palette: Parisian Luxury Casino Theme
 */

/* ===== PREMIUM COLOR PALETTE ===== */
:root {
  /* Primary Colors - Parisian Night */
  --paris-navy: #0a1628;
  --paris-deep: #1a2744;
  --paris-midnight: #243156;

  /* Accent Colors - Luxury Gold */
  --gold-primary: #d4a849;
  --gold-light: #f0c952;
  --gold-dark: #b8923f;
  --gold-shimmer: #e8d5a3;

  /* Action Colors */
  --burgundy: #9b2c3c;
  --burgundy-light: #c4455c;

  /* Neutral Colors */
  --cream: #f8f6f1;
  --pearl: #ffffff;
  --charcoal: #1e1e2e;
  --mist: rgba(255, 255, 255, 0.08);

  /* Text Colors */
  --text-primary: #f0ebe3;
  --text-secondary: #b8c5d6;
  --text-muted: #7a8a9a;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #f0c952 0%, #d4a849 50%, #b8923f 100%);
  --gradient-night: linear-gradient(180deg, #0a1628 0%, #1a2744 100%);
  --gradient-burgundy: linear-gradient(135deg, #c4455c 0%, #9b2c3c 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(10, 22, 40, 0.95) 0%, rgba(26, 39, 68, 0.98) 100%);

  /* Shadows */
  --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 8px 32px rgba(212, 168, 73, 0.25);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.15);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Spacing */
  --container-max: 1280px;
  --section-spacing: 120px;
}

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--paris-navy);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ===== HEADER ===== */
header {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 168, 73, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: var(--shadow-premium);
  padding: 12px 0;
}

header .wrappers {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header img {
  height: 48px;
  width: auto;
  transition: transform 0.3s ease;
}

header img:hover {
  transform: scale(1.05);
}

/* ===== HERO SECTION ===== */
.first-block {
  background: var(--gradient-night);
  position: relative;
  overflow: hidden;
  padding: var(--section-spacing) 0;
}

.first-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(212, 168, 73, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(155, 44, 60, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.first-block::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 168, 73, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.first-screen {
  position: relative;
  z-index: 1;
}

.first-screen_content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.first-screen_content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  position: relative;
}

.first-screen_content h1::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.first-screen_content > p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 32px;
  margin-top: 40px;
  font-weight: 400;
}

.table-head_date {
  height: 20px;
}

.table-head_left {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  margin-top: 48px;
}

.table-head_left p {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212, 168, 73, 0.2);
  transition: all 0.3s ease;
}

.table-head_left p:hover {
  background: rgba(212, 168, 73, 0.1);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.table-head_left p::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold-primary);
  animation: pulse-gold 2s ease-in-out infinite;
}

.table-head_legal,
.table-head_flag,
.table-head_secure,
.table-head_bonus {
  position: relative;
}

/* ===== TABLE SECTION ===== */
.table-block {
  position: relative;
  padding: 60px 0;
}

.table-wrappers {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.table {
  background: rgba(26, 39, 68, 0.6);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 168, 73, 0.2);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.table_row {
  display: grid;
  grid-template-columns: 50px 1fr 200px 180px 80px;
  gap: 16px;
  padding: 24px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.table_row:hover {
  background: rgba(212, 168, 73, 0.05);
}

.table_row:last-child {
  border-bottom: none;
}

.table_row_title {
  background: var(--gradient-gold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.table_row_title.table_col-bonus {
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.table_row_title p {
  color: var(--paris-navy);
  text-align: center;
}

.table_col-number {
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 18px;
}

.table_col-site img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.table_col-bonus {
  font-weight: 600;
  color: var(--gold-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--gradient-gold);
  color: var(--paris-navy);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 168, 73, 0.4);
}

.table_col-rating {
  display: flex;
  align-items: center;
  justify-content: center;
}

.table-score_block {
  display: flex;
  align-items: center;
  justify-content: center;
}

.table-score {
  width: 56px;
  height: 56px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  transition: transform 0.3s ease;
}

.table_row:hover .table-score {
  transform: scale(1.1);
}

.table-score__value {
  color: var(--paris-navy);
  font-weight: 800;
  font-size: 20px;
  margin: 0;
  line-height: 1;
}

/* Review Row Styles */
.table_row_bg {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.review_row {
  display: grid;
  grid-template-columns: 50px 1fr 200px 180px 80px;
  gap: 16px;
  padding: 24px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.review_row:hover {
  background: rgba(212, 168, 73, 0.05);
}

.table_col_site_number {
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 18px;
}

.table_col-site_logo {
  width: 80px;
  height: 48px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.brand-flag {
  font-size: 20px;
  margin-bottom: 4px;
}

.bonus-title {
  margin: 0;
  line-height: 1.3;
}

.bonus-title_top {
  font-weight: 600;
  color: var(--gold-light);
  font-size: 14px;
}

.bonus-title_center {
  font-weight: 700;
  color: var(--pearl);
  font-size: 16px;
}

.bonus-title_bottom {
  font-weight: 400;
  color: var(--text-secondary);
  font-size: 12px;
}

.table-score_block {
  display: flex;
  align-items: center;
  justify-content: center;
}

.table-score {
  width: 56px;
  height: 56px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  transition: transform 0.3s ease;
}

.table_row:hover .table-score {
  transform: scale(1.1);
}

.table-score__value {
  color: var(--paris-navy);
  font-weight: 800;
  font-size: 20px;
  margin: 0;
  line-height: 1;
}

/* ===== RESPONSIVE DESIGN ===== */

/* ===== FAQ SECTION ===== */
.faq-block {
  padding: 80px 0;
}

.faq-block > .wrappers > h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 48px;
  color: var(--gold-light);
}

.faq-block_container {
  max-width: 800px;
  margin: 0 auto 24px;
  background: rgba(26, 39, 68, 0.4);
  border: 1px solid rgba(212, 168, 73, 0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-block_container:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-card);
}

.faq-block_title {
  padding: 24px;
  font-weight: 600;
  font-size: 18px;
  color: var(--gold-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(212, 168, 73, 0.05);
}

.faq-block_title::before {
  content: '';
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--paris-navy);
  font-weight: 700;
}

.faq-block_content {
  padding: 0 24px 24px 64px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== RESPONSIBLE GAMING BLOCK ===== */
.responsibly-block {
  padding: 60px 0 80px;
}

.responsibly-block .faq-block_container {
  background: linear-gradient(135deg, rgba(155, 44, 60, 0.15) 0%, rgba(155, 44, 60, 0.05) 100%);
  border-color: rgba(196, 69, 92, 0.3);
  text-align: center;
}

.responsibly-block .faq-block_container img {
  margin: 0 auto;
}

.responsibly-block .faq-block_title {
  justify-content: center;
  background: transparent;
  cursor: default;
}

.responsibly-block .faq-block_title h2 {
  font-family: var(--font-display);
  color: var(--burgundy-light);
  margin: 0;
}

.responsibly-block .faq-block_content {
  padding-left: 24px;
  text-align: center;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--paris-navy);
  border-top: 1px solid rgba(212, 168, 73, 0.15);
  padding: 60px 0 30px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: var(--gradient-gold);
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-nav-wrap {
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  margin-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-footer-menu-container ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 32px;
  list-style: none;
}

.menu-footer-menu-container ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.menu-footer-menu-container ul li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.3s ease;
}

.menu-footer-menu-container ul li a:hover {
  color: var(--gold-light);
}

.menu-footer-menu-container ul li a:hover::after {
  width: 100%;
}

.footer-widget {
  text-align: center;
  margin-bottom: 32px;
}

.footer-widget p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-widget p strong {
  color: var(--gold-primary);
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-logos a {
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.footer-logos a:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-4px);
}

.footer-logos img {
  max-height: 48px;
  width: auto;
}

.footer-copy {
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ===== TERMS PAGE STYLES ===== */
.table-page-template .faq-block {
  padding: 60px 0;
}

.custom-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--gold-light);
  margin: 48px 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212, 168, 73, 0.2);
}

.custom-subheading {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--gold-primary);
  margin: 32px 0 16px;
  padding-left: 16px;
  border-left: 3px solid var(--gold-primary);
}

.faq-block p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.faq-block ul {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 16px 0;
  padding-left: 24px;
}

.faq-block ul li {
  margin-bottom: 8px;
}

.faq-block ul li strong {
  color: var(--gold-light);
}

/* ===== AGE VERIFICATION POPUP ===== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}

.popup {
  width: 100%;
  max-width: 520px;
  background: linear-gradient(145deg, rgba(26, 39, 68, 0.9), rgba(36, 49, 86, 0.9));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 168, 73, 0.3);
  padding: 40px;
  color: var(--text-primary);
  box-shadow: var(--shadow-premium);
  animation: fadeInUp 0.4s ease;
}

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

.popup .header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--gold-light);
}

.popup .divider {
  height: 1px;
  background: var(--gradient-gold);
  margin: 20px 0 24px;
  opacity: 0.3;
}

.popup .text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.popup .actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.popup .btn-primary {
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--gradient-gold);
  color: var(--paris-navy);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.popup .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.popup .btn-link {
  background: none;
  border: none;
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
  padding: 8px;
  transition: color 0.3s ease;
}

.popup .btn-link:hover {
  color: var(--burgundy-light);
}

.warning-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-burgundy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.warning-icon span {
  color: var(--pearl);
  font-size: 20px;
}

.hidden {
  display: none !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .table_row {
    grid-template-columns: 40px 1fr 160px 140px 70px;
    gap: 12px;
    padding: 20px;
  }

  .review_row {
    grid-template-columns: 40px 1fr 160px 140px 70px;
    gap: 12px;
    padding: 20px;
    justify-content: center;
  }

  .table-score {
    width: 50px;
    height: 50px;
  }

  .table-score__value {
    font-size: 18px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 80px;
  }

  header .wrappers {
    padding: 0 16px;
  }

  header img {
    height: 40px;
  }

  .table-wrappers,
  .wrappers {
    padding: 0 16px;
  }

  .first-screen_content h1 {
    font-size: 1.75rem;
  }

  .table-head_left {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .table-head_left p {
    width: 100%;
    justify-content: center;
  }

  /* Mobile Table - Complete Redesign */
  .table {
    border-radius: var(--radius-md);
    overflow: visible;
  }

  .table_row {
    display: block;
    padding: 0;
    margin-bottom: 16px;
    background: rgba(26, 39, 68, 0.5);
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 168, 73, 0.2);
  }

  .table_row_title {
    display: none;
  }

  .table_row_bg {
    margin-bottom: 16px;
  }

  /* Review Row Mobile Card Layout */
  .review_row.triangle {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    position: relative;
  }

  /* Number badge */
  .table_col_site_number {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 14px;
    color: var(--gold-primary);
    font-weight: 700;
    background: rgba(212, 168, 73, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid rgba(212, 168, 73, 0.3);
  }

  /* Logo section with triangle */
  .table_col-site_review {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin-top: 10px;
  }

  #triangle_left {
    position: relative;
    top: 0 !important;
    left: 0 !important;
    width: auto;
    height: auto;
    display: inline-block;
    margin: 0 auto;
  }

  #triangle_left p {
    position: relative;
    top: auto !important;
    left: auto !important;
    text-align: center;
    display: block;
    width: auto;
    color: var(--gold-light);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .brand-flag {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 4px;
  }

  .table_col-site_logo {
    width: 90px !important;
    height: 54px !important;
    max-width: none !important;
    margin: 0 auto;
    display: block;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
  }

  /* Bonus section */
  .bonus_row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    gap: 4px;
  }

  .bonus-title {
    text-align: center;
    margin: 0;
  }

  .bonus-title_top {
    font-size: 13px;
    color: var(--gold-light);
    font-weight: 600;
  }

  .bonus-title_center {
    font-size: 16px;
    color: var(--pearl);
    font-weight: 700;
  }

  .bonus-title_bottom {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 400;
  }

  /* Button section */
  .table_col-btn {
    width: 100%;
    padding: 0;
  }

  .table_col-btn .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
  }

  /* Rating section */
  .rating_row {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  .table-score_block {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .table-score {
    width: 56px;
    height: 56px;
  }

  .table-score__value {
    font-size: 18px;
  }

  /* Triangle container fixes */
  .triangle {
    position: relative;
    overflow: visible;
  }

  .number {
    display: none; /* Hide duplicate number element */
  }

  /* Mobile FAQ */
  .faq-block {
    padding: 60px 0;
  }

  .faq-block_container {
    border-radius: var(--radius-sm);
  }

  .faq-block_title {
    padding: 20px;
    font-size: 16px;
  }

  .faq-block_content {
    padding: 0 20px 20px 20px;
  }

  /* Mobile Footer */
  .site-footer {
    padding: 40px 0 20px;
  }

  .footer-nav-wrap {
    padding: 20px 16px;
  }

  .menu-footer-menu-container ul {
    flex-direction: column;
    gap: 16px;
  }

  .menu-footer-menu-container ul li {
    width: 100%;
    text-align: center;
  }

  .footer-logos {
    gap: 16px;
  }

  .footer-logos img {
    max-height: 36px;
  }

  /* Mobile Popup */
  .popup {
    padding: 28px 24px;
    margin: 16px;
  }

  .popup .header {
    font-size: 16px;
  }

  .popup .text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .first-screen_content h1 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 12px 16px;
    font-size: 13px;
  }

  .faq-block > .wrappers > h2 {
    font-size: 1.5rem;
  }

  .custom-heading {
    font-size: 1.25rem;
  }

  /* Extra small mobile optimizations */
  .review_row.triangle {
    padding: 16px 16px 20px;
    gap: 14px;
  }

  .table_col_site_number {
    top: 10px;
    left: 10px;
    font-size: 13px;
    padding: 3px 8px;
  }

  .brand-flag {
    font-size: 14px;
  }

  .table_col-site_logo {
    width: 80px !important;
    height: 48px !important;
  }

  .bonus-title_center {
    font-size: 15px;
  }

  .table-score {
    width: 52px;
    height: 52px;
  }

  .table-score__value {
    font-size: 17px;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes pulse-gold {
  0%, 100% {
    box-shadow: 0 0 20px rgba(212, 168, 73, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(212, 168, 73, 0.5);
  }
}

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

/* ===== UTILITY CLASSES ===== */
.wrappers {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold {
  color: var(--gold-primary);
}

.text-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== LOADING STATES ===== */
.btn-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.8;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid var(--paris-navy);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--paris-navy);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* ===== SELECTION ===== */
::selection {
  background: var(--gold-primary);
  color: var(--paris-navy);
}
