/* JogosExpert Brasil - Main Stylesheet */
/* Based on rose/cream theme with deep forest green accent */

/* ===== CSS Variables ===== */
:root {
  --background: #f5f0eb;
  --foreground: #1a2e1a;
  --card: #fdfbf9;
  --card-foreground: #1a2e1a;
  --primary: #2d5a3d;
  --primary-foreground: #faf8f6;
  --secondary: #ede8e3;
  --secondary-foreground: #1a2e1a;
  --muted: #e8e3de;
  --muted-foreground: #5a6b5a;
  --accent: #8b5a3c;
  --accent-foreground: #faf8f6;
  --destructive: #9a3c2e;
  --destructive-foreground: #faf8f6;
  --border: #ddd5cc;
  --input: #f0ebe6;
  --ring: #2d5a3d;
  --radius: 0.625rem;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--foreground);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

@media (min-width: 640px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  h1 { font-size: 3.75rem; }
  h2 { font-size: 2.5rem; }
}

p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

/* ===== Layout ===== */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(245, 240, 235, 0.95);
  backdrop-filter: blur(8px);
}

.header-marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--primary);
  padding: 0.5rem 0;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee-content span {
  margin: 0 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary-foreground);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.header-main {
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .header-inner {
    padding: 1rem 2rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: var(--primary);
  border-radius: 0.75rem;
}

.logo-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-foreground);
}

.logo-icon-img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.5rem;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.logo-tagline {
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}

/* Navigation */
.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(26, 46, 26, 0.7);
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.nav-link:hover {
  background: var(--secondary);
  color: var(--foreground);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  padding-top: 0.5rem;
  z-index: 50;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-inner {
  min-width: 220px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.nav-dropdown-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: rgba(26, 46, 26, 0.7);
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.nav-dropdown-link:hover {
  background: var(--secondary);
  color: var(--foreground);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-search {
  display: none;
  padding: 0.5rem;
  color: rgba(26, 46, 26, 0.6);
  border-radius: 0.5rem;
  transition: all 0.2s;
  background: transparent;
  border: none;
}

@media (min-width: 1024px) {
  .btn-search {
    display: flex;
  }
}

.btn-search:hover {
  background: var(--secondary);
  color: var(--foreground);
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: transparent;
  border: none;
  color: rgba(26, 46, 26, 0.7);
  border-radius: 0.5rem;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  border-bottom: 1px solid var(--border);
  background: var(--card);
}

.mobile-menu.active {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu-inner {
  padding: 1rem;
}

.mobile-nav-section {
  margin-bottom: 0.25rem;
}

.mobile-nav-label {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}

.mobile-nav-link {
  display: block;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.mobile-nav-link:hover {
  background: var(--secondary);
}

.mobile-nav-sublink {
  display: block;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  color: rgba(26, 46, 26, 0.7);
  border-radius: 0.5rem;
}

.mobile-nav-sublink:hover {
  background: var(--secondary);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.75rem;
  border: none;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background: rgba(45, 90, 61, 0.9);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.btn-secondary:hover {
  background: rgba(237, 232, 227, 0.8);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background: var(--secondary);
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-foreground);
}

.btn-accent:hover {
  background: rgba(139, 90, 60, 0.9);
}

.btn-dark {
  background: var(--foreground);
  color: var(--background);
}

.btn-dark:hover {
  background: rgba(26, 46, 26, 0.9);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn-full {
  width: 100%;
}

.btn-icon {
  padding: 0.5rem;
}

.btn svg {
  width: 1rem;
  height: 1rem;
}

/* ===== Cards ===== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}

.card:hover {
  border-color: rgba(45, 90, 61, 0.3);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.card-header {
  padding: 1.25rem 1.5rem 0.5rem;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
}

.card-content {
  padding: 1.5rem;
}

.card-footer {
  padding: 0 1.5rem 1.5rem;
}

/* ===== Badge ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
}

.badge-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.badge-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.badge-accent {
  background: var(--accent);
  color: var(--accent-foreground);
}

.badge-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.badge-sm {
  padding: 0.125rem 0.5rem;
  font-size: 0.625rem;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(45, 90, 61, 0.08), transparent 50%);
}

.hero-inner {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1rem;
}

@media (min-width: 1024px) {
  .hero-inner {
    padding: 6rem 2rem;
  }
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  background: rgba(45, 90, 61, 0.05);
  border: 1px solid rgba(45, 90, 61, 0.2);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

.hero-badge svg {
  width: 1rem;
  height: 1rem;
}

.hero-title {
  font-size: 2.25rem;
  line-height: 1.1;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-title-highlight {
  position: relative;
  display: inline-block;
}

.hero-title-underline {
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 12px;
}

.hero-title-underline path {
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
}

.hero-description {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--muted-foreground);
  max-width: 32rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.trust-avatars {
  display: flex;
}

.trust-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 2px solid var(--background);
  background: var(--secondary);
  margin-left: -0.5rem;
  overflow: hidden;
}

.trust-avatar:first-child {
  margin-left: 0;
}

.trust-info {
  font-size: 0.875rem;
}

.trust-info strong {
  color: var(--foreground);
}

.trust-info span {
  color: var(--muted-foreground);
}

.trust-rating {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.trust-rating svg {
  width: 1rem;
  height: 1rem;
  fill: var(--accent);
  color: var(--accent);
}

.trust-rating span {
  margin-left: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Hero Cards */
.hero-cards {
  display: none;
  position: relative;
  height: 500px;
}

@media (min-width: 1024px) {
  .hero-cards {
    display: block;
  }
}

.hero-card-bg {
  position: absolute;
  right: 2rem;
  top: 2rem;
  width: 16rem;
  height: 18rem;
  background: var(--secondary);
  border-radius: 1rem;
  transform: rotate(6deg);
}

.hero-card-mid {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 16rem;
  height: 18rem;
  background: rgba(139, 90, 60, 0.2);
  border-radius: 1rem;
  transform: rotate(3deg);
}

.hero-card-front {
  position: absolute;
  right: 0;
  top: 0;
  width: 18rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.hero-card-image {
  position: relative;
  height: 10rem;
  background: var(--primary);
}

.hero-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.hero-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--primary), transparent);
}

.hero-card-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  background: var(--accent);
  color: var(--accent-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
}

.hero-card-body {
  padding: 1.25rem;
}

.hero-card-name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
}

.hero-card-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.hero-card-rating svg {
  width: 0.875rem;
  height: 0.875rem;
  fill: var(--accent);
  color: var(--accent);
}

.hero-card-rating span {
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-card-desc {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-card-btn {
  width: 100%;
  margin-top: 1rem;
}

/* Floating Stats */
.hero-stat {
  position: absolute;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.hero-stat-1 {
  left: -1rem;
  bottom: 5rem;
}

.hero-stat-2 {
  left: -2rem;
  top: 8rem;
}

.hero-stat-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-stat-icon {
  padding: 0.5rem;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 0.5rem;
}

.hero-stat-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.hero-stat-icon.accent {
  background: rgba(139, 90, 60, 0.1);
}

.hero-stat-icon.accent svg {
  color: var(--accent);
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.hero-stat-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}

/* ===== Section Headers ===== */
.section {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 7rem 0;
  }
}

.section-secondary {
  background: rgba(237, 232, 227, 0.5);
}

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

.section-header {
  margin-bottom: 3rem;
}

.section-header.center {
  text-align: center;
}

.section-label {
  display: inline-block;
  padding: 0.375rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  background: rgba(45, 90, 61, 0.1);
  color: var(--primary);
}

.section-dark .section-label {
  background: rgba(139, 90, 60, 0.2);
  color: var(--accent);
}

.section-title {
  font-size: 1.875rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

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

.section-description {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: var(--muted-foreground);
  max-width: 36rem;
}

.section-header.center .section-description {
  margin-left: auto;
  margin-right: auto;
}

.section-dark .section-description {
  color: rgba(245, 240, 235, 0.7);
}

.section-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  transition: color 0.2s;
}

.section-link:hover {
  color: rgba(45, 90, 61, 0.8);
}

.section-link svg {
  width: 1rem;
  height: 1rem;
}

/* ===== Featured Games ===== */
.featured-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}

.featured-card:hover {
  border-color: rgba(45, 90, 61, 0.3);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

@media (min-width: 1024px) {
  .featured-card {
    flex-direction: row;
  }
}

.featured-rank {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(237, 232, 227, 0.3);
  border-bottom: 1px solid var(--border);
}

@media (min-width: 1024px) {
  .featured-rank {
    width: 18rem;
    border-bottom: none;
    border-right: 1px solid var(--border);
  }
}

.featured-rank-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--foreground);
  color: var(--background);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 0.75rem;
  flex-shrink: 0;
}

.featured-logo {
  position: relative;
  width: 4rem;
  height: 4rem;
  background: var(--card);
  border-radius: 0.75rem;
  overflow: hidden;
  flex-shrink: 0;
}

.featured-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}

.featured-mobile-info {
  display: block;
}

@media (min-width: 1024px) {
  .featured-mobile-info {
    display: none;
  }
}

.featured-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
}

.featured-tag {
  display: inline-block;
  padding: 0.125rem 0.625rem;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: white;
  border-radius: 9999px;
}

.featured-tag.primary { background: var(--primary); }
.featured-tag.accent { background: var(--accent); }
.featured-tag.chart { background: #d97706; }

.featured-content {
  flex: 1;
  padding: 1.5rem;
}

.featured-desktop-info {
  display: none;
}

@media (min-width: 1024px) {
  .featured-desktop-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
  }
}

.featured-bonus {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.featured-bonus svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
}

.featured-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: var(--secondary);
  border-radius: 0.75rem;
}

