:root {
  --bg: #ffffff;
  --bg-header: #000000;
  --bg-footer: #0a0a0a;
  --bg-card: #f8f9fa;
  --bg-surf: #141414;
  --bg-surf2: #e9ecef;
  --accent: #e52521;
  --accent2: #ff3a35;
  --accent-red: #ff2a2a;
  --neon: #26d926;
  --success: #26d926;
  --text: #1a1a1a;
  --text-light: #ffffff;
  --text2: #6c757d;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent2); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============ HEADER ============ */
.site-header {
  background: var(--bg-header);
  color: var(--text-light);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}
.logo-link { display: inline-flex; align-items: center; }
.logo-img { height: 40px; width: auto; }

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 6px;
  flex-wrap: wrap;
}
.main-nav a {
  color: var(--text-light);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: background .2s, color .2s;
  display: block;
}
.main-nav a:hover { background: rgba(255,255,255,.08); color: var(--text-light); }
.main-nav a.is-active {
  background: var(--accent);
  color: var(--text-light);
}

.play-btn {
  background: var(--accent);
  color: var(--text-light) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .5px;
  box-shadow: 0 4px 14px rgba(229,37,33,.4);
  transition: transform .15s, background .2s, box-shadow .2s;
  white-space: nowrap;
}
.play-btn:hover {
  background: var(--accent2);
  transform: translateY(-1px);
  color: var(--text-light);
  box-shadow: 0 6px 18px rgba(229,37,33,.55);
}

.burger {
  display: none;
  background: none;
  border: 0;
  color: var(--text-light);
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--text-light);
  margin: 5px 0;
  transition: transform .3s, opacity .2s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .header-inner { flex-wrap: wrap; }
  .burger { display: block; order: 3; }
  .play-btn { order: 2; padding: 8px 16px; font-size: 13px; }
  .main-nav {
    order: 4;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .main-nav.open { max-height: 800px; }
  .main-nav ul {
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
  }
  .main-nav a { padding: 12px 14px; }
}

/* ============ MAIN & CONTENT ============ */
main { flex: 1; }

.hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: var(--text-light);
  padding: 60px 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(229,37,33,.15), transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 900px; margin: 0 auto; }
.hero h1 {
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -.5px;
}
.hero h1 span { color: var(--accent); }
.hero p.lead {
  font-size: 18px;
  color: rgba(255,255,255,.85);
  max-width: 720px;
  margin: 0 auto 24px;
}
.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--text-light);
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(229,37,33,.5);
  transition: transform .15s, background .2s;
}
.hero-cta:hover { background: var(--accent2); transform: translateY(-2px); color: var(--text-light); }

.content-section { padding: 50px 0; }
.content-section h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 32px 0 16px;
  color: var(--text);
  letter-spacing: -.3px;
}
.content-section h3 {
  font-size: clamp(20px, 2.4vw, 24px);
  margin: 24px 0 12px;
  color: var(--text);
}
.content-section p { margin-bottom: 16px; color: var(--text); }
.content-section ul, .content-section ol { margin: 12px 0 20px 24px; }
.content-section li { margin-bottom: 8px; }
.content-section a { border-bottom: 1px dotted var(--accent); }

.content-section img.article-img {
  border-radius: var(--radius);
  margin: 24px 0;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

/* Casino review card block: image 300x300 + CTA button */
.casino-review-card {
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
  border: 1px solid #eaeaea;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0 32px;
  box-shadow: var(--shadow-lg);
}
.casino-review-card__img {
  flex: 0 0 300px;
  width: 300px;
  height: 300px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  border: 1px solid #f0f0f0;
}
.casino-review-card__body { flex: 1; min-width: 0; }
.casino-review-card__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text);
  line-height: 1.2;
}
.casino-review-card__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #555;
}
.casino-review-card__meta > div { line-height: 1.4; }
.casino-review-card__meta strong { color: var(--text); display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .3px; opacity: .7; margin-bottom: 2px; }
.casino-review-card__cta {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  border: none !important;
  transition: background .15s, transform .15s;
}
.casino-review-card__cta:hover { background: var(--accent2); transform: translateY(-1px); }

@media (max-width: 720px) {
  .casino-review-card { flex-direction: column; gap: 18px; padding: 18px; }
  .casino-review-card__img { flex: 0 0 auto; width: 100%; max-width: 300px; height: 260px; margin: 0 auto; }
  .casino-review-card__body { text-align: center; }
  .casino-review-card__meta { grid-template-columns: 1fr; text-align: left; }
}

/* Info tables */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.info-table th, .info-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.info-table th {
  background: var(--bg-surf2);
  font-weight: 600;
  color: var(--text);
}
.info-table tr:last-child td { border-bottom: 0; }

/* Callout */
.callout {
  background: var(--bg-card);
  border-left: 4px solid var(--accent);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  margin: 24px 0;
}

/* ============ TOP CASINOS SHOWCASE ============ */
.casinos-showcase { padding: 20px 0 40px; }
.casinos-showcase h2 {
  text-align: center;
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 32px;
}
.casino-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .casino-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .casino-grid { grid-template-columns: 1fr; } }

.casino-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.casino-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.casino-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 6px 24px rgba(229,37,33,.12);
}

