/* BetNav Brasil - Main Styles */
/* Retro/Playful theme - Cream background with colorful highlights */

:root {
  /* V8 Retro/Playful theme colors */
  --background: #faf7f2;
  --foreground: #1a1a1a;
  --card: #ffffff;
  --card-foreground: #1a1a1a;
  --popover: #ffffff;
  --popover-foreground: #1a1a1a;
  --primary: #1a1a1a;
  --primary-foreground: #faf7f2;
  --secondary: #f0ebe3;
  --secondary-foreground: #3a3a3a;
  --muted: #e8e2d9;
  --muted-foreground: #6b6b6b;
  /* Colorful accent highlights */
  --accent: #a855f7;
  --accent-foreground: #1a1a1a;
  --highlight-purple: #a855f7;
  --highlight-pink: #ec4899;
  --highlight-yellow: #fbbf24;
  --highlight-blue: #3b82f6;
  --highlight-green: #22c55e;
  --destructive: #dc2626;
  --destructive-foreground: #ffffff;
  --border: #d4cfc6;
  --input: #f5f1ea;
  --ring: #a855f7;
  --radius: 0.75rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

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

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

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

::selection {
  background: var(--highlight-yellow);
  color: var(--foreground);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* Layout utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Top Bar */
.top-bar {
  border-bottom: 2px solid var(--foreground);
  background: #fcd34d;
  padding: 0.5rem 0;
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.top-bar-content span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 2px solid var(--foreground);
  background: var(--background);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  border: 2px solid var(--foreground);
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 4px 4px 0 var(--foreground);
}

.logo-icon span {
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
}

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

.logo-text .name {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
}

.logo-text .subtitle {
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

/* Navigation */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

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

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  transition: all 0.2s ease;
}

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

.nav-link.active {
  background: #fde68a;
}

/* Header right side */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Sticker style tags */
.sticker {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.75rem;
  transform: rotate(-2deg);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.sticker-pink {
  background: var(--highlight-pink);
  color: white;
}

.sticker-purple {
  background: var(--highlight-purple);
  color: white;
}

.sticker-yellow {
  background: var(--highlight-yellow);
  color: var(--foreground);
}

.sticker-blue {
  background: var(--highlight-blue);
  color: white;
}

/* Retro button style */
.btn-retro {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 2px solid var(--foreground);
  box-shadow: 4px 4px 0 var(--foreground);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.1s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-retro:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--foreground);
}

.btn-retro:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 var(--foreground);
}

.btn-retro-purple {
  background: var(--highlight-purple);
  color: white;
}

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

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

.btn-retro-yellow {
  background: var(--highlight-yellow);
  color: var(--foreground);
}

/* Mobile menu button */
.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  border: 2px solid var(--foreground);
  border-radius: 0.5rem;
  background: transparent;
  cursor: pointer;
}

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

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 50;
  border-bottom: 2px solid var(--foreground);
  background: var(--background);
  padding: 1rem;
}

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

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

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

.mobile-menu .nav-link {
  display: block;
  padding: 0.75rem 1rem;
  text-align: center;
  border: 2px solid var(--foreground);
  border-radius: 0.5rem;
}

/* Pixel-style border */
.pixel-border {
  box-shadow: 4px 4px 0 var(--foreground);
}

/* Playful card hover */
.card-playful {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid transparent;
}

.card-playful:hover {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: 6px 6px 0 var(--foreground);
  border-color: var(--foreground);
}

/* Card base */
.card {
  background: var(--card);
  border-radius: var(--radius);
  border: 2px solid var(--foreground);
}

/* Hero Section */
.hero {
  background: var(--background);
  padding: 1rem 0 3rem;
}

.hero-box {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 2px solid var(--foreground);
  background: var(--highlight-purple);
  padding: 2rem;
  box-shadow: 4px 4px 0 var(--foreground);
}

@media (min-width: 768px) {
  .hero-box {
    padding: 3rem;
  }
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.hero-pattern .circle-1 {
  position: absolute;
  left: 2.5rem;
  top: 2.5rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 4px solid white;
  transform: rotate(12deg);
}

.hero-pattern .circle-2 {
  position: absolute;
  bottom: 5rem;
  right: 5rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  border: 4px solid white;
  transform: rotate(-12deg);
}

.hero-pattern .square {
  position: absolute;
  right: 10rem;
  top: 5rem;
  width: 4rem;
  height: 4rem;
  border: 4px solid white;
  transform: rotate(45deg);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 2rem;
}

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

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: white;
}

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

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