.featured-stars {
  display: flex;
}

.featured-stars svg {
  width: 1rem;
  height: 1rem;
}

.featured-stars svg.filled {
  fill: var(--accent);
  color: var(--accent);
}

.featured-stars svg.empty {
  fill: var(--muted);
  color: var(--muted);
}

.featured-score {
  font-size: 1.125rem;
  font-weight: 700;
}

.featured-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: var(--secondary);
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.feature-tag svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--primary);
}

.feature-tag.licensed {
  background: rgba(45, 90, 61, 0.1);
  color: var(--primary);
}

.featured-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .featured-actions {
    flex-direction: row;
  }
}

/* ===== Game Categories ===== */
.category-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}

.category-card:hover {
  border-color: rgba(45, 90, 61, 0.3);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.category-image {
  position: relative;
  height: 10rem;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.category-card:hover .category-image img {
  transform: scale(1.1);
}

.category-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 46, 26, 0.8), transparent);
}

.category-image-content {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-image-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--background);
}

.category-count {
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--background);
}

.category-body {
  padding: 1.25rem;
}

.category-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.category-popular {
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.category-tags span {
  padding: 0.25rem 0.625rem;
  background: var(--secondary);
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.category-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

.category-link svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}

.category-card:hover .category-link svg {
  transform: translateX(0.25rem);
}

/* ===== Comparison Table ===== */
.comparison-table-wrapper {
  display: none;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

@media (min-width: 1024px) {
  .comparison-table-wrapper {
    display: block;
  }
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table thead {
  background: var(--secondary);
}

.comparison-table th {
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: left;
}

.comparison-table th.center {
  text-align: center;
}

.comparison-table tbody {
  background: var(--card);
}

.comparison-table tbody tr {
  border-top: 1px solid var(--border);
}

.comparison-table tbody tr.highlight {
  background: rgba(45, 90, 61, 0.05);
}

.comparison-table td {
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
}

.comparison-table td.center {
  text-align: center;
}

.comparison-name {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.comparison-name .badge {
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.comparison-name span {
  font-weight: 600;
}

.comparison-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.comparison-rating svg {
  width: 1rem;
  height: 1rem;
  fill: var(--accent);
  color: var(--accent);
}

.comparison-rating span {
  font-weight: 600;
}

.comparison-check {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0 auto;
}

.comparison-check.green {
  color: var(--primary);
}

.comparison-check.red {
  color: var(--destructive);
}

/* Mobile Cards */
.comparison-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .comparison-cards {
    display: none;
  }
}

.comparison-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.comparison-card.highlight {
  border-color: rgba(45, 90, 61, 0.3);
}

.comparison-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.comparison-card-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-weight: 700;
}

.comparison-card-body {
  padding: 0 1rem 1rem;
}

.comparison-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.comparison-card-grid > div {
  display: flex;
  flex-direction: column;
}

.comparison-card-grid > div span:first-child {
  color: var(--muted-foreground);
}

.comparison-card-grid > div span:last-child {
  font-weight: 500;
}

.comparison-card-features {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
}

.comparison-card-features > span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.comparison-card-features svg {
  width: 1rem;
  height: 1rem;
}

/* ===== Why Trust Us ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.stat-value {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}

@media (min-width: 1024px) {
  .stat-value {
    font-size: 3rem;
  }
}

.stat-label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(245, 240, 235, 0.6);
}

.methodology-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .methodology-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.methodology-content p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: rgba(245, 240, 235, 0.7);
}

.methodology-list {
  margin-top: 2rem;
}

.methodology-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(245, 240, 235, 0.8);
}

.methodology-list-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
}

.trust-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--accent);
  border-radius: 9999px;
}

.trust-badge-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent-foreground);
}

.trust-badge-text strong {
  display: block;
  color: var(--background);
}

.trust-badge-text span {
  font-size: 0.875rem;
  color: rgba(245, 240, 235, 0.6);
}

.methodology-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.methodology-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
}

.methodology-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(139, 90, 60, 0.2);
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.methodology-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
}

.methodology-card-title {
  font-weight: 600;
  color: var(--background);
}

.methodology-card-desc {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: rgba(245, 240, 235, 0.6);
}

/* ===== Latest News ===== */
.news-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.news-featured {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .news-featured {
    grid-row: span 2;
  }
}

.news-featured-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .news-featured-image {
    aspect-ratio: 4 / 3;
  }
}

.news-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.news-featured:hover .news-featured-image img {
  transform: scale(1.05);
}

.news-featured-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 46, 26, 0.8), rgba(26, 46, 26, 0.2), transparent);
}

