
:root {
  --accent: #fdb913;
  --accent-hover: #d79d10;
  --accent2: #006a44;
  --accent-rgb: 253,185,19;
  --accent-light: #fff9ec;
  --accent-med: #fff5dc;
  --bg: #f8f9fc;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f2f8;
  --bg-nav: #ffffff;
  --text: #1e293b;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --heading: #0f172a;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --success: #16a34a;
  --star-color: #f59e0b;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.04);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Noto Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; }

.lang-switcher {
  background: var(--bg-white);
  padding: 6px 20px;
  text-align: right;
  border-bottom: 1px solid var(--border);
}
.lang-switcher a {
  color: var(--text-muted);
  margin-left: 15px;
  font-size: 0.82rem;
  padding: 2px 8px;
  border-radius: 4px;
  transition: all 0.2s;
}
.lang-switcher a.active, .lang-switcher a:hover {
  color: var(--accent);
  background: var(--accent-light);
}

.site-header { position: sticky; top: 0; z-index: 100; }
.main-nav {
  background: var(--bg-white);
  padding: 0 20px;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--heading);
  font-weight: 700;
  font-size: 1.15rem;
  padding: 12px 0;
}
.logo-img { height: 44px; width: 44px; }
.logo-text { font-size: 1.05rem; letter-spacing: -0.01em; }
.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--border);
  color: var(--text);
  font-size: 1.4rem;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-item a {
  color: var(--text-secondary);
  padding: 16px 14px;
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s;
  border-bottom: 2px solid transparent;
}
.nav-item a:hover, .nav-item.active > a {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-white);
  min-width: 220px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: var(--shadow-lg);
  list-style: none;
  z-index: 200;
  border: 1px solid var(--border);
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  padding: 10px 16px;
  font-size: 0.85rem;
  border-bottom: none;
  color: var(--text-secondary);
}
.dropdown-menu li a:hover { background: var(--accent-light); color: var(--accent); }

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px;
  min-height: 60vh;
}
.breadcrumbs {
  padding: 8px 0;
  margin-bottom: 20px;
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 0.82rem;
}
.breadcrumbs li::after { content: ' ›'; color: var(--text-muted); margin-left: 5px; }
.breadcrumbs li:last-child::after { display: none; }
.breadcrumbs li.current { color: var(--text-muted); }

.hero {
  text-align: center;
  padding: 48px 24px;
  margin-bottom: 32px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.hero h1 {
  font-size: 2rem;
  color: var(--heading);
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}
.hero p { color: var(--text-secondary); max-width: 650px; margin: 0 auto; font-size: 1.05rem; }

.casino-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.casino-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: all 0.25s ease;
  position: relative;
}
.casino-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.casino-card.featured { border-color: var(--accent); background: var(--accent-light); }
.casino-rank {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  min-width: 32px;
}
.casino-logo-wrap { width: 80px; height: 60px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.casino-logo { max-width: 80px; max-height: 60px; border-radius: var(--radius-sm); }
.casino-info { flex: 1; }
.casino-info h3 { color: var(--heading); font-size: 1.05rem; margin-bottom: 4px; font-weight: 600; }
.casino-rating { display: flex; align-items: center; gap: 5px; margin-bottom: 4px; }
.star.full, .star.half { color: var(--star-color); }
.star.empty { color: var(--border); }
.rating-num { color: var(--text-muted); font-size: 0.82rem; }
.casino-bonus { color: var(--success); font-size: 0.88rem; font-weight: 500; }
.casino-actions { display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; }

.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 3px rgba(var(--accent-rgb), 0.3);
}
.btn-primary:hover { background: var(--accent-hover); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(var(--accent-rgb), 0.25); }
.btn-secondary {
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid transparent;
}
.btn-secondary:hover { background: var(--accent-med); color: var(--accent-hover); }
.btn-large { padding: 14px 32px; font-size: 1rem; }
.btn-sm { padding: 6px 14px; font-size: 0.8rem; }

.how-we-rate {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 32px;
  box-shadow: var(--shadow);
}
.how-we-rate h2 { color: var(--heading); margin-bottom: 12px; font-weight: 700; }
.rating-criteria {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.criteria-item {
  background: var(--bg);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
}
.criteria-icon { font-size: 1.2rem; }
.evaluation-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 20px; }
.evaluation-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.evaluation-card h3 { color: var(--heading); margin-bottom: 6px; font-size: 1rem; font-weight: 600; }
.evaluation-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.6; }

.review-hero {
  background: var(--bg-white);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}