.hero h1 .highlight {
  display: inline-block;
  padding: 0 0.5rem;
  border-radius: 0.25rem;
  background: #fde68a;
  color: var(--foreground);
}

.hero-description {
  margin-top: 1rem;
  max-width: 28rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
}

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

.hero-image {
  display: none;
  position: relative;
}

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

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-floating-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 2px solid var(--foreground);
  background: white;
  box-shadow: 4px 4px 0 var(--foreground);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-floating-badge i {
  font-size: 1.5rem;
  color: var(--highlight-purple);
}

.hero-floating-badge p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.hero-floating-badge .number {
  font-size: 1.5rem;
  font-weight: 700;
}

/* Stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: -1.5rem;
  padding: 0 2rem;
}

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

.stat-item {
  padding: 1rem;
  border-radius: 0.75rem;
  border: 2px solid var(--foreground);
  text-align: center;
  box-shadow: 4px 4px 0 var(--foreground);
}

.stat-item .value {
  font-size: 1.5rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .stat-item .value {
    font-size: 1.875rem;
  }
}

.stat-item .label {
  font-size: 0.75rem;
  font-weight: 500;
}

.stat-yellow {
  background: var(--highlight-yellow);
}

.stat-pink {
  background: var(--highlight-pink);
  color: white;
}

.stat-blue {
  background: var(--highlight-blue);
  color: white;
}

.stat-purple {
  background: var(--highlight-purple);
  color: white;
}

/* Top casinos quick cards */
.top-casinos-quick {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .top-casinos-quick {
    grid-template-columns: repeat(3, 1fr);
  }
}

.casino-quick-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 2px solid var(--foreground);
  background: var(--card);
}

.casino-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  border: 2px solid var(--foreground);
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.casino-quick-card .info {
  flex: 1;
}

.casino-quick-card .info h3 {
  font-size: 1.125rem;
  font-weight: 700;
}

.casino-quick-card .rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.casino-quick-card .stars {
  display: flex;
  gap: 0.125rem;
}

.casino-quick-card .stars i {
  font-size: 0.75rem;
  color: var(--highlight-yellow);
}

.casino-quick-card .score {
  font-size: 0.875rem;
  font-weight: 700;
}

.quick-card-logo {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

/* Section styles */
.section {
  padding: 4rem 0;
}

.section-secondary {
  background: var(--secondary);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.25rem;
  }
}

.section-header h2 .highlight {
  display: inline-block;
  padding: 0 0.5rem;
  border-radius: 0.25rem;
  background: #fde68a;
}

.section-header h2 .highlight-pink {
  background: #fbcfe8;
}

/* Featured casinos grid */
.featured-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.featured-card.main {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .featured-card.main {
    grid-column: span 2;
  }
}

.featured-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}

.featured-card-header .badge-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: white;
}

.featured-card-header .rank {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
}

.featured-card-body {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .featured-card.main .featured-card-body {
    display: flex;
    gap: 2rem;
  }
}

.featured-card .content {
  flex: 1;
}

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

.featured-card .title-row h3 {
  flex: 1;
}

.featured-card-logo {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.featured-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  background: #fde68a;
}

.rating-badge i {
  font-size: 1rem;
}

.rating-badge span {
  font-weight: 700;
}

.featured-card .description {
  margin-top: 0.5rem;
  color: var(--muted-foreground);
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.highlight-tag {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: var(--secondary);
  font-size: 0.75rem;
  font-weight: 500;
}

.highlight-tag i {
  color: var(--highlight-purple);
}

.bonus-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 2px solid var(--foreground);
  background: #fef3c7;
}