.news-featured-content {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
}

.news-featured-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.75rem;
  background: var(--accent);
  color: var(--accent-foreground);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
}

.news-featured-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--background);
  line-height: 1.3;
}

@media (min-width: 1024px) {
  .news-featured-title {
    font-size: 1.875rem;
  }
}

.news-featured-excerpt {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(245, 240, 235, 0.8);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-featured-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(245, 240, 235, 0.6);
}

.news-featured-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.news-featured-meta svg {
  width: 0.875rem;
  height: 0.875rem;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
}

.news-item:hover {
  border-color: rgba(45, 90, 61, 0.3);
}

.news-item-image {
  position: relative;
  width: 8rem;
  height: 6rem;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
}

.news-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.news-item:hover .news-item-image img {
  transform: scale(1.05);
}

.news-item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-item-category {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
}

.news-item-title {
  margin-top: 0.25rem;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}

.news-item:hover .news-item-title {
  color: var(--primary);
}

.news-item-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ===== FAQ Section ===== */
.faq-container {
  max-width: 56rem;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: background 0.2s;
}

.faq-item.active {
  background: rgba(237, 232, 227, 0.5);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--foreground);
  cursor: pointer;
  transition: color 0.2s;
}

.faq-item.active .faq-question {
  color: var(--primary);
}

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted-foreground);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-cta {
  max-width: 56rem;
  margin: 3rem auto 0;
  padding: 2rem;
  background: rgba(237, 232, 227, 0.5);
  border: 1px solid var(--border);
  border-radius: 1rem;
  text-align: center;
}

.faq-cta p:first-child {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.faq-cta p:last-of-type {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--foreground);
  color: var(--background);
}

.footer-newsletter {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(245, 240, 235, 0.1);
}

.footer-newsletter-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .footer-newsletter-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-newsletter-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-newsletter-desc {
  margin-top: 0.5rem;
  color: rgba(245, 240, 235, 0.6);
}

.footer-newsletter-form {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  max-width: 28rem;
}

.footer-newsletter-input {
  flex: 1;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 0.75rem;
  color: var(--background);
  font-size: 0.875rem;
}

.footer-newsletter-input::placeholder {
  color: rgba(245, 240, 235, 0.4);
}

.footer-newsletter-input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.footer-main {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  max-width: 24rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--accent);
  border-radius: 0.75rem;
}

.footer-logo-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--accent-foreground);
}

.footer-logo-icon-img {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  object-fit: contain;
}

.footer-logo-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-logo-tagline {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 235, 0.5);
}

