:root {
  --blue-dark: #0B1D3A;
  --blue-mid: #2563EB;
  --blue-accent: #3B82F6;
  --blue-light: #EFF6FF;
  --blue-muted: #DBEAFE;
  --text: #0F172A;
  --muted: #64748B;
  --border: #CBD5E1;
  --white: #FFFFFF;
  --bg: #F8FAFC;
  --shadow: 0 1px 8px rgba(11, 29, 58, 0.1);
  --shadow-lg: 0 8px 30px rgba(37, 99, 235, 0.12);
  --radius: 8px;
  --container: 1100px;
  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
}

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

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

h1, h2, h3, h4, h5, h6,
.section-title,
.hero h1,
.review-block__title,
.promo-banner__title,
.footer-col__title,
.footer-trust__title,
.pros-cons__heading,
.faq-item summary {
  font-family: var(--font-serif);
  font-weight: 400;
}

.hero__badge,
.promo-banner__badge,
.promo-banner__subtitle,
.promo-banner__cta,
.btn,
.nav-link,
.header-top,
.casino-card__cta {
  font-family: var(--font-sans);
}

a { color: var(--blue-mid); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--blue-dark); }

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--blue-mid);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius);
  z-index: 200;
  font-weight: 600;
}
.skip-link:focus { top: 16px; }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow);
}

.header-top {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
}

.header-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  gap: 12px;
}

.header-top__tagline { font-weight: 500; }

.header-top__promo {
  color: var(--white) !important;
  font-weight: 700;
  white-space: nowrap;
}
.header-top__promo:hover { color: rgba(255, 255, 255, 0.85) !important; }

.header-main__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 20px;
  position: relative;
}

.site-logo-link { display: flex; flex-shrink: 0; text-decoration: none; }

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-dark);
  flex-shrink: 0;
  position: relative;
}

.site-logo__img {
  display: block;
  height: 58px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
}

.site-logo--header .site-logo__img {
  height: 64px;
  max-width: 320px;
}

.site-logo--footer .site-logo__img {
  height: 54px;
  max-width: 280px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.header-top__actions { display: flex; align-items: center; gap: 12px; }

.header-top__promo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header-top__icon {
  border-radius: 4px;
  opacity: 0.9;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-text__name { font-size: 1.2rem; letter-spacing: -0.3px; font-weight: 600; }
.logo-text small { font-size: 0.78rem; color: var(--muted); font-weight: 500; }

.header-nav-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-nav { display: flex; align-items: center; }

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  color: var(--blue-dark);
  font-weight: 600;
  font-size: 0.9rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}

.nav-item > .nav-link:hover,
.nav-item.is-active > .nav-link,
.nav-dropdown a.is-active {
  color: var(--blue-mid);
}

.nav-dropdown-toggle svg { transition: transform 0.2s; }
.nav-item.is-open .nav-dropdown-toggle svg { transform: rotate(180deg); }

.has-dropdown { position: relative; }

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 190px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  list-style: none;
  padding: 6px 0;
  z-index: 50;
}

.nav-item.is-open .nav-dropdown { display: block; }

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  color: var(--blue-dark);
  font-weight: 600;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}