@media (min-width: 768px) {
  .featured-card.main .bonus-box {
    width: 16rem;
    margin-top: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.bonus-box .label {
  font-size: 0.75rem;
  font-weight: 500;
}

.bonus-box .value {
  font-size: 1.125rem;
  font-weight: 700;
}

/* Comparison Table */
.comparison-table {
  overflow: hidden;
  border-radius: 1rem;
  border: 2px solid var(--foreground);
  background: var(--card);
}

.table-header {
  display: none;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 2px solid var(--foreground);
  background: var(--foreground);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--background);
}

@media (min-width: 1024px) {
  .table-header {
    display: grid;
  }
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 2px solid var(--foreground);
}

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

.table-row:last-child {
  border-bottom: none;
}

.table-row.featured {
  background: #fffbeb;
}

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

.rank-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  border: 2px solid var(--foreground);
  font-size: 1.125rem;
  font-weight: 700;
}

.name-cell {
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .brand-logo {
    width: 40px;
    height: 40px;
  }
}

.bonus-logo {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .bonus-logo {
    width: 40px;
    height: 40px;
  }
}

/* Bonus Page Styles */
.bonus-hero {
  padding: 3rem 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
}

.bonus-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.bonus-hero .subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.bonus-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  .bonus-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.bonus-type-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.bonus-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.bonus-type-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.bonus-type-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.bonus-type-card p {
  font-size: 0.875rem;
  color: var(--muted);
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bonus-card {
  position: relative;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
}

.bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  border-radius: 0 0 0.75rem 0;
}

.bonus-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
}

@media (max-width: 1024px) {
  .bonus-content {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .bonus-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.bonus-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 640px) {
  .bonus-brand {
    justify-content: center;
  }
}

.bonus-brand h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.bonus-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
}

.bonus-rating i {
  color: var(--highlight-yellow);
}

.bonus-rating span {
  font-weight: 700;
  margin-left: 0.25rem;
}

.bonus-offer {
  text-align: center;
}

@media (max-width: 640px) {
  .bonus-offer {
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
}

.bonus-type {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.bonus-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--highlight-green);
  margin-bottom: 0.25rem;
}

.bonus-extra {
  font-size: 0.875rem;
  color: var(--highlight-purple);
  font-weight: 500;
}

.bonus-details {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

@media (max-width: 1024px) {
  .bonus-details {
    grid-column: span 2;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 640px) {
  .bonus-details {
    grid-column: span 1;
    flex-wrap: wrap;
    gap: 1rem;
  }
}

.bonus-details .detail {
  text-align: center;
}

.bonus-details .label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.bonus-details .value {
  font-weight: 700;
  font-size: 0.875rem;
}

.bonus-content > .btn-retro {
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .bonus-content > .btn-retro {
    grid-column: span 2;
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .bonus-content > .btn-retro {
    grid-column: span 1;
    width: 100%;
  }
}

/* Bonus Info Section */
.bonus-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .bonus-info-grid {
    grid-template-columns: 1fr;
  }
}

.bonus-info-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}

.bonus-info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bonus-info-card h3 i {
  color: var(--highlight-purple);
}

.bonus-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bonus-info-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.bonus-info-list li:last-child {
  border-bottom: none;
}

.bonus-info-list li i {
  color: var(--highlight-green);
  margin-top: 0.25rem;
}

.bonus-tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .bonus-tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

.tip-card .tip-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--highlight-purple);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.tip-card h4 {
  margin-bottom: 0.5rem;
}

.tip-card p {
  font-size: 0.875rem;
  color: var(--muted);
}

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

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

.rating-cell i {
  color: var(--highlight-yellow);
}

.rating-cell span {
  font-weight: 700;
}

.bonus-cell {
  display: none;
  text-align: center;
}

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

.bonus-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: #fef3c7;
  font-size: 0.875rem;
  font-weight: 500;
}

.features-cell {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
}

.feature-item i.fa-check {
  color: var(--highlight-green);
}

.feature-item i.fa-times {
  color: var(--destructive);
}

.action-cell {
  display: flex;
  justify-content: flex-end;
}

/* Game categories */
.categories-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

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

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 2px solid var(--foreground);
  background: var(--card);
  text-align: center;
  cursor: pointer;
}

.category-card i {
  font-size: 2rem;
}

.category-card span {
  font-weight: 600;
}

/* Why Trust Us */
.trust-grid {
  display: grid;
  gap: 1rem;
}

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

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

.trust-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  font-size: 1.5rem;
}

.trust-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.trust-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

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

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

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

.news-card img {
  width: 100%;
  height: 6rem;
  object-fit: cover;
}

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