.footer-about {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(245, 240, 235, 0.6);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: rgba(245, 240, 235, 0.6);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--background);
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-section-title {
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(245, 240, 235, 0.4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(245, 240, 235, 0.6);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--background);
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(245, 240, 235, 0.1);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer-age-badge {
  padding: 0.25rem 0.75rem;
  background: rgba(139, 90, 60, 0.2);
  border: 1px solid rgba(139, 90, 60, 0.5);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
}

.footer-badges span {
  font-size: 0.75rem;
  color: rgba(245, 240, 235, 0.4);
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(245, 240, 235, 0.4);
}

/* ===== Review Page ===== */
.review-hero {
  padding: 3rem 0 4rem;
  background: rgba(237, 232, 227, 0.3);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.breadcrumb a:hover {
  color: var(--foreground);
}

.review-hero-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .review-hero-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.review-main-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

@media (min-width: 1024px) {
  .review-main-card {
    padding: 2rem;
  }
}

.review-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .review-header {
    flex-direction: row;
    align-items: flex-start;
  }
}

.review-logo {
  position: relative;
  width: 10rem;
  height: 6rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  flex-shrink: 0;
}

.review-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
}

.review-info {
  flex: 1;
}

.review-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.review-title {
  font-size: 1.875rem;
}

@media (min-width: 1024px) {
  .review-title {
    font-size: 2.25rem;
  }
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.review-rating-badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.75rem;
  background: var(--accent);
  border-radius: 0.5rem;
}

.review-rating-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--accent-foreground);
  color: var(--accent-foreground);
}

.review-rating-badge span {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent-foreground);
}

.review-stars {
  display: flex;
}

.review-stars svg {
  width: 1.25rem;
  height: 1.25rem;
}

.review-stars svg.filled {
  fill: var(--accent);
  color: var(--accent);
}

.review-stars svg.empty {
  fill: var(--muted);
  color: var(--muted);
}

