: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);
  --radius: 12px;
  --radius-sm: 8px;
  --container: 1200px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  color: var(--text);
  line-height: 1.25;
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(28px, 4vw, 40px); }
h2 { font-size: clamp(24px, 3vw, 32px); margin-top: 40px; }
h3 { font-size: clamp(20px, 2.4vw, 24px); margin-top: 28px; }

p { margin: 0 0 16px; }
ul, ol { margin: 0 0 20px; padding-left: 22px; }
li { margin-bottom: 8px; }

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

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  margin: 0;
  padding: 0;
  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 .15s ease, color .15s ease;
  display: inline-block;
}
.main-nav a:hover { background: rgba(255,255,255,0.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: 0.03em;
  transition: background .15s ease, transform .15s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.play-btn:hover { background: var(--accent2); transform: translateY(-1px); }

.burger {
  display: none;
  background: transparent;
  border: 0;
  color: var(--text-light);
  padding: 8px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}

@media (max-width: 900px) {
  .burger { display: block; order: 2; }
  .header-inner .play-btn { order: 3; padding: 8px 14px; font-size: 13px; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-header);
    padding: 12px 20px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .main-nav.is-open { display: block; }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav a { display: block; padding: 12px; }
}

/* ======== HERO ======== */
.hero {
  padding: 48px 0 24px;
  background: linear-gradient(180deg, #fff 0%, var(--bg-card) 100%);
}
.hero h1 { margin-bottom: 12px; }
.hero .lead {
  font-size: 18px;
  color: var(--text2);
  max-width: 780px;
}
.page-cover {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 24px 0;
  box-shadow: var(--shadow);
  object-fit: cover;
  max-height: 420px;
}

/* ======== CONTENT ======== */
main.content { padding: 24px 0 60px; }
.content h2 { border-left: 4px solid var(--accent); padding-left: 14px; }
.content .prose {
  max-width: 900px;
}
.content ul li::marker { color: var(--accent); }
.content ol li::marker { color: var(--accent); font-weight: 700; }

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 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: 700;
}
.info-table tr:last-child td { border-bottom: 0; }

.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 ======== */
.top-casinos { padding: 40px 0; }
.top-casinos h2 { margin-top: 0; }
.top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .top-grid { grid-template-columns: 1fr; } }

.casino-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 2px solid transparent;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.casino-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.casino-card.featured {
  border-color: var(--accent);
  background: #fff;
}
.rank-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--bg-surf2);
  color: var(--text);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.casino-card.featured .rank-badge {
  background: var(--accent);
  color: var(--text-light);
}
.editor-pick {
  background: var(--neon);
  color: #062c06;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-left: 6px;
}
.casino-logo {
  width: 100%;
  height: 80px;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 8px;
  margin-top: 10px;
}
.stars { color: #f7b500; font-size: 18px; letter-spacing: 2px; }
.rating-num { font-weight: 700; margin-left: 6px; font-size: 14px; }
.usp {
  font-size: 14px;
  color: var(--text2);
  min-height: 42px;
}
.usp strong { color: var(--text); }
.card-cta {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.btn-primary {
  flex: 1;
  background: var(--accent);
  color: var(--text-light);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-align: center;
  transition: background .15s ease;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.btn-primary:hover { background: var(--accent2); color: var(--text-light); }
.btn-secondary {
  flex: 1;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-align: center;
  font-size: 14px;
  transition: border-color .15s ease, background .15s ease;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); background: var(--bg-surf2); }

/* ======== REVIEWS SLIDER ======== */
.reviews-section {
  padding: 48px 0;
  background: var(--bg-card);
}
.reviews-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
}
.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform .35s ease;
}
.review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  background: #fff;
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
@media (max-width: 900px) {
  .review-card { flex: 0 0 100%; }
}
.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.review-name { font-weight: 700; }
.review-date { font-size: 13px; color: var(--text2); }
.review-stars { color: #f7b500; margin-bottom: 8px; font-size: 16px; letter-spacing: 1px; }
.review-text { font-size: 14px; color: var(--text); margin: 0; }

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--text-light);
  border: 0;
  font-size: 20px;
  cursor: pointer;
  transition: background .15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover { background: var(--accent2); }