.news-card .date {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.news-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.news-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Logo Images - 65x65 limit */
.casino-logo,
.brand-logo-small {
  width: 65px;
  height: 65px;
  object-fit: contain;
  border-radius: 8px;
}

/* FAQ Section */
.faq-section {
  display: grid;
  gap: 3rem;
}

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

.faq-header {
  display: flex;
  flex-direction: column;
}

.faq-header .label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.faq-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .faq-header h2 {
    font-size: 2.25rem;
  }
}

.faq-header p {
  margin-top: 1rem;
  color: var(--muted-foreground);
}

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

.faq-item {
  border-bottom: 1px solid var(--border);
}

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: var(--secondary);
}

.faq-question span {
  font-weight: 600;
  padding-right: 1rem;
}

.faq-question .toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--secondary);
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-item.active .faq-question .toggle {
  background: var(--accent);
  color: white;
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--secondary);
}

.faq-item.active .faq-answer {
  display: block;
  padding-top: 1rem;
}

.faq-answer p {
  color: var(--muted-foreground);
}

/* Footer */
.footer {
  border-top: 2px solid var(--foreground);
  background: var(--background);
}

.footer-marquee {
  overflow: hidden;
  border-bottom: 2px solid var(--foreground);
  background: #fcd34d;
  padding: 1.5rem 0;
}

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

.marquee-content:hover {
  animation-play-state: paused;
}

.marquee-content span {
  margin: 0 2rem;
  font-size: 1.5rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .marquee-content span {
    font-size: 2.25rem;
  }
}

.marquee-content .star {
  color: var(--highlight-purple);
}

.marquee-content .diamond {
  color: var(--highlight-pink);
}

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

.footer-content {
  padding: 3rem 0;
}

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

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

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

.footer-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 2px solid var(--foreground);
  background: var(--card);
}

.footer-brand {
  box-shadow: 4px 4px 0 var(--foreground);
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

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

.footer-card h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-card h4 .number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  font-size: 0.75rem;
  color: white;
}

.footer-card ul {
  list-style: none;
}

.footer-card ul li {
  margin-bottom: 0.5rem;
}

.footer-card ul a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-card ul a:hover {
  color: var(--highlight-purple);
}

.footer-card ul a i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.footer-card ul a:hover i {
  transform: translateX(4px);
}

.footer-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 2px solid var(--foreground);
  background: #fef3c7;
}

.footer-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
}

.footer-badge i {
  font-size: 1.25rem;
}

.footer-badge .purple {
  color: var(--highlight-purple);
}

.footer-badge .pink {
  color: var(--highlight-pink);
}

.footer-badge .blue {
  color: var(--highlight-blue);
}

.footer-bottom {
  border-top: 2px solid var(--foreground);
  background: var(--foreground);
  color: var(--background);
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
  }
}

/* Info Page Layout */
.info-hero {
  background: var(--foreground);
  color: var(--background);
  padding: 4rem 0;
}

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

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

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  opacity: 0.6;
  margin-bottom: 1.5rem;
}

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

.info-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

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

.info-hero .subtitle {
  margin-top: 1rem;
  font-size: 1.125rem;
  opacity: 0.7;
}

.info-hero .updated {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  opacity: 0.6;
}

.info-content {
  background: var(--background);
  padding: 3rem 0;
}

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

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

.info-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}

.info-content h2:first-child {
  margin-top: 0;
}

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

.info-content ul {
  margin-bottom: 1rem;
  padding-left: 1rem;
}

.info-content ul li {
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.info-highlights {
  display: grid;
  gap: 1rem;
  margin-bottom: 3rem;
}

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

.info-highlight-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--accent);
  background: rgba(168, 85, 247, 0.05);
}

.info-highlight-card i {
  font-size: 2rem;
  color: var(--accent);
}

.info-highlight-card h3 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.info-highlight-card p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin: 0;
}

.info-box {
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin: 1.5rem 0;
}

.info-box-primary {
  border: 1px solid var(--accent);
  background: rgba(168, 85, 247, 0.05);
}

.info-box-warning {
  border: 1px solid var(--highlight-yellow);
  background: rgba(251, 191, 36, 0.1);
}

.info-box-danger {
  border: 1px solid var(--destructive);
  background: rgba(220, 38, 38, 0.05);
}