.review-criteria {
  margin-left: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.review-license {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.review-license svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.review-updated {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.review-updated svg {
  width: 0.875rem;
  height: 0.875rem;
}

.review-description {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.review-description h2 {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.review-description p {
  line-height: 1.7;
}

.review-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .review-actions {
    flex-direction: row;
  }
}

/* Pros and Cons */
.pros-cons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pros-card, .cons-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.pros-card {
  border-color: rgba(45, 90, 61, 0.2);
  background: rgba(45, 90, 61, 0.05);
}

.cons-card {
  border-color: rgba(154, 60, 46, 0.2);
  background: rgba(154, 60, 46, 0.05);
}

.pros-header, .cons-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.pros-header .icon-wrapper {
  padding: 0.25rem;
  background: rgba(45, 90, 61, 0.2);
  border-radius: 9999px;
}

.pros-header svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.cons-header .icon-wrapper {
  padding: 0.25rem;
  background: rgba(154, 60, 46, 0.2);
  border-radius: 9999px;
}

.cons-header svg {
  width: 1rem;
  height: 1rem;
  color: var(--destructive);
}

.pros-list, .cons-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.pros-list li, .cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.pros-list svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.cons-list svg {
  width: 1rem;
  height: 1rem;
  color: var(--destructive);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Review Details */
.review-details {
  padding: 3rem 0;
}

.details-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .details-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.details-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.details-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem 0;
}

.details-card-icon {
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.details-card-icon.primary {
  background: rgba(45, 90, 61, 0.1);
}

.details-card-icon.accent {
  background: rgba(139, 90, 60, 0.1);
}

.details-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.details-card-icon.primary svg {
  color: var(--primary);
}

.details-card-icon.accent svg {
  color: var(--accent);
}

.details-card-title {
  font-size: 1rem;
  font-weight: 600;
}

.details-card-body {
  padding: 1.25rem;
}

.details-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.details-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.details-stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.details-stat-value {
  font-size: 1.125rem;
  font-weight: 700;
}

.details-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(45, 90, 61, 0.05);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.details-highlight svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.details-games-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.details-game-stat {
  padding: 0.75rem;
  background: var(--secondary);
  border-radius: 0.5rem;
  text-align: center;
}

.details-game-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.details-game-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.details-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.details-channel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--secondary);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.details-channel svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

/* Review Content */
.review-content {
  padding: 3rem 0 4rem;
}

.review-content-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .review-content-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.review-main-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Table of Contents */
.toc-card {
  background: rgba(45, 90, 61, 0.05);
  border: 1px solid rgba(45, 90, 61, 0.2);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.toc-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.toc-header svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.toc-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toc-nav a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

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

/* Content Sections */
.content-section {
  scroll-margin-top: 6rem;
}

.content-section h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.content-section p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.content-section p:last-child {
  margin-bottom: 0;
}

/* Sidebar */
.review-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .review-sidebar {
    position: sticky;
    top: 6rem;
  }
}

.sidebar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.sidebar-card-header {
  padding: 0.75rem 1.25rem;
  background: var(--primary);
}

.sidebar-card-header h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-foreground);
}

.sidebar-card-header svg {
  width: 1.25rem;
  height: 1.25rem;
}

.sidebar-card-body {
  padding: 1.25rem;
}

.sidebar-card-body p {
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.sidebar-terms {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-terms p {
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}

.sidebar-term {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.sidebar-term svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Warnings Card */
.warnings-card {
  border-color: rgba(139, 90, 60, 0.3);
  background: rgba(139, 90, 60, 0.05);
}

.warnings-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
}

.warnings-header svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
}

.warnings-list {
  padding: 0 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.warnings-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.warnings-list svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Responsible Gaming Card */
.responsible-card {
  background: var(--foreground);
  color: var(--background);
  text-align: center;
  padding: 1.25rem;
}

.responsible-card svg {
  width: 2rem;
  height: 2rem;
  color: var(--accent);
  margin: 0 auto 0.75rem;
}

.responsible-card .badge {
  margin-bottom: 0.5rem;
}

.responsible-card p {
  font-size: 0.875rem;
  color: rgba(245, 240, 235, 0.8);
}

.responsible-card a {
  color: var(--accent);
}

.responsible-card a:hover {
  text-decoration: underline;
}

/* Related Reviews */
.related-header {
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
}

.related-list {
  padding: 0 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--secondary);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s;
}

.related-link:hover {
  background: rgba(237, 232, 227, 0.8);
}

.related-link svg {
  width: 1rem;
  height: 1rem;
  color: var(--muted-foreground);
}

/* Bottom CTA */
.review-cta {
  background: linear-gradient(135deg, rgba(45, 90, 61, 0.1), rgba(45, 90, 61, 0.05));
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.review-cta h3 {
  font-size: 1.25rem;
}

.review-cta p {
  margin-top: 0.5rem;
}

.review-cta .btn {
  margin-top: 1rem;
}

/* ===== Info Pages (About, Privacy, Terms, Contact) ===== */
.info-hero {
  padding: 4rem 0 5rem;
  background: rgba(237, 232, 227, 0.5);
}

.info-hero .container {
  max-width: 56rem;
}

.info-title {
  font-size: 2.25rem;
}

@media (min-width: 640px) {
  .info-title {
    font-size: 3rem;
  }
}

.info-subtitle {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.info-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: var(--secondary);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.info-content {
  padding: 3rem 0 4rem;
}

.info-content .container {
  max-width: 56rem;
}

.info-section {
  margin-bottom: 2.5rem;
}

.info-section h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.info-section p {
  line-height: 1.8;
}

.info-section ul {
  margin-top: 1rem;
}

.info-section li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.info-section li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.info-list {
  margin-left: 1rem;
}

.info-list li {
  display: list-item;
  list-style-type: disc;
  margin-bottom: 0.5rem;
}

.info-list li strong {
  color: var(--foreground);
}

/* Contact Form */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 3fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 0.75rem;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.contact-card-title {
  font-weight: 600;
}

.contact-card-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

.contact-card-desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.contact-faq {
  margin-top: 1rem;
  padding: 1.25rem;
  background: rgba(139, 90, 60, 0.05);
  border: 1px solid rgba(139, 90, 60, 0.3);
  border-radius: var(--radius);
}

.contact-faq-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.contact-faq-header svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
}

.contact-faq-header h3 {
  font-size: 1rem;
  font-weight: 600;
}

.contact-faq p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.contact-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

@media (min-width: 1024px) {
  .contact-form-card {
    padding: 2rem;
  }
}

.contact-form-header h2 {
  font-size: 1.5rem;
}

.contact-form-header p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-form {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
}

.form-input, .form-select, .form-textarea {
  padding: 0.625rem 1rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  font-size: 0.875rem;
  color: var(--foreground);
  transition: border-color 0.2s, outline 0.2s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
  border-color: var(--ring);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: var(--muted-foreground);
}

.form-textarea {
  resize: none;
  min-height: 150px;
}

/* Success Message */
.contact-success {
  padding: 3rem;
  text-align: center;
}

.contact-success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1rem;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 9999px;
}

.contact-success-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
}

.contact-success h3 {
  font-size: 1.5rem;
}

.contact-success p {
  margin-top: 0.5rem;
  color: var(--muted-foreground);
}

/* ===== About Page ===== */
.about-hero {
  padding: 4rem 0;
  background: rgba(237, 232, 227, 0.5);
}

@media (min-width: 1024px) {
  .about-hero {
    padding: 6rem 0;
  }
}

.about-hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-hero-image {
  display: none;
  position: relative;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(45, 90, 61, 0.1);
}

@media (min-width: 1024px) {
  .about-hero-image {
    display: block;
  }
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-stat-value {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
}

.about-stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.about-values {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .about-values {
    padding: 6rem 0;
  }
}

.values-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 0.75rem;
}

.value-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.value-title {
  font-size: 1rem;
  font-weight: 600;
}

.value-desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Team Section */
.team-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.team-image {
  position: relative;
  height: 16rem;
  background: var(--secondary);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
}

.team-role {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

.team-bio {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Responsible Gaming CTA */
.responsible-cta {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.responsible-cta-inner {
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(45, 90, 61, 0.05);
  border: 1px solid rgba(45, 90, 61, 0.3);
  border-radius: 1rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .responsible-cta-inner {
    padding: 3rem;
  }
}

.responsible-cta svg {
  width: 3rem;
  height: 3rem;
  margin: 0 auto;
  color: var(--primary);
}

.responsible-cta h2 {
  margin-top: 1rem;
  font-size: 1.5rem;
}

.responsible-cta p {
  margin-top: 1rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.responsible-cta .btn {
  margin-top: 1.5rem;
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted-foreground); }

.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-accent { background-color: var(--accent); }

.hidden { display: none; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (min-width: 640px) {
  .sm\:hidden { display: none; }
  .sm\:block { display: block; }
  .sm\:flex { display: flex; }
}

@media (min-width: 1024px) {
  .lg\:hidden { display: none; }
  .lg\:block { display: block; }
  .lg\:flex { display: flex; }
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

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

/* ===== Selection ===== */
::selection {
  background: rgba(45, 90, 61, 0.15);
}

/* ===== Print ===== */
@media print {
  .header, .footer, .btn, .mobile-menu {
    display: none !important;
  }
}

/* ===== Review Page Styles (rv-) ===== */

/* Container */
.rv-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .rv-container {
    padding: 0 2rem;
  }
}

/* Hero Section */
.rv-hero {
  background: rgba(237, 232, 227, 0.3);
  padding: 3rem 0 4rem;
}

@media (min-width: 1024px) {
  .rv-hero {
    padding: 4rem 0;
  }
}

/* Breadcrumb */
.rv-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.rv-breadcrumb a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}

.rv-breadcrumb a:hover {
  color: var(--foreground);
}

.rv-breadcrumb .current {
  color: var(--foreground);
}

/* Hero Grid */
.rv-hero-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .rv-hero-grid {
    grid-template-columns: 2fr 1fr;
  }
}

/* Cards */
.rv-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
}

.rv-card-content {
  padding: 1.25rem;
}

@media (min-width: 1024px) {
  .rv-main-card .rv-card-content {
    padding: 1.5rem 2rem;
  }
}

/* Main Card Header */
.rv-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .rv-header {
    flex-direction: row;
    align-items: flex-start;
  }
}

/* Logo */
.rv-logo {
  width: 10rem;
  height: 6rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  flex-shrink: 0;
}

.rv-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
}

/* Info */
.rv-info {
  flex: 1;
}

.rv-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.rv-title-row h1 {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
}

@media (min-width: 1024px) {
  .rv-title-row h1 {
    font-size: 2.25rem;
  }
}

/* Badges */
.rv-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.rv-badge-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.rv-badge-secondary {
  background: var(--secondary);
  color: var(--foreground);
  border-radius: 0.5rem;
}

.rv-badge-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
  border-radius: 0.375rem;
}