.nav-dropdown__icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--blue-light);
}
.nav-dropdown li:last-child a { border-bottom: none; }
.nav-dropdown a:hover { background: var(--blue-light); color: var(--blue-mid); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

.btn:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-cta {
  background: linear-gradient(135deg, var(--blue-accent), var(--blue-mid));
  color: var(--white) !important;
}

.btn-sm { padding: 8px 16px; font-size: 0.82rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-header { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ── HERO ── */
.hero {
  color: var(--white);
  padding: 56px 0 48px;
}

.hero--home {
  background: var(--blue-dark);
  padding: 0;
}

.hero--home .container {
  max-width: 1200px;
  padding: 24px 20px 32px;
}

.hero--review {
  background: linear-gradient(135deg, var(--blue-dark), #1E40AF);
}

.hero--contact {
  background: linear-gradient(135deg, var(--blue-dark), #1E3A8A);
  padding: 40px 0 36px;
  text-align: center;
}

.hero__contact-inner {
  max-width: 640px;
  margin: 0 auto;
}

.hero--contact .hero__subtitle {
  margin-bottom: 0;
}

.hero--guide {
  background: var(--blue-dark);
  padding: 0;
}

.hero--guide .container {
  max-width: 1200px;
  padding: 24px 20px 32px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.hero__grid--review {
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  text-align: left;
}

.hero__content { text-align: center; }

.hero__grid--review .hero__logo-wrap {
  flex-shrink: 0;
}

.hero__grid--review .hero__content {
  text-align: left;
  min-width: 0;
}

.hero__grid--review .hero h1 {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  margin-bottom: 6px;
  line-height: 1.15;
}

.hero__grid--review .hero__badge {
  margin-bottom: 8px;
}

.hero__grid--review .hero__subtitle {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 18px;
}

.hero__media .img-banner { margin: 0; }

.hero__banner .img-banner__img {
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.img-banner--photo .img-banner__img {
  border: none;
  background: transparent;
  object-fit: cover;
  max-height: 420px;
}

.hero__banner.img-banner--photo .img-banner__img {
  max-height: 360px;
}

.section-banner.img-banner--photo .img-banner__img {
  max-height: 320px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.hero__banner .img-banner__caption {
  color: rgba(255, 255, 255, 0.65);
}

.hero__logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__casino-logo {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  object-fit: cover;
  background: var(--white);
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.hero__logo-wrap .img-ph-label { color: rgba(255, 255, 255, 0.55); }

.hero__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  line-height: 1.25;
  margin-bottom: 12px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero__subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero--review .hero__subtitle,
.hero--guide .hero__subtitle { margin-bottom: 20px; }

.hero__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.hero__rating .star-rating {
  margin-bottom: 0;
}

.hero__rating-meta {
  font-size: 0.78rem;
  opacity: 0.85;
}

.hero__byline {
  font-size: 0.82rem;
  opacity: 0.8;
  margin-bottom: 16px;
}

.hero--review .hero__rating .star-rating__icon--empty {
  color: rgba(255, 255, 255, 0.35);
}

/* ── PAGE LAYOUT ── */
.page-layout {
  padding: 48px 0 72px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 28px 32px;
}

.page-section--highlight {
  border-color: var(--blue-accent);
  border-width: 2px;
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--white) 120px);
  box-shadow: var(--shadow-lg);
}

.section-title {
  font-size: 1.35rem;
  color: var(--blue-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue-muted);
}

.page-h1 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--blue-dark);
  text-align: center;
  margin: 0 0 8px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.page-layout--home > .page-h1 {
  margin-bottom: 4px;
}

.promo-banner__title {
  display: block;
  margin: 0;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}

.section-desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.page-section--editorial {
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--white) 100%);
  border: 1px solid var(--blue-muted);
  border-radius: 12px;
  padding: 28px 24px;
}

.editorial-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.editorial-meta a {
  color: var(--blue-mid);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.section-cta {
  margin-top: 20px;
  text-align: center;
}

/* ── CONTENT PROSE ── */
.content-prose {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
}

.content-prose p + p { margin-top: 14px; }

.content-prose a {
  color: var(--blue-mid);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content-prose a:hover { color: var(--blue-dark); }

.content-prose strong,
.content-prose b,
.content-list strong,
.content-steps strong,
.faq-item__body strong {
  font-weight: inherit;
}

.casino-card__offer-label {
  color: var(--blue-dark);
}

.content-list,
.content-steps {
  margin: 14px 0 0;
  padding-left: 1.35rem;
  font-size: 0.94rem;
  line-height: 1.7;
}

.content-list li + li,
.content-steps li + li { margin-top: 8px; }

.content-steps { counter-reset: none; }
.content-steps li { padding-left: 4px; }

.content-cta-line {
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Pros & cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 4px;
}

.pros-cons__heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.pros-cons__col--pros .pros-cons__heading { color: #059669; }
.pros-cons__col--cons .pros-cons__heading { color: #DC2626; }

.pros-cons__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
}

.pros-cons__col li {
  padding: 6px 0 6px 22px;
  position: relative;
  border-bottom: 1px solid var(--blue-muted);
}

.pros-cons__col li:last-child { border-bottom: none; }

.pros-cons__col--pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
}

.pros-cons__col--cons li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #DC2626;
  font-weight: 700;
}

.pros-cons-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 0.88rem;
}

.pros-cons-table th {
  background: var(--blue-light);
  color: var(--blue-dark);
  font-weight: 700;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--border);
}

.pros-cons-table th:first-child { color: #059669; }
.pros-cons-table th:last-child { color: #DC2626; }

.pros-cons-table td {
  padding: 9px 14px;
  border: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.5;
}

.pros-cons-table tr:nth-child(even) td { background: var(--bg); }

/* FAQ accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}

.faq-item summary {
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--blue-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--blue-mid);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item[open] summary {
  background: var(--blue-light);
  border-bottom: 1px solid var(--border);
}

.faq-item__body {
  padding: 14px 18px 16px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text);
}

.faq-item__body p { margin: 0; }

/* Template body classes */
body.template-home .page-layout--home .page-section--highlight .section-title::after {
  content: ' ★';
  color: var(--blue-accent);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 52px 0 28px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.footer-brand__desc {
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 14px 0 18px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-logo { color: var(--white); }
.footer-logo .logo-text small { color: rgba(255, 255, 255, 0.5); }

.footer-col__title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-col__text {
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.footer-col__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 500;
}
.footer-col__links a:hover { color: var(--blue-accent); }

.footer-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.footer-trust__title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
}

.footer-trust__badges,
.footer-trust__browsers {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  align-items: center;
}

.trust-badge,
.browser-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-badge__icon,
.browser-badge__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  color: rgba(147, 197, 253, 0.9);
  transition: color 0.2s, opacity 0.2s;
}

.trust-badge:hover .trust-badge__icon,
.browser-badge:hover .browser-badge__icon {
  color: #BFDBFE;
  opacity: 1;
}

.trust-badge__img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.trust-badge__label,
.browser-badge__label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.trust-badge:hover .trust-badge__label,
.browser-badge:hover .browser-badge__label {
  color: rgba(255, 255, 255, 0.85);
}

.browser-badge__icon { font-size: 1.1rem; }

.browser-badge--chrome .browser-badge__icon { color: #60A5FA; }
.browser-badge--firefox .browser-badge__icon { color: #FB923C; }
.browser-badge--safari .browser-badge__icon { color: #38BDF8; }
.browser-badge--edge .browser-badge__icon { color: #818CF8; }

.footer-logo-link .logo-text__name { color: var(--white); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  background: var(--blue-mid);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 90;
}
.scroll-top:hover { transform: translateY(-2px); }
.scroll-top[hidden] { display: none; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-top__tagline { display: none; }

  .header-main__inner { min-height: 76px; }

  .site-logo--header .site-logo__img {
    height: 52px;
    max-width: 260px;
  }

  .nav-toggle { display: flex; }

  .header-nav-wrap {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 20px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
  }

  .header-nav-wrap.is-open { display: flex; }

  .nav-list { flex-direction: column; align-items: stretch; width: 100%; }
  .nav-item { width: 100%; }
  .nav-link { width: 100%; justify-content: space-between; }

  .nav-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--blue-light);
    margin-top: 4px;
  }

  .btn-header { width: 100%; margin-top: 8px; }

  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-trust { grid-template-columns: 1fr; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; }

  .hero__grid--review {
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    text-align: left;
  }

  .hero__grid--review .hero__content { text-align: left; }

  .hero__grid--review .hero__casino-logo {
    width: 88px;
    height: 88px;
    border-radius: 12px;
  }

  .hero__grid--review .hero h1 {
    font-size: 1.25rem;
    margin-bottom: 4px;
  }

  .hero__grid--review .hero__badge {
    margin-bottom: 6px;
    font-size: 0.68rem;
    padding: 3px 10px;
  }

  .hero__grid--review .hero__subtitle {
    font-size: 0.88rem;
    margin-bottom: 14px;
  }

  .hero__grid--review .btn {
    font-size: 0.82rem;
    padding: 10px 16px;
  }
  .review-media-row { grid-template-columns: 1fr !important; }
  .page-section { padding: 20px 18px 24px; }
  .pros-cons { grid-template-columns: 1fr; }
  .pros-cons-table { font-size: 0.82rem; }
  .pros-cons-table th,
  .pros-cons-table td { padding: 8px 10px; }
}

/* ── IMAGE PLACEHOLDERS ── */
.img-ph-label {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 4px;
}

.img-ph-label--logo {
  position: absolute;
  bottom: -16px;
  left: 0;
  white-space: nowrap;
  font-size: 0.6rem;
}

.site-logo--header { padding-bottom: 0; }

.img-banner {
  margin: 16px 0 0;
  text-align: center;
}

.img-banner__link { display: block; }

.img-banner__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 2px dashed var(--border);
  background: var(--blue-light);
  display: block;
}

.section-banner { margin-top: 20px; }
.promo-banner.section-banner { margin-top: 24px; }
.section-banner--sm .img-banner__img { max-height: 200px; object-fit: cover; }

.img-banner__caption {
  font-size: 0.72rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 6px;
}

/* ── PROMO BANNER (photo + text overlay) ── */
.promo-banner {
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.promo-banner__link {
  display: block;
  position: relative;
  color: inherit;
  text-decoration: none;
}

.promo-banner__link:hover .promo-banner__cta {
  background: #1D4ED8;
  transform: translateY(-1px);
}

.promo-banner__bg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center right;
}

.promo-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11, 29, 58, 0.92) 0%,
    rgba(11, 29, 58, 0.78) 38%,
    rgba(11, 29, 58, 0.25) 62%,
    transparent 100%
  );
  pointer-events: none;
}

.promo-banner__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 28px 36px;
  max-width: 58%;
  z-index: 1;
}

.promo-banner__badge {
  display: inline-block;
  background: linear-gradient(135deg, #F59E0B, #FBBF24);
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.promo-banner__title {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  margin-bottom: 8px;
}

.promo-banner__subtitle {
  display: block;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  margin-bottom: 18px;
}

.promo-banner__cta {
  display: inline-block;
  background: var(--blue-mid);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.45);
  transition: background 0.2s, transform 0.2s;
}

.promo-banner--hero .promo-banner__bg {
  min-height: 340px;
  max-height: 480px;
}

.promo-banner--hero .promo-banner__title {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
}

.promo-banner--section .promo-banner__bg {
  min-height: 220px;
  max-height: 320px;
}

.promo-banner--section .promo-banner__content {
  max-width: 55%;
  padding: 24px 32px;
}

.promo-banner--wide .promo-banner__bg {
  min-height: 260px;
}

@media (max-width: 768px) {
  .promo-banner__content {
    max-width: 100%;
    padding: 20px 18px;
    justify-content: flex-end;
    background: linear-gradient(0deg, rgba(11, 29, 58, 0.88) 0%, transparent 70%);
    inset: auto 0 0 0;
    top: 30%;
  }

  .promo-banner__overlay {
    background: linear-gradient(0deg, rgba(11, 29, 58, 0.5) 0%, transparent 50%);
  }

  .promo-banner__title {
    font-size: 1.35rem;
  }

  .promo-banner__subtitle {
    font-size: 0.82rem;
    margin-bottom: 12px;
  }

  .promo-banner__cta {
    font-size: 0.8rem;
    padding: 10px 16px;
  }
}

/* ── CASINO CARDS ── */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 8px;
}

/* 10 cards = 5×2 grid on desktop */

.casino-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--white) 50%);
  border: 2px solid var(--blue-muted);
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
}