.info-list-icon {
  list-style: none;
  padding: 0;
}

.info-list-icon li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.info-list-icon li i {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.info-list-icon li i.fa-check-circle {
  color: var(--highlight-green);
}

.info-list-icon li i.fa-times-circle {
  color: var(--destructive);
}

.info-list-icon li i.fa-database,
.info-list-icon li i.fa-envelope,
.info-list-icon li i.fa-eye,
.info-list-icon li i.fa-chart-bar,
.info-list-icon li i.fa-bullseye {
  color: var(--accent);
}

/* Contact Page */
.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: 1.5rem;
}

.contact-info h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

.contact-info > p {
  color: var(--muted-foreground);
  margin-top: -1rem;
}

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

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

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

.contact-card .icon i {
  font-size: 1.25rem;
  color: var(--accent);
}

.contact-card h3 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

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

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

.faq-link-card {
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid var(--accent);
  background: rgba(168, 85, 247, 0.05);
}

.faq-link-card h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.faq-link-card h3 i {
  font-size: 1.5rem;
  color: var(--accent);
}

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

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

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

.contact-form-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-form-card > p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

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

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

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

.form-group.full-width {
  grid-column: span 1;
}

@media (min-width: 640px) {
  .form-group.full-width {
    grid-column: span 2;
  }
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--background);
  font-size: 0.875rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.2);
}

.form-group textarea {
  resize: none;
  min-height: 9rem;
}

/* About Page */
.about-hero {
  background: var(--secondary);
  padding: 4rem 0;
}

@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 .label {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(26, 26, 26, 0.1);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.about-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

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

.about-hero .description {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--muted-foreground);
}

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

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

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

.about-image {
  display: none;
  position: relative;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(168, 85, 247, 0.1);
}

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

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

/* Values Section */
.values-section {
  padding: 4rem 0;
}

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

.values-header {
  text-align: center;
  margin-bottom: 3rem;
}

.values-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
}

.values-header p {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
}

.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 {
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  text-align: center;
}

.value-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  background: rgba(168, 85, 247, 0.1);
}

.value-card .icon i {
  font-size: 1.75rem;
  color: var(--accent);
}

.value-card h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Methodology Section */
.methodology-section {
  background: var(--foreground);
  color: var(--background);
  padding: 4rem 0;
}

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

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

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

.methodology-section .label {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(168, 85, 247, 0.2);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.methodology-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
}

.methodology-section .description {
  margin-top: 1rem;
  opacity: 0.7;
}

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

.methodology-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.methodology-list li i {
  color: var(--accent);
}

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

.methodology-item {
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.methodology-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.methodology-item h3 {
  font-weight: 600;
}

.methodology-item .weight {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: var(--accent);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
}

.methodology-item p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.6;
}

/* Team Section */
.team-section {
  padding: 4rem 0;
}

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

.team-header {
  text-align: center;
  margin-bottom: 3rem;
}

.team-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
}

.team-header p {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
}

.team-grid {
  display: grid;
  gap: 2rem;
}

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

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

.team-card .image {
  height: 16rem;
  background: var(--secondary);
  overflow: hidden;
}

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

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

.team-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

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

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

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

.responsible-gaming .container {
  max-width: 56rem;
  text-align: center;
}

.responsible-gaming-box {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--accent);
  background: rgba(168, 85, 247, 0.05);
}

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

.responsible-gaming-box i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.responsible-gaming-box h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.responsible-gaming-box p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

/* Review Page Styles */
.review-hero {
  background: linear-gradient(135deg, var(--highlight-purple) 0%, #7c3aed 100%);
  padding: 3rem 0;
  color: white;
}

.review-hero .container {
  max-width: 1280px;
}

.review-hero-content {
  display: grid;
  gap: 2rem;
  align-items: center;
}

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

.review-info h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .review-info h1 {
    font-size: 3rem;
  }
}

.review-brand-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.review-rating-box {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
}

.review-rating-box .stars {
  display: flex;
  gap: 0.25rem;
}

.review-rating-box .stars i {
  color: var(--highlight-yellow);
}

.review-rating-box .score {
  font-size: 1.25rem;
  font-weight: 700;
}

.review-description {
  font-size: 1.125rem;
  opacity: 0.9;
  line-height: 1.7;
}