/* Rating */
.rv-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.rv-rating-score {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--accent);
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
}

.rv-rating-score svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent-foreground);
}

.rv-rating-score span {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent-foreground);
}

.rv-rating-stars {
  display: flex;
}

.rv-rating-stars svg {
  width: 1.25rem;
  height: 1.25rem;
}

.rv-rating-stars .star-filled {
  fill: var(--accent);
  color: var(--accent);
}

.rv-rating-stars .star-empty {
  fill: var(--muted);
  color: var(--muted);
}

.rv-rating-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* License & Updated */
.rv-license {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.rv-license svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--primary);
}

.rv-updated {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Description */
.rv-description {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.rv-description h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0 0 0.75rem;
}

.rv-description p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin: 0;
}

/* CTAs */
.rv-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .rv-ctas {
    flex-direction: row;
  }
}

/* Pros & Cons */
.rv-pros-cons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rv-card-pros {
  background: rgba(45, 90, 61, 0.05);
  border: 1px solid rgba(45, 90, 61, 0.2);
}

.rv-card-cons {
  background: rgba(220, 38, 38, 0.05);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.rv-card-pros h3,
.rv-card-cons h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0 0 1rem;
}

.rv-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
}

.rv-icon-primary {
  background: rgba(45, 90, 61, 0.2);
  color: var(--primary);
}

.rv-icon-destructive {
  background: rgba(220, 38, 38, 0.2);
  color: #dc2626;
}

.rv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.rv-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--foreground);
}

.rv-list li svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.icon-success {
  color: var(--primary);
}

.icon-error {
  color: #dc2626;
}

/* Details Section */
.rv-details {
  padding: 3rem 0;
}

.rv-section-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0 0 2rem;
}

.rv-details-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .rv-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .rv-details-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.rv-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
}

.rv-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
}

.rv-detail-icon-primary {
  background: rgba(45, 90, 61, 0.1);
  color: var(--primary);
}

.rv-detail-icon-accent {
  background: rgba(139, 90, 60, 0.1);
  color: var(--accent);
}

.rv-detail-icon-blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.rv-detail-icon-purple {
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
}

.rv-card-body {
  padding: 1rem;
}

.rv-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin: 0 0 0.5rem;
}

.rv-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.rv-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.rv-stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.rv-stat-value {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}

.rv-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(45, 90, 61, 0.05);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.rv-highlight svg {
  color: var(--primary);
}

.rv-game-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.rv-game-stat {
  background: var(--secondary);
  padding: 0.75rem;
  border-radius: 0.5rem;
  text-align: center;
}

.rv-game-stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}

.rv-game-stat-value.primary {
  color: var(--primary);
}

.rv-game-stat-value.accent {
  color: var(--accent);
}

.rv-game-stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.rv-platform-list,
.rv-support-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.rv-platform-item,
.rv-support-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--secondary);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.rv-note {
  background: rgba(237, 232, 227, 0.5);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Content Section */
.rv-content {
  padding: 3rem 0 4rem;
}

@media (min-width: 1024px) {
  .rv-content {
    padding: 4rem 0;
  }
}

.rv-content-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .rv-content-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.rv-main-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* TOC Card */
.rv-card-toc {
  background: rgba(45, 90, 61, 0.05);
  border: 1px solid rgba(45, 90, 61, 0.2);
}

.rv-card-toc h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0 0 0.75rem;
}

.rv-card-toc h3 svg {
  color: var(--primary);
}

.rv-toc-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rv-toc-nav a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}

.rv-toc-nav a:hover {
  color: var(--primary);
}

/* Articles */
.rv-article {
  scroll-margin-top: 6rem;
}

.rv-article h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0 0 1rem;
}

.rv-article p {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin: 0 0 1rem;
}

.rv-article p:last-child {
  margin-bottom: 0;
}

/* CTA Card */
.rv-card-cta {
  background: linear-gradient(135deg, rgba(45, 90, 61, 0.1), rgba(45, 90, 61, 0.05));
  border: 1px solid var(--primary);
  text-align: center;
}

.rv-card-cta h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
}

.rv-card-cta p {
  color: var(--muted-foreground);
  margin: 0.5rem 0 1rem;
}

/* Sidebar */
.rv-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rv-sidebar-sticky {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .rv-sidebar-sticky {
    position: sticky;
    top: 6rem;
  }
}

/* Bonus Card */
.rv-card-bonus {
  border: 1px solid rgba(45, 90, 61, 0.3);
  overflow: hidden;
}

.rv-bonus-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  color: var(--primary-foreground);
}

.rv-bonus-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.rv-terms {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rv-term-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--foreground);
}

.rv-term-item svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--primary);
}

/* Warnings Card */
.rv-card-warnings {
  background: rgba(139, 90, 60, 0.05);
  border: 1px solid rgba(139, 90, 60, 0.3);
}

