:root {
  --font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Plus Jakarta Sans", "Inter", sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;

  /* Theme Tokens */
  --color-primary: #0ACF83;
  --color-primary-hover: #08B772;
  --color-primary-glow: rgba(10, 207, 131, 0.4);
  --color-accent-gold: #FFD700;
  --color-accent-gold-glow: rgba(255, 215, 0, 0.35);
  --color-azure: #1E88E5;
  --color-danger: #EF4444;

  /* Backgrounds & Glassmorphism */
  --bg-dark-base: #030712;
  --bg-dark-card: rgba(15, 23, 42, 0.75);
  --bg-dark-card-hover: rgba(30, 41, 59, 0.85);
  --bg-glass-border: rgba(255, 255, 255, 0.12);
  --bg-glass-shine: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
  
  /* Text Colors */
  --text-white: #FFFFFF;
  --text-muted: #94A3B8;
  --text-body: #E2E8F0;

  /* Shadows & Transitions */
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-neon: 0 0 25px rgba(10, 207, 131, 0.25);
  --shadow-gold: 0 0 25px rgba(255, 215, 0, 0.25);
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark-base);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

/* Flashy Casino Container Backgrounds */
.casino-container-glow {
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(10, 207, 131, 0.12) 0%, transparent 70%),
              radial-gradient(circle at 100% 100%, rgba(255, 215, 0, 0.08) 0%, transparent 60%),
              #030712;
  border-top: 1px solid var(--bg-glass-border);
  border-bottom: 1px solid var(--bg-glass-border);
}

.casino-container-gold {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.15) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(10, 207, 131, 0.1) 0%, transparent 50%),
              #0B132B;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.casino-container-neon {
  position: relative;
  background: linear-gradient(180deg, #090E1A 0%, #111827 50%, #090E1A 100%);
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 0);
  background-size: 24px 24px;
}

/* First Container / Casino Hero Banner */
.casino-hero {
  position: relative;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 80px 24px 60px;
  overflow: hidden;
}

.casino-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 7, 18, 0.45) 0%, rgba(3, 7, 18, 0.85) 75%, #030712 100%);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.casino-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3, 7, 18, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bg-glass-border);
  height: 72px;
  display: flex;
  align-items: center;
}

.header-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 16px;
}

.header-logo {
  height: 42px;
  width: auto;
  border-radius: 8px;
  display: block;
}

.header-nav {
  display: flex;
  gap: 8px;
  align-items: center;
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
}

.nav-link {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  height: 38px;
  line-height: 1;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
  color: #10B981;
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: 16px;
}

/* Bilingual Language Switcher Component */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--bg-glass-border);
  border-radius: 9999px;
  padding: 3px 6px;
  gap: 4px;
  user-select: none;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 32px;
  min-width: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.lang-btn:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.06);
}

.lang-btn.active {
  background: var(--color-primary);
  color: #030712;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
}

.lang-divider {
  color: rgba(255, 255, 255, 0.25);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

/* High CTR Buttons (48px height) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #00B248 100%);
  color: #030712;
  box-shadow: 0 4px 15px var(--color-primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 207, 131, 0.5);
  color: #030712;
}

.btn-gold {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #0B132B;
  box-shadow: 0 4px 15px var(--color-accent-gold-glow);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  color: #0B132B;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--bg-glass-border);
  color: var(--text-white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Badges & Trust Labels */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-emerald {
  background: rgba(10, 207, 131, 0.15);
  color: var(--color-primary);
  border: 1px solid rgba(10, 207, 131, 0.3);
}

.badge-gold {
  background: rgba(255, 215, 0, 0.15);
  color: var(--color-accent-gold);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

/* 3x2 Grid Box System (3 cols x 2 rows = 6 items) */
.grid-3x2-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.grid-3x2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .grid-3x2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-3x2 {
    grid-template-columns: 1fr;
  }
}

/* Placecard / Game Card Bundle */
.placecard {
  background: var(--bg-dark-card);
  background-image: var(--bg-glass-shine);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
}

.placecard:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 207, 131, 0.4);
  box-shadow: var(--shadow-neon);
}

.placecard-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0F172A;
}

.placecard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.placecard:hover .placecard-media img {
  transform: scale(1.05);
}

.placecard-overlay-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.placecard-rating-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(3, 7, 18, 0.75);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent-gold);
  border: 1px solid rgba(255, 215, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 4px;
}

.placecard-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.placecard-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.placecard-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-grow: 1;
}

.placecard-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Interactive Pagination Component */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.pagination-btn, .page-btn {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--bg-glass-border);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  min-width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
  backdrop-filter: blur(8px);
  box-sizing: border-box;
}

.pagination-btn:hover:not(:disabled), .page-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.pagination-btn.active, .page-btn.active {
  background: linear-gradient(135deg, var(--color-primary) 0%, #00B248 100%);
  color: #030712;
  font-weight: 800;
  border-color: var(--color-primary);
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.4);
}