.casino-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-accent);
}

.casino-card__inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px;
}

.casino-card__logo {
  text-align: center;
  margin-bottom: 12px;
}

.casino-card__logo img {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px dashed var(--border);
  background: var(--white);
}

.casino-card__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  margin: 0 0 6px;
  color: var(--text);
  line-height: 1.3;
}

.star-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-bottom: 10px;
}

.star-rating__icon {
  font-size: 0.82rem;
  line-height: 1;
}

.star-rating__icon--full,
.star-rating__icon--half {
  color: #f5b301;
}

.star-rating__icon--empty {
  color: #d4dce8;
}

.star-rating__score {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-left: 4px;
}

.casino-card__rating-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--muted);
  margin: 0 0 4px;
}

.review-editorial-note {
  margin-top: 20px;
  padding: 16px 18px;
  background: var(--blue-light);
  border: 1px solid var(--blue-muted);
  border-radius: 10px;
  font-size: 0.88rem;
  line-height: 1.65;
}

.review-editorial-note__title {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 10px;
  color: var(--blue-dark);
}

.review-editorial-note__list {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
}

.review-editorial-note__list li + li {
  margin-top: 6px;
}

.review-editorial-note__disclosure {
  margin: 12px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.casino-card__features {
  list-style: none;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.casino-card__features li {
  padding-left: 14px;
  position: relative;
}

.casino-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue-mid);
  font-weight: 700;
  font-size: 0.75rem;
}