.slider-btn:disabled { background: var(--text2); cursor: not-allowed; opacity: 0.6; }

/* ======== AUTHOR BLOCK ======== */
.author-block {
  background: var(--bg-card);
  padding: 24px;
  border-radius: var(--radius);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin: 40px 0 20px;
  border-left: 4px solid var(--accent);
}
.author-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-info h4 { margin: 0 0 6px; font-size: 18px; }
.author-role { color: var(--text2); font-size: 13px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.author-bio { font-size: 14px; color: var(--text); margin: 0 0 8px; }
.author-updated { font-size: 13px; color: var(--text2); }
@media (max-width: 600px) {
  .author-block { flex-direction: column; align-items: center; text-align: center; }
}

/* ======== FAQ ======== */
.faq { margin: 40px 0; }
.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.faq-q {
  padding: 16px 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background .15s ease;
}
.faq-q:hover { background: var(--bg-surf2); }
.faq-q::after {
  content: "+";
  color: var(--accent);
  font-size: 24px;
  font-weight: 400;
  transition: transform .2s ease;
}
.faq-item.is-open .faq-q::after { content: "−"; }
.faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.is-open .faq-a { padding: 4px 20px 18px; max-height: 500px; }
.faq-a p { margin: 0; }

/* ======== FINAL CTA ======== */
.final-cta {
  background: var(--bg-surf);
  color: var(--text-light);
  padding: 48px 20px;
  border-radius: var(--radius);
  text-align: center;
  margin: 40px 0;
}
.final-cta h2 { color: var(--text-light); border-left: 0; padding-left: 0; margin-top: 0; }
.final-cta p { max-width: 620px; margin: 0 auto 24px; color: rgba(255,255,255,0.85); }
.final-cta .play-btn { padding: 14px 32px; font-size: 16px; }

/* ======== FOOTER ======== */
.site-footer {
  background: var(--bg-footer);
  color: rgba(255,255,255,0.75);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 32px;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h5 {
  color: var(--text-light);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  transition: color .15s ease;
}
.footer-col a:hover { color: var(--text-light); }
.footer-cta {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.footer-cta .play-btn { padding: 14px 32px; font-size: 15px; }
.footer-disclaimer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer-badges {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.age-badge {
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}
.footer-badges a { color: rgba(255,255,255,0.75); font-size: 13px; text-decoration: underline; }
.footer-copy { margin-top: 20px; text-align: center; font-size: 13px; color: rgba(255,255,255,0.5); }

/* Utilities */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }

/* Simple two-col info section */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 24px 0;
}
@media (max-width: 700px) { .info-grid { grid-template-columns: 1fr; } }
.info-card {
  background: var(--bg-card);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.info-card h3 { margin-top: 0; }


/* ======== CASINO HERO BOX (review pages) ======== */
.casino-hero {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--bg-card);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 24px 0 32px;
  border-left: 4px solid var(--accent);
}
.casino-hero-img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 16px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.casino-hero-body {
  flex: 1;
  min-width: 0;
}
.casino-hero-body h2 {
  margin: 0 0 10px;
  border-left: 0;
  padding-left: 0;
  font-size: clamp(22px, 2.4vw, 28px);
}
.casino-hero-body p {
  color: var(--text2);
  font-size: 15px;
  margin: 0 0 20px;
}
.casino-hero-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--text-light) !important;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background .15s ease, transform .15s ease;
}
.casino-hero-btn:hover {
  background: var(--accent2);
  transform: translateY(-1px);
  color: var(--text-light);
}
@media (max-width: 700px) {
  .casino-hero { flex-direction: column; text-align: center; gap: 20px; padding: 22px; }
  .casino-hero-img { width: 220px; height: 220px; }
  .casino-hero-btn { width: 100%; }
}