.review-header { display: flex; align-items: center; gap: 20px; }
.review-casino-logo { width: 90px; height: 90px; border-radius: var(--radius); object-fit: contain; background: var(--bg); padding: 10px; border: 1px solid var(--border); }
.review-header h1 { color: var(--heading); margin-bottom: 4px; font-weight: 700; }
.casino-rating-large { font-size: 1.3rem; }
.casino-rating-large span { color: var(--text-muted); font-size: 0.88rem; }
.review-grid { display: grid; grid-template-columns: 1fr 300px; gap: 28px; }
.review-main h2 { color: var(--heading); margin: 24px 0 12px; font-weight: 700; font-size: 1.2rem; }
.review-main h2:first-child { margin-top: 0; }

.bonus-highlight {
  background: var(--accent-light);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: var(--radius-sm);
  padding: 18px;
  font-size: 1.15rem;
  color: var(--accent);
  text-align: center;
  font-weight: 700;
}
.bonus-details {
  background: var(--bg);
  border-left: 3px solid var(--accent);
  padding: 14px 18px;
  margin: 12px 0 20px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.review-text {
  line-height: 1.8;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.casino-screenshot {
  margin: 18px 0 22px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.casino-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

.game-info-bar {
  display: flex;
  gap: 28px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 24px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.game-info-item { color: var(--text-secondary); font-size: 0.92rem; }
.game-info-item strong { color: var(--heading); }
.game-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}
@media (max-width: 900px) {
  .game-detail-layout { grid-template-columns: 1fr; }
}

.bonus-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.bonus-section {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.bonus-section h2 {
  color: var(--heading);
  font-size: 1.2rem;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  font-weight: 700;
}
.bonus-section p {
  line-height: 1.8;
  color: var(--text-secondary);
  font-size: 0.92rem;
}
.game-section {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.game-section h2 {
  color: var(--heading);
  font-size: 1.2rem;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  font-weight: 700;
}
.game-section-content {
  line-height: 1.8;
  color: var(--text-secondary);
  font-size: 0.92rem;
}
.game-detail-sidebar {
  position: sticky;
  top: 80px;
}
.game-detail-sidebar h3 {
  color: var(--heading);
  font-size: 1.05rem;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}
.casino-bonus-text {
  font-size: 0.78rem;
  color: var(--accent);
  margin-top: 3px;
  font-weight: 500;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.info-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.info-table tr:hover { background: var(--bg); }
.highlights-list {
  list-style: none;
  padding: 0;
}
.highlights-list li {
  padding: 7px 0;
  color: var(--success);
  font-size: 0.92rem;
}
.game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 12px;
}
.game-info-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: all 0.25s ease;
}
.game-info-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.game-info-card h4 {
  color: var(--heading);
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 600;
}
.game-info-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}
.game-info-card strong { color: var(--text); }

.casino-instructions {
  margin-top: 36px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.casino-instructions h2 {
  color: var(--heading);
  margin-bottom: 24px;
  font-size: 1.4rem;
  font-weight: 700;
}
.instruction-section {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}
.instruction-section:last-of-type {
  border-bottom: none;
  margin-bottom: 12px;
  padding-bottom: 0;
}
.instruction-section h3 {
  color: var(--heading);
  font-size: 1.1rem;
  margin-bottom: 14px;
  font-weight: 600;
}
.instruction-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
.instruction-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}
.instruction-steps li:last-child { border-bottom: none; }
.step-number {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
}
.step-text {
  color: var(--text-secondary);
  line-height: 1.6;
  padding-top: 4px;
}
.instruction-tip {
  background: var(--accent-light);
  border: 1px solid rgba(var(--accent-rgb), 0.15);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-top: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.92rem;
}

.cta-box {
  background: var(--bg-white);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  position: sticky;
  top: 80px;
  box-shadow: var(--shadow);
}
.cta-box h3 { color: var(--heading); margin-bottom: 8px; font-weight: 600; }
.cta-bonus { color: var(--accent); font-weight: 600; margin-bottom: 14px; }

.bonus-grid, .games-grid, .payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}
.bonus-card, .game-card, .payment-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}
.bonus-card:hover, .game-card:hover, .payment-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.game-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-top: 8px;
}
.bonus-card h3, .game-card h3, .payment-card h3 { color: var(--heading); margin-bottom: 10px; font-weight: 600; }
.bonus-card h3 a, .game-card h3 a, .payment-card h3 a { color: var(--heading); }
.bonus-card h3 a:hover, .game-card h3 a:hover, .payment-card h3 a:hover { color: var(--accent); }
.game-icon, .payment-icon { font-size: 2.2rem; margin-bottom: 10px; }

.casino-list.compact .casino-card { padding: 12px 16px; }
.casino-logo-sm { width: 48px; height: 38px; border-radius: var(--radius-sm); object-fit: contain; background: var(--bg); padding: 4px; border: 1px solid var(--border-light); }

.page-content { margin-bottom: 28px; }
.page-content h2 { color: var(--heading); margin-bottom: 14px; font-weight: 700; }
.page-content p { color: var(--text-secondary); line-height: 1.75; }

