:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #111827;
  --bg-card: #1a1f35;
  --bg-hover: #242a42;
  --accent-primary: #3b82f6;
  --accent-secondary: #2563eb;
  --accent-gold: #fbbf24;
  --accent-green: #10b981;
  --accent-red: #ef4444;
  --text-primary: #f9fafb;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --border-color: #374151;
  --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Age Gate Banner */
.age-gate {
  background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  padding: 6px 0;
  position: relative; /* scrolls away with content */
  top: auto;
  z-index: 1;
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

.age-gate .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-gate-text {
  font-size: 12px;
  font-weight: 500;
  color: #e5e7eb;
  margin: 0;
  text-align: center;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.age-restriction {
  font-size: 13px;
  font-weight: 800;
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(251, 191, 36, 0.4);
  letter-spacing: 0.3px;
  display: inline-block;
}

.age-gate-link {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  border-bottom: 1px solid transparent;
}

.age-gate-link:hover {
  color: #3b82f6;
  border-bottom-color: #3b82f6;
}

/* Responsive Age Gate */
@media (max-width: 768px) {
  .age-gate {
    padding: 5px 0;
  }

  .age-gate-text {
    font-size: 11px;
    gap: 4px;
  }

  .age-restriction {
    font-size: 12px;
    padding: 2px 6px;
  }

  .age-gate-visible .header {
    top: 28px;
  }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  background-color: rgba(22, 27, 34, 0.95);
  border-bottom: 1px solid var(--border-color);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  transition: top 0.25s ease;
}

.age-gate-visible .header {
  top: 30px;
}

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

.logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.logo:hover {
  text-decoration: none;
}

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

.logo-emoji {
  -webkit-text-fill-color: initial;
}

/* Image logo sizing/alignment */
.logo img.logo-emoji {
  width: 22px;
  height: 22px;
  display: inline-block;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* Hide burger by default (desktop) */
.burger {
  display: none;
}

.btn-disclosure {
  background: var(--gradient-gold);
  color: #000 !important;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255, 184, 0, 0.3);
  display: inline-block;
  text-decoration: none;
}

.btn-disclosure:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
}

/* Keep link styled as button; no underline effect from nav links */
.nav .btn-disclosure::after {
  content: none;
}

.nav .btn-disclosure,
.nav .btn-disclosure:hover {
  text-decoration: none;
}

.hero {
  padding: 100px 0 80px;
  text-align: center;
  background: linear-gradient(
      180deg,
      rgba(10, 14, 26, 0.9) 0%,
      rgba(17, 24, 39, 0.9) 100%
    ),
    url("../img/bg1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(0, 217, 255, 0.08) 0%,
    transparent 70%
  );
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translateX(-50%) scale(1.1);
    opacity: 0.8;
  }
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 230, 118, 0.15);
  border: 1px solid var(--accent-green);
  border-radius: 20px;
  color: var(--accent-green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

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

.stat-number {
  font-size: 38px;
  font-weight: 800;
  color: var(--accent-primary);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.btn {
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(59, 130, 246, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-primary);
  border: 2px solid var(--accent-primary);
}

.btn-secondary:hover {
  background: var(--accent-primary);
  color: #000;
  transform: translateY(-3px);
}

.featured {
  padding: 90px 0;
  background-color: var(--bg-secondary);
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.6;
}

.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}

.ranking-item {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 28px 24px 24px 24px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: grid;
  grid-template-columns: 60px 200px 1fr 140px 100px 200px;
  grid-template-rows: auto auto;
  gap: 20px 24px;
  align-items: center;
  min-height: 120px;
  box-shadow: var(--shadow-sm);
}

.ranking-item:hover {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.item-badge {
  position: absolute;
  top: -14px;
  left: 90px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  z-index: 2;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.item-badge.recommended {
  background: var(--gradient-primary);
  color: white;
}

.item-badge.popular {
  background: var(--gradient-gold);
  color: #1a1f35;
}

.item-badge.best-offer {
  background: var(--gradient-success);
  color: white;
}

.rank-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border-radius: 10px;
  width: 50px;
  height: 50px;
  border: 2px solid var(--border-color);
}

.rank-number {
  font-size: 26px;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.casino-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.casino-logo {
  background: #ffffff;
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border-color);
  flex-shrink: 0;
  min-width: 90px;
  max-width: 90px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.ranking-item:hover .casino-logo {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.casino-logo img {
  display: block;
  object-fit: contain;
  min-width: 60px;
  min-height: 60px;
  height: auto;
  width: auto;
}

.casino-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}

.casino-info h3 {
  font-size: 16px;
  margin: 0;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

.badge-licensed {
  background: rgba(0, 230, 118, 0.15);
  color: var(--accent-green);
}

.bonus-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.bonus-cell h4 {
  font-size: 14px;
  color: var(--text-primary);
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
}

.bonus-terms {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
}

.rating-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 110px;
}

.stars {
  display: flex;
  gap: 2px;
  flex-wrap: nowrap;
}

.star {
  color: var(--text-muted);
}

.star.filled {
  color: var(--accent-gold);
}

.votes {
  font-size: 12px;
  color: var(--text-secondary);
  white-space: nowrap;
}

.votes span {
  font-size: 10px;
  color: var(--text-muted);
}

.review-link {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
}

.review-link a {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 600;
}

.review-link a:hover {
  text-decoration: underline;
}

.score-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 70px;
}

.score-value {
  font-size: 32px;
  font-weight: 900;
  background: var(--gradient-success);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.score-icon {
  color: var(--accent-green);
  filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.3));
}

.action-cell {
  display: flex;
  align-items: center;
  justify-content: center;
}

.get-bonus-btn {
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
  text-align: center;
  white-space: nowrap;
  min-width: 180px;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.get-bonus-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.get-bonus-btn:hover::before {
  left: 100%;
}

.get-bonus-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.5);
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.info-block {
  grid-column: 2 / -1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px;
  margin-top: 6px;
  background: rgba(17, 24, 39, 0.5);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  gap: 20px;
}

.disclaimer {
  display: flex;
  gap: 10px;
  flex: 1;
}

.disclaimer svg {
  flex-shrink: 0;
  color: var(--text-muted);
}

.disclaimer p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
}

.min-deposit {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 600;
  white-space: nowrap;
}

.comparison-cta {
  text-align: center;
  padding: 48px;
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.05) 0%,
    rgba(0, 106, 255, 0.05) 100%
  );
  border-radius: 16px;
  border: 1px solid rgba(0, 217, 255, 0.2);
}