.review-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.review-quick-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.quick-info-card {
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-info-card .label {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-bottom: 0.25rem;
}

.quick-info-card .value {
  font-weight: 700;
}

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

.review-content .container {
  max-width: 1280px;
}

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

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

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

.review-section {
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid var(--foreground);
  background: var(--card);
}

.review-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-section h2 i {
  color: var(--accent);
}

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

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

/* Pros and Cons */
.pros-cons-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pros-cons-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pros-box,
.cons-box {
  padding: 1.5rem;
  border-radius: 0.75rem;
}

.pros-box {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid var(--highlight-green);
}

.cons-box {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid var(--destructive);
}

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

.pros-box h3 i {
  color: var(--highlight-green);
}

.cons-box h3 i {
  color: var(--destructive);
}

.pros-box ul,
.cons-box ul {
  list-style: none;
  padding: 0;
}

.pros-box ul li,
.cons-box ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.pros-box ul li i {
  color: var(--highlight-green);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.cons-box ul li i {
  color: var(--destructive);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

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

.sidebar-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 2px solid var(--foreground);
  background: var(--card);
}

.sidebar-card h3 {
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-card h3 i {
  color: var(--accent);
}

.sidebar-list {
  list-style: none;
  padding: 0;
}

.sidebar-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.sidebar-list li:last-child {
  border-bottom: none;
}

.sidebar-list li .label {
  color: var(--muted-foreground);
}

.sidebar-list li .value {
  font-weight: 600;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.payment-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: var(--secondary);
  font-size: 0.75rem;
  font-weight: 500;
}

.providers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.provider-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  background: var(--secondary);
  font-size: 0.75rem;
  font-weight: 500;
}

/* License Badge */
.license-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid var(--highlight-green);
}

.license-badge i {
  font-size: 1.5rem;
  color: var(--highlight-green);
  flex-shrink: 0;
}

.license-badge .content h4 {
  font-weight: 700;
  color: var(--highlight-green);
  margin-bottom: 0.25rem;
}

.license-badge .content p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* Softened Review Hero */
.review-hero-soft {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(124, 58, 237, 0.1) 50%, var(--background) 100%);
  border-bottom: 2px solid var(--border);
}

.review-hero-soft .review-info h1,
.review-hero-soft .review-info p,
.review-hero-soft .review-meta span,
.review-hero-soft .review-rating-box .rating-count {
  color: var(--foreground);
}

.review-hero-soft .review-rating-box .score {
  color: var(--highlight-purple);
}

.review-hero-soft .stars i {
  color: var(--highlight-yellow);
}

.review-hero-soft .quick-info-card {
  background: var(--card);
  border: 2px solid var(--border);
}

.review-hero-soft .quick-info-card .label {
  color: var(--muted-foreground);
}

.review-hero-soft .quick-info-card .value {
  color: var(--foreground);
}

.review-hero-soft .quick-info-card .value.highlight-green {
  color: var(--highlight-green);
}

/* Rating Dimensions */
.rating-dimensions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .rating-dimensions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.rating-dimension-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.rating-dimension-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.dimension-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.dimension-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.dimension-score {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--foreground);
}

.rating-dimension-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.dimension-bar {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.dimension-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.5s ease;
}

.rating-dimension-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* Certifications Grid */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

@media (max-width: 768px) {
  .certifications-grid {
    grid-template-columns: 1fr;
  }
}

.certification-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--secondary);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
}

.cert-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.cert-info h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.125rem;
}

.cert-info p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin: 0 0 0.25rem 0;
}

.cert-status {
  font-size: 0.75rem;
  font-weight: 500;
}

.cert-status.active {
  color: var(--highlight-green);
}

.security-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--secondary);
  border-radius: 9999px;
  font-size: 0.875rem;
}

.security-item i {
  color: var(--highlight-green);
}

/* Payment Table */
.payment-table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
}

.payment-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.payment-table th,
.payment-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.payment-table th {
  background: var(--secondary);
  font-weight: 600;
  white-space: nowrap;
}

.payment-table tr:hover {
  background: var(--secondary);
}

.payment-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 0.75rem;
  border-left: 4px solid #3b82f6;
}

.payment-highlight i {
  color: #3b82f6;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.payment-highlight p {
  margin: 0;
  font-size: 0.875rem;
}