.legal-content {
  background: var(--bg-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.legal-content h2 { margin-top: 24px; color: var(--heading); }
.legal-content p { margin-bottom: 14px; color: var(--text-secondary); }

.site-footer {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding: 40px 20px 20px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-section {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}
.footer-section:last-of-type { border-bottom: none; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo { height: 72px; }
.footer-section h4 { color: var(--heading); margin-bottom: 10px; font-size: 0.95rem; font-weight: 600; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: var(--text-secondary); font-size: 0.88rem; }
.footer-links a:hover { color: var(--accent); }
.age-warning {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
}
.gambling-warning { color: var(--text-muted); font-size: 0.82rem; margin-bottom: 10px; }
.help-links { font-size: 0.82rem; }
.help-links a { color: var(--text-muted); }
.country-switcher { margin-top: 18px; }
.country-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.country-links a {
  color: var(--text-secondary);
  font-size: 0.82rem;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all 0.2s;
  background: var(--bg);
}
.country-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}
.social-icons { display: flex; gap: 14px; margin-top: 10px; }
.social-icon { color: var(--text-muted); transition: color 0.2s; }
.social-icon:hover { color: var(--accent); }
.footer-bottom {
  text-align: center;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
  margin-top: 18px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.78rem; }

.review-content { margin-bottom: 28px; }
.review-content p { color: var(--text-secondary); line-height: 1.75; }

.home-intro { margin-bottom: 8px; }
.home-intro h2 { font-size: 1.35rem; color: var(--heading); margin-bottom: 14px; }
.home-intro p { color: var(--text-secondary); line-height: 1.75; margin-bottom: 12px; }

.why-choose-section h2 { font-size: 1.35rem; color: var(--heading); margin-bottom: 18px; }
.why-choose-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.why-choose-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.why-choose-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }
.why-choose-card h3 { font-size: 1rem; color: var(--accent); margin-bottom: 8px; }
.why-choose-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

.legal-info-section h2 { font-size: 1.35rem; color: var(--heading); margin-bottom: 14px; }
.legal-info-section p { color: var(--text-secondary); line-height: 1.75; margin-bottom: 12px; }

.tips-section h2 { font-size: 1.35rem; color: var(--heading); margin-bottom: 14px; }
.tips-section p { color: var(--text-secondary); line-height: 1.75; margin-bottom: 12px; }

.faq-section h2 { font-size: 1.35rem; color: var(--heading); margin-bottom: 18px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.faq-question { font-size: 1rem; color: var(--heading); margin-bottom: 8px; }
.faq-answer { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.65; }

.payments-overview-section { max-width: 900px; margin: 0 auto 32px; padding: 0 20px; }
.payments-overview-section h2 { font-size: 1.35rem; color: var(--heading); margin-bottom: 14px; }
.payments-overview-section p { color: var(--text-secondary); line-height: 1.75; margin-bottom: 12px; }

.processing-times-section { max-width: 900px; margin: 32px auto; padding: 28px 32px; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); }
.processing-times-section h2 { font-size: 1.25rem; color: var(--heading); margin-bottom: 14px; }
.processing-times-section p { color: var(--text-secondary); line-height: 1.75; margin-bottom: 12px; }

.banking-tips-section { max-width: 900px; margin: 32px auto; padding: 0 20px; }
.banking-tips-section h2 { font-size: 1.35rem; color: var(--heading); margin-bottom: 18px; }
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.tip-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}
.tip-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.tip-card h3 { font-size: 1rem; color: var(--accent); margin-bottom: 8px; }
.tip-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

.payments-faq-section { max-width: 900px; margin: 32px auto; padding: 0 20px; }
.payments-faq-section h2 { font-size: 1.35rem; color: var(--heading); margin-bottom: 18px; }
.payments-faq-section .faq-list { display: flex; flex-direction: column; gap: 14px; }
.payments-faq-section .faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.payments-faq-section .faq-question { font-size: 1rem; color: var(--heading); margin-bottom: 8px; }
.payments-faq-section .faq-answer { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.65; }

.payment-guide-section {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 24px 0;
}
.payment-guide-section h3 { font-size: 1.15rem; color: var(--heading); margin-bottom: 14px; }
.payment-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}
.payment-steps li {
  position: relative;
  padding: 10px 0 10px 44px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.93rem;
  border-bottom: 1px solid var(--border);
}
.payment-steps li:last-child { border-bottom: none; }
.payment-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pros-cons-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}
.pros-col, .cons-col {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.pros-col { border-left: 4px solid #28a745; }
.cons-col { border-left: 4px solid #dc3545; }
.pros-col h3, .cons-col h3 { font-size: 1.05rem; color: var(--heading); margin-bottom: 12px; }
.pros-col ul, .cons-col ul { list-style: none; padding: 0; margin: 0; }
.pros-col li, .cons-col li {
  padding: 6px 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
  border-bottom: 1px solid var(--border);
}
.pros-col li:last-child, .cons-col li:last-child { border-bottom: none; }

.fees-limits-section, .security-section {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 20px 0;
}
.fees-limits-section h3, .security-section h3 { font-size: 1.1rem; color: var(--heading); margin-bottom: 10px; }
.fees-limits-section p, .security-section p { color: var(--text-secondary); line-height: 1.7; font-size: 0.93rem; }

.bonus-card.enriched {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.bonus-card-icon { font-size: 2.4rem; margin-bottom: 4px; }
.bonus-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 4px 0 10px;
}

.bonus-overview-section { margin-bottom: 28px; }
.bonus-overview-section h2 { font-size: 1.35rem; color: var(--heading); margin-bottom: 14px; }
.bonus-overview-section p { color: var(--text-secondary); line-height: 1.75; }

.bonus-claiming-section {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 24px 0;
}
.bonus-claiming-section h2 { font-size: 1.2rem; color: var(--heading); margin-bottom: 16px; }
.bonus-claiming-section .numbered-steps .step-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}
.bonus-claiming-section .numbered-steps .step-item:last-child { border-bottom: none; }
.bonus-claiming-section .numbered-steps .step-item p { color: var(--text-secondary); line-height: 1.6; padding-top: 4px; margin: 0; }

.bonus-wagering-section { margin: 24px 0; }
.bonus-wagering-section h2 { font-size: 1.2rem; color: var(--heading); margin-bottom: 14px; }
.bonus-wagering-section p { color: var(--text-secondary); line-height: 1.75; }
.wagering-example-box {
  background: var(--accent-light);
  border: 1px solid rgba(var(--accent-rgb), 0.15);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-top: 14px;
}
.wagering-example-box p { color: var(--text-secondary); line-height: 1.7; font-size: 0.93rem; }

.bonus-glossary-section { margin: 24px 0; }
.bonus-glossary-section h2 { font-size: 1.2rem; color: var(--heading); margin-bottom: 14px; }
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.glossary-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
}
.glossary-item dt {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.glossary-item dd {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.55;
}

.bonus-tips-section { margin: 24px 0; }
.bonus-tips-section h2 { font-size: 1.2rem; color: var(--heading); margin-bottom: 14px; }
.bonus-tips-section .tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}
.bonus-tips-section .tip-card h4 { font-size: 1rem; color: var(--accent); margin-bottom: 8px; }

.bonus-faq-section { margin: 28px 0; }
.bonus-faq-section h2 { font-size: 1.2rem; color: var(--heading); margin-bottom: 14px; }
.bonus-faq-section .faq-list { display: flex; flex-direction: column; gap: 12px; }
.bonus-faq-section .faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
}
.bonus-faq-section .faq-item h4 { font-size: 0.98rem; color: var(--heading); margin-bottom: 8px; }
.bonus-faq-section .faq-item p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.65; margin: 0; }