.rv-card-header-inline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  border-bottom: 1px solid rgba(139, 90, 60, 0.2);
}

.rv-card-warnings .rv-card-header-inline svg {
  color: var(--accent);
}

.rv-warnings-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rv-warnings-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--foreground);
}

.rv-warnings-list li svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--accent);
}

/* Responsible Gaming Card */
.rv-card-responsible {
  background: var(--foreground);
  color: var(--background);
  text-align: center;
}

.rv-card-responsible svg {
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.rv-age-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.rv-card-responsible p {
  font-size: 0.875rem;
  color: rgba(245, 240, 235, 0.8);
  line-height: 1.6;
  margin: 0;
}

.rv-card-responsible a {
  color: var(--accent);
  text-decoration: none;
}

.rv-card-responsible a:hover {
  text-decoration: underline;
}

/* Related List */
.rv-related-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rv-related-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--secondary);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  transition: background-color 0.2s;
}

.rv-related-item:hover {
  background: rgba(237, 232, 227, 0.8);
}

.rv-related-item svg {
  color: var(--muted-foreground);
}

/* OLD Review Page styles - keeping for backwards compat */
.review-hero {
  background: rgba(237, 232, 227, 0.5);
  padding: 3rem 0 4rem;
}

.review-hero-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .review-hero-container {
    padding: 0 2rem;
  }
}

.review-hero-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .review-hero-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.review-main-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
}

@media (min-width: 1024px) {
  .review-main-card {
    padding: 2rem;
  }
}

.review-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .review-header {
    flex-direction: row;
    align-items: flex-start;
  }
}

.review-logo {
  width: 10rem;
  height: 6rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
}

.review-info {
  flex: 1;
}

.review-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.review-title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
}

@media (min-width: 1024px) {
  .review-title {
    font-size: 2.25rem;
  }
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.rating-score {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--accent);
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
}

.rating-score svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent-foreground);
  fill: var(--accent-foreground);
}

.rating-score span {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent-foreground);
}

.rating-stars {
  display: flex;
}

.rating-stars svg {
  width: 1.25rem;
  height: 1.25rem;
}

.rating-stars .star-filled {
  fill: var(--accent);
  color: var(--accent);
}

.rating-stars .star-half {
  fill: var(--muted);
  color: var(--muted);
}

.rating-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.review-license {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.review-license svg {
  margin-top: 0.125rem;
  flex-shrink: 0;
  color: var(--primary);
}

.review-updated {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.review-description {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.review-description h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.review-description p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.review-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .review-ctas {
    flex-direction: row;
  }
}

/* Review Pros/Cons */
.review-pros-cons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-pros {
  background: rgba(45, 90, 61, 0.05);
  border: 1px solid rgba(45, 90, 61, 0.2);
  border-radius: 1rem;
  padding: 1.25rem;
}

.card-cons {
  background: rgba(220, 38, 38, 0.05);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 1rem;
  padding: 1.25rem;
}

.card-pros h3,
.card-cons h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
}

.icon-circle svg {
  width: 1rem;
  height: 1rem;
}

.icon-primary {
  background: rgba(45, 90, 61, 0.2);
  color: var(--primary);
}

.icon-destructive {
  background: rgba(220, 38, 38, 0.2);
  color: #dc2626;
}

.pros-list,
.cons-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.pros-list li,
.cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.pros-list li svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--primary);
}

.cons-list li svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: #dc2626;
}

/* ===== Review Details Section ===== */
.review-details {
  padding: 3rem 0;
}

.review-details-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .review-details-container {
    padding: 0 2rem;
  }
}

.review-details .section-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 2rem;
}

.details-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .details-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.details-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
}

.details-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.details-card-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
}

.details-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
}

.details-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.details-icon-primary {
  background: rgba(45, 90, 61, 0.1);
  color: var(--primary);
}

.details-icon-accent {
  background: rgba(139, 90, 60, 0.1);
  color: var(--accent);
}

.details-icon-blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.details-icon-purple {
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
}

.details-card-content {
  padding: 1.25rem;
}

.details-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.details-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1rem 0;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.stat-value {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}

.details-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(45, 90, 61, 0.05);
  padding: 0.625rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.details-highlight svg {
  color: var(--primary);
}

.games-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.game-stat {
  background: var(--secondary);
  padding: 0.75rem;
  border-radius: 0.5rem;
  text-align: center;
}

.game-stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}

.game-stat-value.primary {
  color: var(--primary);
}

.game-stat-value.accent {
  color: var(--accent);
}

.game-stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.platform-list,
.support-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.platform-item,
.support-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary);
  padding: 0.625rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.platform-item svg,
.support-item svg {
  color: var(--primary);
}

.details-note {
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(237, 232, 227, 0.5);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ===== Review Content Section ===== */
.review-content {
  padding: 3rem 0 4rem;
}

.review-content-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .review-content-container {
    padding: 0 2rem;
  }
}

.review-content-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .review-content-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.review-main-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Table of Contents */
.card-toc {
  background: rgba(45, 90, 61, 0.05);
  border: 1px solid rgba(45, 90, 61, 0.2);
  border-radius: 1rem;
  padding: 1.25rem;
}

.card-toc h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.card-toc h3 svg {
  color: var(--primary);
}

.toc-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toc-nav a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Content Sections */
.content-section {
  scroll-margin-top: 6rem;
}