/* UX Grid */
.ux-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

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

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

.ux-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.ux-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.ux-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.ux-score {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--highlight-green);
}

.ux-stars {
  display: flex;
  gap: 0.125rem;
}

.ux-stars i {
  color: var(--highlight-yellow);
  font-size: 0.875rem;
}

.ux-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ux-card ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  padding: 0.375rem 0;
  color: var(--muted-foreground);
}

.ux-card ul li i.fa-check {
  color: var(--highlight-green);
}

.ux-card ul li i.fa-times {
  color: var(--destructive);
}

/* Games Stats Grid */
.games-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

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

.game-stat-card {
  background: var(--secondary);
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
  border: 1px solid var(--border);
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--highlight-purple);
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

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

/* Popular Games */
.popular-games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

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

.popular-game {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background: var(--secondary);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
}

.game-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

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

/* User Reviews Summary */
.user-reviews-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--secondary);
  border-radius: 1rem;
  margin: 1.5rem 0;
  border: 1px solid var(--border);
}

@media (max-width: 768px) {
  .user-reviews-summary {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.review-score-big {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.review-score-big .score {
  font-size: 3rem;
  font-weight: 700;
  color: var(--highlight-green);
  line-height: 1;
}

.review-score-big .stars {
  display: flex;
  gap: 0.25rem;
}

.review-score-big .stars i {
  color: var(--highlight-yellow);
}

.review-score-big .count {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.review-distribution {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.dist-label {
  width: 70px;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.dist-bar {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.dist-fill {
  height: 100%;
  background: var(--highlight-yellow);
  border-radius: 4px;
}

.dist-pct {
  width: 35px;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: right;
}

/* User Review Cards */
.user-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.user-review-card {
  padding: 1.25rem;
  background: var(--secondary);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
}

.user-review-card .review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

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

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--highlight-purple);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.reviewer-name {
  display: block;
  font-weight: 600;
}

.user-review-card .review-date {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.user-review-card .review-rating i {
  color: var(--highlight-yellow);
  font-size: 0.875rem;
}

.review-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

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

.review-tags .tag {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  background: var(--background);
  border-radius: 9999px;
  font-size: 0.75rem;
}

.review-tags .tag i.fa-check {
  color: var(--highlight-green);
}

.review-tags .tag i.fa-minus {
  color: var(--highlight-yellow);
}

/* Verdict Card */
.verdict-card {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
  border-color: var(--highlight-purple);
}

.verdict-score {
  text-align: center;
  margin: 1rem 0;
}

.verdict-score .score {
  font-size: 3rem;
  font-weight: 700;
  color: var(--highlight-green);
  display: block;
  line-height: 1;
}

.verdict-score .label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--highlight-purple);
}

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

/* Responsible Gaming */
.responsible-gaming {
  background: rgba(236, 72, 153, 0.05);
  border-color: var(--highlight-pink);
}

.responsible-gaming h3 i {
  color: var(--highlight-pink);
}

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

.rg-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.rg-badges span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: var(--background);
  border-radius: 0.5rem;
  font-size: 0.75rem;
}

.rg-badges span i {
  color: var(--highlight-pink);
}

/* Utility classes */
.hidden {
  display: none !important;
}

@media (min-width: 768px) {
  .hidden-mobile {
    display: flex !important;
  }
}

@media (min-width: 1024px) {
  .hidden-tablet {
    display: flex !important;
  }
}

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

.mb-0 {
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem;
  background: var(--foreground);
  color: var(--background);
  border-top: 2px solid var(--accent);
  display: none;
}

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

.cookie-banner .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .cookie-banner .container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.cookie-banner p {
  font-size: 0.875rem;
  margin: 0;
}

.cookie-banner p a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 0.5rem;
}

.cookie-banner-buttons button {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.cookie-banner-buttons button:hover {
  opacity: 0.9;
}

.btn-accept {
  background: var(--accent);
  color: white;
  border: none;
}

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

/* Breadcrumb Navigation */
.breadcrumb {
  background: var(--secondary);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
}

.breadcrumb-item a {
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

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

.breadcrumb-item a i {
  margin-right: 0.25rem;
}

.breadcrumb-item.active {
  color: var(--foreground);
  font-weight: 600;
}

.breadcrumb-separator {
  color: var(--muted-foreground);
  font-size: 0.625rem;
}

/* Rating Count */
.review-rating-box .rating-count {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-left: 0.25rem;
}

/* Review Meta (date, author) */
.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  opacity: 0.85;
}

.review-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.review-meta i {
  font-size: 0.75rem;
}

/* FAQ Section */
.faq-section {
  margin-top: 2rem;
}

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

.faq-item:hover {
  border-color: var(--accent);
}

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

.faq-question:hover {
  background: var(--secondary);
}

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

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

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

/* ===================================
   Editorial Section & Methodology
   =================================== */

.editorial-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border);
}

.editorial-header {
  margin-bottom: 2rem;
}

.editorial-header h2 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.editorial-header h2 i {
  color: var(--highlight-purple);
}

.editorial-header p {
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

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

.editorial-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.editorial-card h3 i {
  color: var(--highlight-purple);
}

/* Team Members */
.team-members {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.team-member {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--secondary);
  border-radius: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-member:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.member-avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--highlight-purple), var(--highlight-pink));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-avatar i {
  font-size: 1.25rem;
  color: white;
}

.member-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.member-role {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--highlight-purple);
  background: rgba(168, 85, 247, 0.15);
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}

.member-info p {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  line-height: 1.4;
  margin: 0;
}

/* Methodology Steps */
.methodology-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.methodology-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: linear-gradient(135deg, var(--highlight-purple), var(--highlight-pink));
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.step-content p {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  line-height: 1.4;
  margin: 0;
}

.methodology-note {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 0.75rem;
  margin-top: 1.25rem;
}

.methodology-note i {
  color: var(--highlight-green);
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.methodology-note p {
  font-size: 0.85rem;
  color: var(--foreground);
  line-height: 1.5;
  margin: 0;
}

/* Trust Badges Section */
.trust-badges-section {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
}

.trust-badges-section h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

.trust-badges-section h3 i {
  color: var(--highlight-yellow);
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--secondary);
  border-radius: 0.75rem;
  transition: transform 0.2s ease;
}

.trust-badge:hover {
  transform: translateY(-3px);
}

.badge-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.badge-icon i {
  font-size: 1.5rem;
  color: white;
}

.badge-info h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.badge-info p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.3;
  margin: 0;
}