.bonus-detail-section {
  margin: 24px 0;
}
.bonus-detail-section h2 { font-size: 1.15rem; color: var(--heading); margin-bottom: 14px; }
.bonus-terms-checklist {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.bonus-terms-checklist .checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bonus-terms-checklist .checklist li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.6;
}
.bonus-terms-checklist .checklist li:last-child { border-bottom: none; }

.bonus-mistakes-section {
  background: #fff5f5;
  border: 1px solid #fed7d7;
  border-left: 4px solid #fc8181;
  border-radius: var(--radius);
  padding: 22px 26px;
}
.bonus-mistakes-section .mistakes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bonus-mistakes-section .mistakes-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(252, 129, 129, 0.15);
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.6;
}
.bonus-mistakes-section .mistakes-list li:last-child { border-bottom: none; }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    padding: 8px 0;
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.open { display: flex; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--bg);
    min-width: auto;
  }
  .dropdown:hover .dropdown-menu { display: block; }
  .casino-card { flex-direction: column; text-align: center; }
  .casino-actions { flex-direction: row; }
  .review-grid { grid-template-columns: 1fr; }
  .review-header { flex-direction: column; text-align: center; }
  .hero h1 { font-size: 1.5rem; }
  .evaluation-grid { grid-template-columns: 1fr; }
  .bonus-grid, .games-grid, .payments-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .processing-times-section { padding: 20px 16px; }
  .pros-cons-section { grid-template-columns: 1fr; }
  .payment-guide-section { padding: 18px 16px; }
  .glossary-grid { grid-template-columns: 1fr; }
  .bonus-claiming-section { padding: 18px 16px; }
  .bonus-terms-checklist { padding: 16px 18px; }
  .bonus-mistakes-section { padding: 16px 18px; }
  .bonus-tips-section .tips-grid { grid-template-columns: 1fr; }
  .wagering-example-box { padding: 14px 16px; }
}