.pagination-btn:disabled, .page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

/* FAQ Accordion Component (Supports both <details> and custom accordions) */
.faq-section, .faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item, details.faq-item {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  margin-bottom: 0;
  overflow: hidden;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.faq-item:hover, details.faq-item:hover {
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

details.faq-item[open] {
  border-color: rgba(16, 185, 129, 0.5);
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4), 0 0 16px rgba(16, 185, 129, 0.1);
}

summary.faq-question {
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  position: relative;
  transition: color 0.2s ease;
}

summary.faq-question::-webkit-details-marker {
  display: none;
}

summary.faq-question::marker {
  display: none;
}

summary.faq-question::after {
  content: '';
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

details.faq-item[open] summary.faq-question::after {
  transform: rotate(-135deg);
  border-color: var(--color-primary);
}

summary.faq-question:hover {
  color: var(--color-primary);
}

.faq-answer {
  padding: 0 24px 22px 24px;
  color: #CBD5E1;
  font-size: 15px;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

.faq-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  fill: var(--text-muted);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  fill: var(--color-primary);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 24px;
  color: #CBD5E1;
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.active .faq-content {
  padding-bottom: 20px;
}

.faq-item.active .faq-content {
  padding-bottom: 20px;
}

/* E-E-A-T Author & Review Credentials Card */
.eeat-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
  border: 1px solid rgba(10, 207, 131, 0.3);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 40px auto;
  max-width: 960px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.eeat-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  flex-shrink: 0;
  object-fit: cover;
}

.eeat-info h4 {
  font-size: 18px;
  color: var(--text-white);
  margin-bottom: 4px;
}

.eeat-info p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Step-by-Step Interactive Workflow Component */
.stepper-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}

.step-card {
  display: flex;
  gap: 18px;
  background: var(--bg-dark-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  padding: 20px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, #00B248 100%);
  color: #030712;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Comparison Tables */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--bg-glass-border);
  margin: 24px 0;
}

.casino-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.casino-table th {
  background: rgba(15, 23, 42, 0.9);
  color: var(--text-white);
  padding: 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--bg-glass-border);
}

.casino-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
  color: var(--text-body);
}

/* 21+ Age Gate Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, 0.92);
  backdrop-filter: blur(14px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #0F172A;
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: var(--shadow-gold);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 36px 28px;
  text-align: center;
}

/* Footer & Compliance */
.site-footer {
  background: #020617;
  border-top: 1px solid var(--bg-glass-border);
  padding: 60px 20px 40px;
  margin-top: 60px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-responsible {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 36px;
  text-align: center;
}

/* Sticky Mobile Bottom Bar */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--bg-glass-border);
  padding: 12px 20px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 1140px) and (min-width: 769px) {
  .header-container {
    padding: 0 12px;
    gap: 8px;
  }
  .header-brand {
    margin-right: 8px;
    gap: 8px;
  }
  .header-nav {
    gap: 4px;
  }
  .nav-link {
    font-size: 13px;
    padding: 6px 10px;
    height: 34px;
  }
  .header-actions {
    margin-left: 8px;
    gap: 8px;
  }
  .header-actions .btn {
    height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  .header-actions .btn-outline {
    display: none; /* Sign In is available in sticky mobile bottom bar */
  }
  .lang-switcher {
    padding: 2px 4px;
  }
  .lang-btn {
    padding: 3px 8px;
    font-size: 12px;
    min-height: 28px;
    min-width: 32px;
  }
  .sticky-mobile-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  body {
    padding-bottom: 74px;
  }
}

/* Guides Grid & Guide Cards */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.guide-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.guide-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(16, 185, 129, 0.15);
}

.guide-card-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: inline-block;
}

.guide-card-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 10px;
}

.guide-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.guide-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.guide-card-link:hover {
  color: #34D399;
}

/* Player Reviews & Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.testimonial-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.testimonial-rating {
  color: var(--color-accent-gold);
  font-size: 16px;
  margin-bottom: 12px;
}

.testimonial-quote {
  font-size: 14px;
  color: #E2E8F0;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
}

.author-name {
  font-weight: 700;
  color: var(--text-white);
  font-size: 14px;
}

.author-location {
  font-size: 12px;
  color: var(--text-muted);
}

.verified-pill {
  font-size: 11px;
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  padding: 2px 8px;
  border-radius: 9999px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-weight: 600;
}

/* Featured Reviews Showcase */
.reviews-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.review-feature-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease;
}

.review-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 215, 0, 0.3);
}

.review-feature-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.review-feature-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-white);
}

.review-feature-meta {
  font-size: 13px;
  color: var(--color-accent-gold);
  font-weight: 700;
  background: rgba(255, 215, 0, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}