/* Editorial Compact Component */
.editorial-compact {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
  border: 2px solid rgba(168, 85, 247, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
}

.editorial-summary {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.editorial-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: linear-gradient(135deg, var(--highlight-purple), var(--highlight-pink));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.editorial-icon i {
  font-size: 1.5rem;
  color: white;
}

.editorial-text h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.editorial-text p {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--highlight-purple);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.editorial-link:hover {
  gap: 0.75rem;
}

.trust-badges-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.trust-badge-mini {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: var(--secondary);
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--foreground);
}

.trust-badge-mini i {
  font-size: 0.875rem;
}

@media (max-width: 640px) {
  .editorial-summary {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .trust-badges-compact {
    justify-content: center;
  }
}

/* Version History Card */
.version-history-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
  border-color: rgba(59, 130, 246, 0.3);
}

.version-history-card h3 i {
  color: var(--highlight-blue);
}

.version-timeline {
  position: relative;
  padding-left: 1.25rem;
}

.version-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: var(--border);
}

.version-item {
  position: relative;
  padding-bottom: 1rem;
}

.version-item:last-child {
  padding-bottom: 0;
}

.version-dot {
  position: absolute;
  left: -1.35rem;
  top: 0.25rem;
  width: 10px;
  height: 10px;
  background: var(--border);
  border-radius: 50%;
  border: 2px solid var(--card);
}

.version-item.current .version-dot {
  background: var(--highlight-green);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.version-content {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  align-items: center;
}

.version-date {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--foreground);
}

.version-tag {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.125rem 0.375rem;
  background: var(--highlight-purple);
  color: white;
  border-radius: 0.25rem;
}

.version-item.current .version-tag {
  background: var(--highlight-green);
}

.version-content p {
  width: 100%;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin: 0.25rem 0 0;
  line-height: 1.4;
}

.version-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.version-meta span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.version-meta i {
  color: var(--highlight-blue);
}