.casino-card__offer {
  font-size: 0.82rem;
  margin-bottom: 14px;
  line-height: 1.5;
}

.casino-card__cta {
  margin-top: auto;
  font-size: 0.85rem !important;
  padding: 11px 14px !important;
  min-height: 42px;
}

/* ── REVIEW BLOCKS (home) ── */
.review-blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.review-block {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.review-block:last-child { border-bottom: none; padding-bottom: 0; }

.review-block__logo {
  border-radius: 12px;
  border: 2px dashed var(--border);
  object-fit: cover;
}

.review-block__title {
  font-size: 1.1rem;
  color: var(--blue-dark);
  margin-bottom: 12px;
}

.review-media-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: start;
}

.review-screenshot .img-banner__img {
  min-height: 200px;
  object-fit: cover;
}

.review-offer {
  margin-bottom: 12px;
  padding: 12px 16px;
  background: var(--blue-light);
  border-radius: var(--radius);
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .casino-grid { grid-template-columns: repeat(3, 1fr); }
}

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

@media (max-width: 540px) {
  .casino-grid { grid-template-columns: 1fr; }
  .review-block { grid-template-columns: 1fr; }
  .review-block__logo { width: 80px; height: 80px; }
}

/* ── CONTACT PAGE ── */
.contact-panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-panel__info .section-title {
  margin-bottom: 20px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-method {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-method__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--blue-light);
  color: var(--blue-mid);
  font-size: 1rem;
}

.contact-method__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--blue-dark);
  margin-bottom: 4px;
}

.contact-method__body p {
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

.contact-method__body p + p {
  margin-top: 4px;
}

.contact-method__note {
  color: var(--muted);
  font-size: 0.82rem !important;
}

.contact-form__heading {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--blue-dark);
  margin-bottom: 18px;
}

.contact-form__row {
  margin-bottom: 16px;
}

.contact-form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--blue-dark);
  margin-bottom: 6px;
}

.contact-form__input {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.contact-form__input:focus {
  outline: none;
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__hint {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.contact-form__submit {
  width: 100%;
}

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