.comparison-cta h3 {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.comparison-cta p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 16px;
}

.btn-comparison {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gradient-gold);
  color: #000;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

.btn-comparison:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
}

.bonus-section {
  padding: 90px 0;
  background: var(--bg-primary);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.bonus-card {
  background: linear-gradient(
    145deg,
    var(--bg-card) 0%,
    rgba(28, 33, 40, 0.9) 100%
  );
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.bonus-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 217, 255, 0.08),
    transparent
  );
  transition: left 0.6s ease;
}

.bonus-card:hover::after {
  left: 100%;
}

.bonus-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-primary);
  box-shadow: 0 12px 40px rgba(0, 217, 255, 0.15);
}

.bonus-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.bonus-header {
  margin-bottom: 16px;
}

.bonus-header h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-weight: 700;
}

.bonus-tag {
  display: inline-block;
  background: rgba(0, 230, 118, 0.15);
  color: var(--accent-green);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.bonus-details {
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
}

.detail-item {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 8px;
}

.detail-item:last-child {
  margin-bottom: 0;
}

.detail-item strong {
  color: var(--text-primary);
  font-weight: 600;
}

.btn-bonus-learn {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-bonus-learn:hover {
  transform: translateX(4px);
  color: var(--accent-secondary);
}

.bonus-warning {
  background: rgba(255, 184, 0, 0.1);
  border: 1px solid rgba(255, 184, 0, 0.3);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.warning-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.warning-content h4 {
  color: var(--accent-gold);
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
}

.warning-content p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.articles-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.article-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-primary);
}

.article-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.article-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  background: var(--bg-secondary);
}

.article-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(26, 31, 53, 0.8) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.article-card:hover .article-image::after {
  opacity: 1;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.article-content {
  padding: 28px;
}

.article-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.article-card:hover .article-content h3 {
  color: var(--accent-primary);
}

.article-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: gap 0.3s ease;
}