.rank-badge {
  position: absolute;
  top: -10px;
  left: 16px;
  background: var(--bg-surf2);
  color: var(--text);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
}
.casino-card.featured .rank-badge {
  background: var(--accent);
  color: var(--text-light);
}
.editors-pick {
  display: inline-block;
  background: var(--neon);
  color: #072b07;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
  margin-top: 6px;
}

.casino-logo-wrap {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  border: 1px solid var(--border);
}
.casino-logo-wrap img { max-height: 50px; width: auto; }

.casino-name {
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text2);
}
.stars {
  display: inline-flex;
  gap: 2px;
}
.stars svg {
  width: 16px;
  height: 16px;
  fill: #ffc107;
}
.stars svg.empty { fill: #d0d4d9; }

.casino-usp {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
  flex: 1;
}
.casino-usp strong { color: var(--accent); }

.casino-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.btn-primary {
  background: var(--accent);
  color: var(--text-light);
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: background .2s, transform .15s;
  display: block;
}
.btn-primary:hover { background: var(--accent2); color: var(--text-light); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 500;
  font-size: 13px;
  border: 1px solid var(--border);
  transition: background .2s;
  display: block;
}
.btn-secondary:hover { background: var(--bg-surf2); color: var(--text); }

/* ============ REVIEWS SLIDER ============ */
.reviews { padding: 50px 0; background: var(--bg-card); }
.reviews h2 { text-align: center; margin-bottom: 32px; font-size: clamp(24px, 3vw, 32px); }
.reviews-wrap {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}
.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform .4s ease;
}
.review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
@media (max-width: 900px) { .review-card { flex: 0 0 calc((100% - 20px) / 2); } }
@media (max-width: 600px) { .review-card { flex: 0 0 100%; } }

.review-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.review-name { font-weight: 700; color: var(--text); }
.review-date { font-size: 13px; color: var(--text2); }
.review-card .stars { margin-bottom: 10px; }
.review-text { color: var(--text); font-size: 15px; line-height: 1.55; }

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}
.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .15s;
  color: var(--text);
}
.slider-btn:hover { background: var(--accent); color: var(--text-light); }
.slider-btn:disabled { opacity: .4; cursor: not-allowed; }
.slider-btn svg { width: 16px; height: 16px; }

/* ============ FAQ ============ */
.faq { padding: 40px 0; }
.faq h2 { text-align: center; margin-bottom: 30px; font-size: clamp(24px, 3vw, 32px); }
.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.faq-q {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  color: var(--text);
}
.faq-q::after {
  content: "+";
  font-size: 22px;
  color: var(--accent);
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height .3s ease, padding .2s;
  color: var(--text);
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 20px 18px;
}

/* ============ AUTHOR BLOCK ============ */
.author-block {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  margin: 40px 0;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.author-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--accent);
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info h4 { margin-bottom: 4px; font-size: 18px; color: var(--text); }
.author-role { color: var(--accent); font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.author-bio { font-size: 14px; color: var(--text); line-height: 1.55; }
.author-updated { font-size: 12px; color: var(--text2); margin-top: 10px; }

@media (max-width: 600px) {
  .author-block { flex-direction: column; text-align: center; align-items: center; }
}

/* ============ FINAL CTA ============ */
.final-cta {
  background: linear-gradient(135deg, var(--accent) 0%, #b81713 100%);
  color: var(--text-light);
  padding: 50px 20px;
  text-align: center;
  margin-top: 20px;
}
.final-cta h2 { color: var(--text-light); font-size: clamp(24px, 3.5vw, 34px); margin-bottom: 12px; }
.final-cta p { font-size: 17px; opacity: .95; margin-bottom: 22px; }
.final-cta .btn-primary {
  background: #fff;
  color: var(--accent);
  padding: 15px 40px;
  font-size: 16px;
  display: inline-block;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.final-cta .btn-primary:hover { background: #f8f8f8; color: var(--accent); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--bg-footer);
  color: var(--text-light);
  padding: 50px 0 24px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 800px) { .footer-cols { grid-template-columns: 1fr; gap: 24px; } }
.footer-col h5 {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,.7); font-size: 14px; }
.footer-col a:hover { color: var(--accent); }

.footer-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-cta {
  background: var(--accent);
  color: var(--text-light);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 14px;
}
.footer-cta:hover { background: var(--accent2); color: var(--text-light); }

.footer-badges {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-badges .badge {
  background: rgba(255,255,255,.06);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  letter-spacing: .5px;
  border: 1px solid rgba(255,255,255,.1);
}
.badge.age { background: var(--accent); border-color: var(--accent); color: #fff; }

.footer-disclaimer {
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.footer-disclaimer a { color: rgba(255,255,255,.85); }

.footer-bottom {
  padding-top: 18px;
  text-align: center;
  color: rgba(255,255,255,.5);
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* ============ UTILS ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 24px 0;
}
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}
@media (max-width: 700px) { .pros-cons { grid-template-columns: 1fr; } }
.pros, .cons {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
}
.pros h4 { color: var(--success); margin-bottom: 10px; }
.cons h4 { color: var(--accent); margin-bottom: 10px; }
.pros ul, .cons ul { list-style: none; margin: 0; }
.pros li, .cons li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 15px;
}
.pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}
.cons li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