.content-section h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.content-section p {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-section p:last-child {
  margin-bottom: 0;
}

/* CTA Card */
.card-cta {
  background: linear-gradient(135deg, rgba(45, 90, 61, 0.1), rgba(45, 90, 61, 0.05));
  border: 1px solid var(--primary);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.card-cta h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.card-cta p {
  color: var(--muted-foreground);
  margin: 0.5rem 0 1rem;
}

/* Review Sidebar */
.review-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-sticky {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .sidebar-sticky {
    position: sticky;
    top: 6rem;
  }
}

/* Bonus Card */
.card-bonus {
  border: 1px solid rgba(45, 90, 61, 0.3);
  border-radius: 1rem;
  overflow: hidden;
}

.bonus-header {
  background: var(--primary);
  padding: 0.75rem 1.25rem;
}

.bonus-header h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary-foreground);
}

.bonus-header svg {
  width: 1.25rem;
  height: 1.25rem;
}

.bonus-content {
  padding: 1.25rem;
}

.bonus-value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.bonus-content > p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.bonus-terms {
  margin-bottom: 1rem;
}

.terms-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.term-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.term-item svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--primary);
}

/* Warnings Card */
.card-warnings {
  background: rgba(139, 90, 60, 0.05);
  border: 1px solid rgba(139, 90, 60, 0.3);
  border-radius: 1rem;
  padding: 1.25rem;
}

.card-warnings h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.card-warnings h4 svg {
  color: var(--accent);
}

.card-warnings ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-warnings li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--foreground);
}

.card-warnings li svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--accent);
}

/* Responsible Gaming Card */
.card-responsible {
  background: var(--foreground);
  color: var(--background);
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
}

.card-responsible svg {
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.card-responsible .age-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-responsible p {
  font-size: 0.875rem;
  color: rgba(245, 240, 235, 0.8);
  line-height: 1.6;
}

.card-responsible a {
  color: var(--accent);
  text-decoration: none;
}

.card-responsible a:hover {
  text-decoration: underline;
}

/* Related Reviews Card */
.card-related {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
}

.card-related h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.related-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--secondary);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  transition: background-color 0.2s;
}

.related-item:hover {
  background: rgba(237, 232, 227, 0.8);
}

.related-item svg {
  color: var(--muted-foreground);
}

/* ===== Review Page - New Components ===== */

/* Payment Methods Grid */
.rv-payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .rv-payment-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.rv-payment-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
}

.rv-payment-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.rv-payment-header svg {
  color: var(--primary);
}

.rv-payment-header span {
  font-weight: 600;
  font-size: 0.9rem;
}

.rv-payment-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.rv-payment-details div {
  display: flex;
  justify-content: space-between;
}

.rv-payment-details span {
  color: var(--muted-foreground);
}

.rv-payment-details strong {
  color: var(--foreground);
}

/* Pros and Cons */
.rv-pros-cons {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .rv-pros-cons {
    grid-template-columns: 1fr 1fr;
  }
}

.rv-pros, .rv-cons {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.25rem;
}

.rv-pros {
  border-left: 4px solid var(--primary);
}

.rv-cons {
  border-left: 4px solid var(--destructive);
}

.rv-pros h4, .rv-cons h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.rv-pros h4 svg {
  color: var(--primary);
}

.rv-cons h4 svg {
  color: var(--destructive);
}

.rv-pros ul, .rv-cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rv-pros li, .rv-cons li {
  font-size: 0.9rem;
  padding-left: 1.5rem;
  position: relative;
}

.rv-pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
}

.rv-cons li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--destructive);
  font-weight: 600;
}

/* FAQ Accordion */
.rv-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.rv-faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
}

.rv-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.rv-faq-question svg {
  flex-shrink: 0;
  color: var(--muted-foreground);
  transition: transform 0.3s;
}

.rv-faq-item.active .rv-faq-question svg {
  transform: rotate(180deg);
}

.rv-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.rv-faq-item.active .rv-faq-answer {
  max-height: 500px;
}

.rv-faq-answer p {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin: 0;
}

/* Verdict Box */
.rv-verdict {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(135deg, var(--primary), #234a2f);
  color: white;
  padding: 1.5rem;
  border-radius: 1rem;
  margin-top: 1.5rem;
}

.rv-verdict-score {
  display: flex;
  align-items: baseline;
  flex-shrink: 0;
}

.rv-verdict-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.rv-verdict-max {
  font-size: 1.25rem;
  opacity: 0.8;
}

.rv-verdict-text strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.rv-verdict-text p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

/* Related Recommendations Section */
.rv-related-section {
  background: linear-gradient(180deg, var(--secondary) 0%, var(--background) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.rv-related-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.rv-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.rv-section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), #234a2f);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.rv-section-header h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .rv-section-header h2 {
    font-size: 2.5rem;
  }
}

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

.rv-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .rv-related-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.rv-related-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem 1.25rem 1.5rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.rv-related-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s;
}

.rv-related-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.rv-related-card:hover::before {
  opacity: 1;
}

.rv-related-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.6rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(45, 90, 61, 0.3);
}

.rv-related-badge.accent {
  background: var(--accent);
  box-shadow: 0 2px 8px rgba(139, 90, 60, 0.3);
}

.rv-related-badge.chart {
  background: #4a7c59;
  box-shadow: 0 2px 8px rgba(74, 124, 89, 0.3);
}

.rv-related-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: var(--background);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.rv-related-card:hover .rv-related-logo {
  transform: scale(1.05);
}

.rv-related-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0.5rem;
}

.rv-related-info {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.rv-related-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
}

.rv-related-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 600;
}

.rv-related-rating svg {
  color: var(--accent);
}

.rv-related-bonus {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin: 0;
  line-height: 1.4;
}

.rv-related-card .btn {
  width: 100%;
  justify-content: center;
}

.rv-related-card .btn-sm {
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
}

.rv-related-tag {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  white-space: nowrap;
}

.rv-related-cta {
  text-align: center;
  margin-top: 3rem;
}

.rv-related-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(45, 90, 61, 0.3);
}

.rv-related-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 90, 61, 0.4);
}