.article-card:hover .read-more {
  gap: 12px;
}

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

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

  .article-image {
    height: 200px;
  }

  .article-content {
    padding: 20px;
  }

  .article-content h3 {
    font-size: 18px;
  }
}

.faq-section {
  padding: 90px 0;
  background: var(--bg-secondary);
}

.faq-grid {
  display: grid;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent-primary);
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.1);
}

.faq-question {
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s ease;
}

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

.faq-question h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  flex: 1;
  padding-right: 20px;
}

.faq-toggle {
  font-size: 28px;
  color: var(--accent-primary);
  font-weight: 300;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-secondary);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--accent-primary);
  color: #000;
}

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

.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 28px 24px 28px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 15px;
  margin: 0;
}

.reviews-section {
  padding: 90px 0;
  background: var(--bg-primary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.review-card {
  background: linear-gradient(
    135deg,
    var(--bg-card) 0%,
    rgba(28, 33, 40, 0.85) 100%
  );
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.review-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 217, 255, 0.15);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 16px;
}

.reviewer-name {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 15px;
}

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

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

.review-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.review-text {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

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

.reviews-disclaimer {
  background: rgba(0, 217, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  padding: 20px 28px;
  text-align: center;
}

.reviews-disclaimer p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.reviews-disclaimer strong {
  color: var(--text-primary);
}

/* Article Pages */
.article-hero {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 100px 0;
}

.article-hero-content {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.article-hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  color: var(--text-secondary);
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-body {
  padding: 80px 0;
  background: var(--bg-primary);
}

.article-container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  max-width: 1400px;
}

.article-main {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 48px;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.article-main .lead {
  font-size: 20px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-weight: 500;
}

.article-main h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 48px 0 24px 0;
  line-height: 1.3;
}

.article-main h2:first-of-type {
  margin-top: 0;
}

.article-main h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 36px 0 20px 0;
  line-height: 1.4;
}

.article-main h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 28px 0 16px 0;
}

.article-main p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.article-main ul,
.article-main ol {
  margin: 24px 0;
  padding-left: 28px;
}

.article-main li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.article-main a {
  color: var(--accent-primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.article-main a:hover {
  border-bottom-color: var(--accent-primary);
}

.info-box {
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid var(--accent-primary);
  border-radius: 8px;
  padding: 24px 28px;
  margin: 32px 0;
}

.info-box h4 {
  color: var(--accent-primary);
  margin-top: 0;
  margin-bottom: 16px;
}

.info-box ul {
  margin-bottom: 0;
}

.strategy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  background: var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
}

.strategy-table thead {
  background: var(--bg-hover);
}

.strategy-table th {
  padding: 16px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.strategy-table td {
  padding: 16px;
  font-size: 15px;
  color: var(--text-secondary);
  border-top: 1px solid var(--border-color);
}

.article-cta {
  background: var(--gradient-primary);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin-top: 48px;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.article-cta h3 {
  color: white;
  font-size: 28px;
  margin: 0 0 12px 0;
}

.article-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 24px;
}

.article-cta .btn {
  background: white;
  color: var(--accent-primary);
  font-weight: 800;
}

.article-cta .btn:hover {
  background: var(--bg-card);
  transform: translateY(-3px);
}

.article-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.sidebar-widget {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 28px;
  border: 2px solid var(--border-color);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.sidebar-widget p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.related-articles {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-articles li {
  margin-bottom: 12px;
}

.related-articles a {
  font-size: 15px;
  color: var(--text-secondary);
  text-decoration: none;
  display: flex;
  align-items: start;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.related-articles a:before {
  content: "→";
  color: var(--accent-primary);
  font-weight: 700;
  flex-shrink: 0;
}

.related-articles a:hover {
  background: var(--bg-hover);
  color: var(--accent-primary);
  transform: translateX(4px);
}

.help-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.help-links li {
  margin-bottom: 8px;
}

.help-links a {
  font-size: 14px;
  color: var(--accent-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.help-links a:hover {
  gap: 12px;
}

@media (max-width: 1024px) {
  .article-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .article-sidebar {
    position: static;
  }

  .article-hero h1 {
    font-size: 36px;
  }

  .article-main {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .article-hero {
    min-height: 400px;
    padding: 60px 0;
  }

  .article-hero h1 {
    font-size: 28px;
  }

  .article-main {
    padding: 24px;
  }

  .article-main h2 {
    font-size: 26px;
  }

  .article-main h3 {
    font-size: 20px;
  }

  .strategy-table {
    font-size: 13px;
  }

  .strategy-table th,
  .strategy-table td {
    padding: 12px 8px;
  }
}

/* Reviews Page Styles */
.hero-reviews {
  background: linear-gradient(
      180deg,
      rgba(10, 14, 26, 0.9) 0%,
      rgba(17, 24, 39, 0.9) 100%
    ),
    url("../img/bg1.png");
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-reviews::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(59, 130, 246, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 217, 255, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-reviews .container {
  position: relative;
  z-index: 2;
}

.reviews-casinos {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.review-card {
  background: linear-gradient(
    135deg,
    var(--bg-card) 0%,
    rgba(28, 33, 40, 0.92) 100%
  );
  border-radius: 24px;
  padding: 40px 32px;
  border: 1px solid var(--border-color);
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-card:hover::before {
  opacity: 1;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
  border-color: var(--accent-primary);
}

.review-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.review-badge.recommended {
  background: var(--gradient-primary);
  color: white;
}

.review-badge.popular {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}

.review-badge.trusted {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.review-rank {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.review-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.review-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(1.05);
  transition: transform 0.3s ease;
}

.review-card:hover .review-logo img {
  transform: scale(1.05);
}

.review-casino-name {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: -0.4px;
}

.review-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.score-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  font-size: 30px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
  border: 3px solid rgba(255, 255, 255, 0.15);
  position: relative;
}

.score-stars {
  font-size: 22px;
  color: #fbbf24;
  letter-spacing: 3px;
  text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

.review-bonus {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.bonus-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.5;
}

.bonus-terms {
  font-size: 13px;
  color: var(--text-muted);
}

.review-highlights {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
  transition: color 0.2s ease;
}

.review-card:hover .highlight-item {
  color: var(--text-primary);
}

.highlight-item svg {
  color: var(--accent-primary);
  flex-shrink: 0;
  stroke-width: 2;
}

.review-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-actions .btn {
  width: 100%;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.review-actions .btn-primary {
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.review-actions .btn-primary:hover {
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
  transform: translateY(-2px);
}

.review-actions .btn-secondary {
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-primary);
  border: 1px solid var(--accent-primary);
}

.review-actions .btn-secondary:hover {
  background: rgba(59, 130, 246, 0.2);
  transform: translateY(-2px);
}

/* Reviews page: logo tile on white */
.reviews-casinos .review-logo {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 6px 20px rgba(2, 6, 23, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 24px;
}

/* Slightly larger highlight icons on reviews */
.reviews-casinos .highlight-item svg {
  width: 18px;
  height: 18px;
}

.reviews-casinos .review-logo img {
  max-width: 130px;
  height: auto;
}

.evaluation-section {
  padding: 90px 0;
  background: var(--bg-primary);
}

.evaluation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.evaluation-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 32px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.evaluation-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.eval-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.evaluation-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.evaluation-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.eval-criteria {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eval-criteria span {
  font-size: 13px;
  color: var(--accent-primary);
  padding: 8px 12px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 6px;
  border-left: 3px solid var(--accent-primary);
}

.finder-section {
  padding: 90px 0;
  background: var(--bg-secondary);
}

.finder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.finder-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 32px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.finder-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.finder-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.finder-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.finder-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.finder-recommendations {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.rec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: var(--bg-hover);
  border-radius: 8px;
  font-size: 14px;
}

.rec-item strong {
  color: var(--text-primary);
  font-weight: 700;
}

.rec-item span {
  color: var(--text-muted);
  font-size: 13px;
}

.finder-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-primary);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.finder-link:hover {
  gap: 12px;
}

.finder-cta {
  margin-top: 64px;
  text-align: center;
  padding: 48px;
  background: var(--bg-card);
  border-radius: 20px;
  border: 2px solid var(--border-color);
}

.finder-cta h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.finder-cta p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

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

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

@media (max-width: 768px) {
  .reviews-grid,
  .evaluation-grid,
  .finder-grid {
    grid-template-columns: 1fr;
  }

  .hero-reviews {
    padding: 80px 0 60px;
  }

  .review-card {
    padding: 24px;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

/* Disclosure Page Styles */
.disclosure-hero {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: 100px 0 70px;
  text-align: center;
  position: relative;
}

.disclosure-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(59, 130, 246, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.disclosure-content {
  padding: 80px 0;
  background: var(--bg-primary);
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.disclosure-section {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 2px solid var(--border-color);
}

.disclosure-section:last-child {
  border-bottom: none;
}

.section-icon {
  font-size: 56px;
  margin-bottom: 24px;
}

.disclosure-section h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.disclosure-section p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.highlight-box {
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid var(--accent-primary);
  padding: 20px 24px;
  border-radius: 8px;
  margin: 24px 0;
}

.highlight-box strong {
  color: var(--accent-primary);
  font-weight: 700;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  padding: 16px;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.checklist svg {
  color: var(--accent-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.checklist span {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.emphasis {
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-card);
  padding: 16px 20px;
  border-radius: 8px;
  border-left: 4px solid #10b981;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.method-card {
  background: var(--bg-card);
  padding: 24px;
  border-radius: 12px;
  border: 2px solid var(--border-color);
}

.method-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.method-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.revenue-list {
  margin-top: 28px;
}

.revenue-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 2px solid var(--border-color);
  margin-bottom: 20px;
}

.revenue-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
}

.revenue-item:last-child .revenue-icon {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.revenue-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.revenue-content p {
  margin: 0;
  font-size: 15px;
  color: var(--text-secondary);
}

/* Links inside help/resource cards */
.revenue-content a,
.disclosure-section a,
.help-resources a {
  color: var(--accent-primary);
}

/* 18+ Modal */
.age-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.age-modal {
  width: 100%;
  max-width: 520px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  padding: 24px;
  text-align: center;
}

.age-modal h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--text-primary);
  font-weight: 800;
}

.age-modal p {
  margin: 0 0 18px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.age-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.age-modal .btn {
  min-width: 140px;
}

.revenue-content a:visited,
.disclosure-section a:visited,
.help-resources a:visited {
  color: var(--accent-primary);
}

.simple-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.simple-list li {
  padding: 12px 16px;
  margin-bottom: 10px;
  background: var(--bg-card);
  border-radius: 8px;
  border-left: 3px solid var(--accent-primary);
  color: var(--text-secondary);
  font-size: 15px;
}

.warning-box {
  background: var(--bg-card);
  border: 2px solid #f59e0b;
  border-radius: 12px;
  padding: 28px;
  margin: 24px 0;
}

.warning-box h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.warning-box p {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.7;
}

.help-resources {
  background: rgba(59, 130, 246, 0.05);
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.help-resources strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-size: 15px;
}

.help-resources ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.help-resources li {
  margin-bottom: 8px;
  font-size: 14px;
}

.help-resources a {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 600;
}

.help-resources a:hover {
  text-decoration: underline;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.contact-card {
  background: var(--bg-card);
  padding: 28px;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.contact-card a {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 600;
}

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

.disclosure-footer-note {
  margin-top: 60px;
  padding: 32px;
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 2px solid var(--border-color);
  text-align: center;
}

.disclosure-footer-note p {
  margin: 8px 0;
  font-size: 14px;
  color: var(--text-muted);
}

.disclosure-footer-note strong {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .disclosure-hero {
    padding: 70px 0 50px;
  }

  .disclosure-content {
    padding: 50px 0;
  }

  .content-wrapper {
    padding: 0 20px;
  }

  .disclosure-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .section-icon {
    font-size: 48px;
  }

  .disclosure-section h2 {
    font-size: 26px;
  }

  .methodology-grid,
  .contact-options {
    grid-template-columns: 1fr;
  }

  .revenue-item {
    flex-direction: column;
    text-align: center;
  }

  .revenue-icon {
    margin: 0 auto;
  }
}

.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 70px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--text-primary);
  font-weight: 700;
}

.footer-section p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-badge {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.footer-badge span {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 6px;
  color: var(--accent-primary);
  font-size: 12px;
  font-weight: 600;
}

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

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.responsible-badge {
  margin-top: 16px;
  padding: 16px;
  background: rgba(255, 184, 0, 0.1);
  border: 1px solid rgba(255, 184, 0, 0.3);
  border-radius: 8px;
}

.responsible-badge p {
  color: var(--accent-gold);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-bottom {
  padding-top: 48px;
  border-top: 1px solid var(--border-color);
}

.play-safe-section {
  margin-bottom: 40px;
  text-align: center;
}

.play-safe-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.play-safe__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.play-safe__item {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.play-safe__item:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.play-safe__item img {
  height: 40px;
  width: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-disclaimer {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 40px;
}

.disclaimer-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.disclaimer-icon {
  flex-shrink: 0;
  color: #ef4444;
  margin-top: 4px;
}

.disclaimer-content p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 16px;
}

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

.disclaimer-content strong {
  color: var(--text-primary);
  font-weight: 700;
}

.disclaimer-content a {
  color: var(--accent-primary);
  text-decoration: underline;
}

.disclaimer-content a:hover {
  text-decoration: none;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: 24px;
}

.footer-copyright p {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 4px;
}

.footer-certifications {
  display: flex;
  gap: 16px;
  align-items: center;
}

.certification-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 6px;
  color: var(--accent-primary);
  font-size: 13px;
  font-weight: 600;
}

.certification-badge svg {
  width: 20px;
  height: 20px;
}

.age-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #dc2626;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.age-number {
  color: white;
  font-size: 18px;
  font-weight: 900;
}

@media (max-width: 768px) {
  /* Burger base (visible only on mobile) */
  .burger {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    z-index: 1100;
    outline: none;
    -webkit-tap-highlight-color: transparent;
  }

  /* Use SVG icons for burger/close */
  .icon-burger,
  .icon-close {
    display: block;
  }
  .icon-close {
    display: none;
  }

  .burger:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
  }

  .header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .disclaimer-content {
    flex-direction: column;
    gap: 16px;
  }

  .footer-meta {
    flex-direction: column;
    text-align: center;
  }

  .play-safe__list {
    gap: 16px;
  }

  .play-safe__item img {
    height: 36px;
  }

  .footer-disclaimer {
    padding: 24px 20px;
  }

  .nav {
    gap: 20px;
    position: fixed;
    left: 0;
    right: 0;
    top: 60px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 16px;
    display: none;
    flex-direction: column;
  }

  .nav a {
    display: none;
  }

  .btn-disclosure {
    font-size: 11px;
    padding: 8px 16px;
  }

  /* Open mobile nav */
  body.nav-open .nav {
    display: flex;
  }
  body.nav-open .nav a {
    display: block;
  }

  /* Toggle SVG icons when open */
  body.nav-open .icon-burger {
    display: none;
  }
  body.nav-open .icon-close {
    display: block;
  }

  /* Smaller logo on mobile */
  .logo .logo-emoji {
    font-size: 18px;
    line-height: 1;
  }
  .logo .logo-text {
    font-size: 18px;
  }

  .logo img.logo-emoji {
    width: 18px;
    height: 18px;
  }

  .burger:focus-visible {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.35);
    border-color: var(--accent-primary);
  }

  .hero {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .section-title {
    font-size: 32px;
  }

  .ranking-item {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }

  .rank-cell {
    grid-column: 1;
    grid-row: 1;
    /* justify-content: flex-start; */
  }

  .casino-cell {
    grid-column: 1;
    grid-row: 2;
  }

  .bonus-cell {
    grid-column: 1;
    grid-row: 3;
  }

  .rating-cell {
    grid-column: 1;
    grid-row: 4;
  }

  .score-cell {
    grid-column: 1;
    grid-row: 5;
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
  }

  .action-cell {
    grid-column: 1;
    grid-row: 6;
  }

  .get-bonus-btn {
    width: 100%;
  }

  .info-block {
    grid-column: 1;
    grid-row: 7;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .comparison-cta {
    padding: 32px 20px;
  }

  .bonus-warning {
    flex-direction: column;
    gap: 12px;
  }

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

  .footer-logos {
    flex-direction: column;
  }
}
