/* =========================================================
   Top10NoDepositBonus.com
   Review System CSS v1.0
   Part 1/3
   Root, Global, Typography, Header, Navigation, Buttons, Footer
   ========================================================= */

/* ---------- Root Variables ---------- */

:root {
  --bg: #10172a;
  --bg-soft: #182338;
  --bg-card: #202d46;
  --bg-card-2: #273957;
  --bg-deep: #080d18;

  --text: #fff8e7;
  --muted: #d8c9a3;
  --muted-2: #a99a78;

  --gold: #f6b73c;
  --gold-soft: #ffe2a3;
  --cream: #fff3d0;

  --green: #86efac;
  --red: #fca5a5;

  --line: rgba(246, 183, 60, 0.18);
  --line-strong: rgba(246, 183, 60, 0.35);

  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.24);

  --radius: 20px;
  --radius-sm: 14px;
  --radius-pill: 999px;

  --max: 1180px;

  --space-xs: 6px;
  --space-sm: 10px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 34px;
  --space-2xl: 52px;
  --space-3xl: 76px;
}

/* ---------- Reset / Global ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

body::selection {
  background: rgba(246, 183, 60, 0.28);
  color: var(--text);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  color: var(--gold-soft);
  text-decoration: none;
}

button,
summary {
  font-family: inherit;
}

summary {
  cursor: pointer;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 9999;
  background: var(--gold);
  color: #111;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
}

.skip-link:focus {
  left: 10px;
}

/* ---------- Typography ---------- */

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 10px;
}

h4 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 8px;
}

p {
  margin-bottom: 16px;
}

strong {
  color: var(--gold-soft);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-text {
  color: var(--muted);
  font-size: 18px;
  max-width: 760px;
}

.section-head {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head p {
  color: var(--muted);
}

.review-note,
.small-note {
  color: var(--muted-2);
  font-size: 14px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16, 23, 42, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  display: flex;
  align-items: center;
  color: var(--text);
}

.logo-wrap img {
  width: 132px;
  height: auto;
  display: block;
}

/* ---------- Desktop Navigation ---------- */
.review-card {
  overflow: hidden;
}

.review-card img {
  width: 72px;
  height: 72px;
  min-width: 72px;
  max-width: 72px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  padding: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(246, 183, 60, 0.28);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  flex-shrink: 0;
}

.desktop-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 24px;
  align-items: center;
}

.desktop-nav a {
  color: var(--text);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}

.desktop-nav a:hover {
  color: var(--gold);
}

.has-sub {
  position: relative;
}

.submenu {
  position: absolute;
  right: 0;
  top: calc(100% + 18px);
  min-width: 260px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px !important;
  box-shadow: var(--shadow);
  display: none !important;
}

.submenu li a {
  display: block;
  padding: 10px 12px;
  color: var(--muted);
  border-radius: 10px;
}

.submenu li a:hover {
  background: rgba(246, 183, 60, 0.12);
  color: var(--gold);
}

.has-sub:hover .submenu {
  display: block !important;
}

/* ---------- Mobile Navigation ---------- */

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--bg-card);
  color: var(--text);
  font-size: 24px;
  border-radius: 12px;
  padding: 6px 13px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 14px 24px 22px;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a,
.mobile-nav summary {
  display: block;
  color: var(--text);
  padding: 12px 0;
  font-weight: 700;
  border-bottom: 1px solid rgba(246,183,60,.12);
  position: relative;
  transition: color .2s ease;
}

.mobile-nav details {
  margin: 0;
}

.mobile-nav details a {
  padding: 12px 0 12px 18px;
  color: var(--muted);
  font-weight: 600;
  border-bottom: 1px solid rgba(246,183,60,.08);
}

.mobile-nav a:hover,
.mobile-nav summary:hover {
  color: var(--gold);
}

.mobile-nav summary {
  list-style: none;
  cursor: pointer;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary::after {
  content: "▸";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 14px;
  transition: transform .2s ease;
}

.mobile-nav details[open] summary::after {
  content: "▾";
}

/* ---------- Buttons ---------- */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 18px;
}

.btn,
.card-link,
.claim-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  border: 1px solid transparent;
  text-align: center;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.btn.primary,
.card-link,
.claim-btn {
  background: linear-gradient(180deg, #ffc64b, #f4b236);
  color: #111;
}

.btn.secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.btn:hover,
.card-link:hover,
.claim-btn:hover {
  transform: translateY(-1px);
  color: #111;
}

.btn.secondary:hover {
  color: var(--gold-soft);
  border-color: var(--line-strong);
}

.card-link {
  width: 100%;
  margin-top: 16px;
}

.claim-btn {
  min-height: 44px;
  padding: 10px 16px;
}

/* ---------- Generic Sections ---------- */

.section {
  padding: 76px 0;
}

.section.soft {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.notice-bar {
  background: rgba(246, 183, 60, 0.1);
  border-bottom: 1px solid rgba(246, 183, 60, 0.22);
  color: var(--muted);
  padding: 14px 0;
}

.notice-bar strong {
  color: var(--gold);
}

/* =========================================================
   Final Global Footer
   ========================================================= */

.site-footer{
  background:
    radial-gradient(circle at 18% 0%, rgba(246,183,60,.07), transparent 34%),
    linear-gradient(180deg, #080d18 0%, #060a12 100%);
  border-top:1px solid var(--line);
  padding:54px 0 28px;
}

.footer-grid-final{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:34px;
  align-items:start;
  margin-bottom:34px;
}

.footer-brand{
  grid-column:1 / -1;
  max-width:920px;
  padding-bottom:28px;
  margin-bottom:4px;
  border-bottom:1px solid rgba(246,183,60,.14);
}

.footer-brand strong,
.footer-column strong{
  display:block;
  color:var(--text);
  font-size:16px;
  font-weight:900;
}

.footer-brand strong{
  margin-bottom:10px;
}

.footer-column strong{
  margin-bottom:12px;
}

.footer-brand p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}

.footer-column a{
  display:block;
  margin:8px 0;
  color:var(--gold);
  font-weight:800;
  line-height:1.4;
  transition:color .2s ease, transform .2s ease;
}

.footer-column a:hover{
  color:var(--gold-soft);
  transform:translateX(3px);
}

.copyright{
  width:min(100% - 32px, var(--max));
  margin:0 auto;
  padding-top:20px;
  border-top:1px solid var(--line);
  color:var(--muted-2);
  font-size:13px;
  line-height:1.7;
}

@media (max-width:1024px){
  .footer-grid-final{
    grid-template-columns:repeat(2,1fr);
    gap:30px;
  }

  .footer-brand{
    grid-column:1 / -1;
    max-width:760px;
  }
}

@media (max-width:600px){
  .site-footer{
    padding:44px 0 24px;
  }

  .footer-grid-final{
    grid-template-columns:1fr;
    gap:24px;
  }

  .footer-brand{
    padding-bottom:22px;
  }

  .footer-column{
    padding-top:18px;
    border-top:1px solid rgba(246,183,60,.14);
  }

  .footer-column a{
    margin:9px 0;
  }

  .copyright{
    width:min(100% - 24px, var(--max));
    padding-top:18px;
  }
}

/* =========================================================
   Top10NoDepositBonus.com
   Review System CSS v1.0
   Part 2/3
   Hero, Score Panel, Quick Facts, Article Layout, Sidebar,
   Cards, Score Table
   ========================================================= */

/* ---------- Review Hero ---------- */

.review-hero {
  padding: 86px 0 72px;
  background:
    radial-gradient(circle at 20% 10%, rgba(246, 183, 60, 0.18), transparent 34%),
    radial-gradient(circle at 85% 18%, rgba(255, 226, 163, 0.08), transparent 30%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  border-bottom: 1px solid var(--line);
}

.review-hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 34px;
  align-items: center;
}

.review-hero-content {
  min-width: 0;
}

.review-hero h1 span{
    display:block;
    word-break:break-word;
    overflow-wrap:anywhere;
}

.hero-site-name{
    margin:8px 0 22px;
    font-size:clamp(32px,4vw,58px);
    font-weight:800;
    line-height:1.05;
    color:#fff8ee;
    word-break:break-word;
    overflow-wrap:anywhere;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-meta span {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 700;
}

/* ---------- Score Panel ---------- */

.score-panel {
  background: linear-gradient(180deg, var(--bg-card-2), var(--bg-card));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.logo-circle {
  width: 118px;
  height: 118px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(246, 183, 60, 0.35);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.logo-circle img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
}

.score-main {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}

.score-main span {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.score-main strong {
  display: block;
  color: var(--gold-soft);
  font-size: 42px;
  line-height: 1.1;
  margin-top: 4px;
}

.score-main small {
  display: inline-block;
  margin-top: 8px;
  color: #111;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.score-bars {
  display: grid;
  gap: 12px;
}

.score-bars.mini {
  gap: 10px;
}

.score-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.score-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.score-row span {
  color: var(--muted);
}

.score-row strong {
  color: var(--text);
  font-weight: 900;
}

/* ---------- Quick Facts ---------- */

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.fact-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.fact-card span {
  display: block;
  color: var(--muted-2);
  font-size: 14px;
  margin-bottom: 6px;
}

.fact-card strong {
  color: var(--gold-soft);
  font-size: 18px;
  line-height: 1.35;
}

/* ---------- Article Layout ---------- */

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 30px;
  align-items: start;
}

.article-main {
  background: rgba(32, 45, 70, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.article-main h2 {
  margin-top: 40px;
}

.article-main h2:first-child,
.article-main .editor-box h2 {
  margin-top: 0;
}

.article-main p,
.article-main li {
  color: var(--muted);
}

.article-main ul {
  padding-left: 20px;
}

.article-main a {
  font-weight: 800;
}

/* ---------- Content Boxes ---------- */

.editor-box,
.warning-box,
.methodology-card,
.verdict-box {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  margin: 26px 0;
}

.editor-box {
  border-color: rgba(246, 183, 60, 0.3);
  background:
    linear-gradient(180deg, rgba(246, 183, 60, 0.06), rgba(255, 255, 255, 0.035));
}

.warning-box {
  border-color: rgba(248, 113, 113, 0.35);
  background:
    linear-gradient(180deg, rgba(248, 113, 113, 0.07), rgba(255, 255, 255, 0.035));
}

.methodology-card {
  border-color: rgba(246, 183, 60, 0.35);
  background:
    linear-gradient(180deg, rgba(246, 183, 60, 0.08), rgba(255, 255, 255, 0.035));
}

.verdict-box {
  border-color: rgba(246, 183, 60, 0.42);
  background:
    radial-gradient(circle at 20% 10%, rgba(246, 183, 60, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.045);
}

/* ---------- Check Lists ---------- */

.check-list {
  padding: 0;
  margin: 18px 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

/* ---------- Sidebar ---------- */

.article-sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 18px;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.sidebar-card h3 {
  color: var(--gold-soft);
}

.sidebar-card p {
  color: var(--muted);
}

.sidebar-card a {
  display: block;
  margin-top: 8px;
  font-weight: 800;
}

.sidebar-card dl {
  margin: 0;
  display: grid;
  gap: 12px;
}

.sidebar-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-card dl div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.sidebar-card dt {
  color: var(--muted);
}

.sidebar-card dd {
  margin: 0;
  color: var(--gold-soft);
  font-weight: 900;
  text-align: right;
}

.responsible-card {
  border-color: rgba(246, 183, 60, 0.35);
}

/* ---------- Simple List / Pill List ---------- */

.simple-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.simple-list li {
  color: var(--muted);
  position: relative;
  padding-left: 24px;
}

.simple-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--gold);
  font-weight: 900;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-list span {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 10px;
}

/* ---------- Score Breakdown ---------- */

.score-breakdown {
  margin-top: 42px;
}

.score-table {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.score-item {
  display: grid;
  grid-template-columns: 190px 1fr 48px;
  gap: 14px;
  align-items: center;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
}

.score-item span {
  color: var(--muted);
  font-weight: 700;
}

.score-item strong {
  color: var(--gold-soft);
  text-align: right;
  font-weight: 900;
}

.bar {
  height: 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.09);
  overflow: hidden;
  border: 1px solid rgba(246, 183, 60, 0.12);
}

.bar i {
  display: block;
  height: 100%;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
}

/* ---------- Pros / Cons Utility ---------- */

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 24px 0;
}

.pros,
.cons {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}

.pros h3 {
  color: var(--green);
}

.cons h3 {
  color: var(--red);
}

.pros ul,
.cons ul {
  padding-left: 20px;
  margin-bottom: 0;
}

/* ---------- Responsible Section ---------- */

.responsible {
  background: linear-gradient(180deg, rgba(246, 183, 60, 0.08), rgba(246, 183, 60, 0.03));
  border-top: 1px solid rgba(246, 183, 60, 0.18);
  border-bottom: 1px solid rgba(246, 183, 60, 0.18);
}

.responsible .container {
  max-width: 900px;
}

.responsible p {
  color: var(--muted);
}

/* =========================================================
   Top10NoDepositBonus.com
   Review System CSS v1.0
   Part 3/3
   FAQ, iPad/iPhone Responsive, Utilities
   ========================================================= */

/* ---------- FAQ ---------- */

.faq details {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-soft);
}

.faq summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 800;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 900;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  color: var(--muted);
  margin: 12px 0 0;
}

/* ---------- Utility Classes ---------- */

.text-muted {
  color: var(--muted);
}

.text-gold {
  color: var(--gold);
}

.full-width {
  width: 100%;
}

.no-margin {
  margin: 0;
}

.casino-card {
  overflow: hidden;
}

.casino-card > img {
  width: 72px;
  height: 72px;
  min-width: 72px;
  max-width: 72px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  padding: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(246, 183, 60, 0.28);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  flex-shrink: 0;
}

.compare-box table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.compare-box {
  overflow-x: auto;
}

.compare-box th,
.compare-box td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  white-space: nowrap;
}

.compare-box th {
  color: var(--gold-soft);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.04);
}

.compare-box td {
  font-weight: 700;
}

.compare-box td:first-child,
.compare-box td:nth-child(2) {
  color: var(--text);
}

.compare-box tr:last-child td {
  border-bottom: 0;
}

.compare-box tr:hover td {
  background: rgba(246, 183, 60, 0.06);
}

.compare-box td a {
  font-weight: 900;
}

.compare-box tbody tr:nth-child(even){
    background: rgba(255,255,255,.02);
}

.compare-box td:nth-child(1),
.compare-box td:nth-child(3),
.compare-box td:nth-child(4),
.compare-box td:nth-child(5),
.compare-box td:nth-child(6),
.compare-box td:nth-child(7),
.compare-box th:nth-child(1),
.compare-box th:nth-child(3),
.compare-box th:nth-child(4),
.compare-box th:nth-child(5),
.compare-box th:nth-child(6),
.compare-box th:nth-child(7){
    text-align:center;
}

.compare-box td:last-child a{
    display:inline-block;
    padding:8px 16px;
    border-radius:999px;
    background:var(--gold);
    color:#111;
    font-weight:800;
    text-decoration:none;
    transition:.2s;
}

.compare-box td:last-child a:hover{
    transform:translateY(-2px);
}

.compare-box tbody tr:nth-child(-n+3){
    background:rgba(246,183,60,.08);
}

.compare-box td:first-child{
    font-weight:900;
    font-size:18px;
}

/* =========================================================
   Casino Comparison Table
   Used only on /compare
   ========================================================= */

.casino-comparison-box{
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
    overscroll-behavior-x:contain;

    border:1px solid var(--line);
    border-radius:18px;
    background:var(--bg-card);
    box-shadow:var(--shadow-soft);
    width:100%;
    max-width:100%;
}

.casino-comparison-box table{
    min-width:980px;
    border-collapse:collapse;
}

.casino-comparison-box thead{
    background:rgba(255,255,255,.04);
}

.casino-comparison-box th{
    padding:18px 20px;
    text-align:center;

    color:var(--gold-soft);
    font-size:15px;
    font-weight:900;

    border-bottom:1px solid var(--line);
    white-space:nowrap;
}

.casino-comparison-box td{
    padding:16px 20px;
    font-size:13px;

    text-align:center;
    white-space:nowrap;

    color:var(--gold-soft);
    font-weight:700;

    border-bottom:1px solid var(--line);
}

.casino-comparison-box tbody tr:nth-child(even){
    background:rgba(255,255,255,.025);
}

.casino-comparison-box tbody tr:hover{
    background:rgba(246,183,60,.06);
}

.casino-comparison-box td:first-child{
    text-align:left;

    color:var(--text);

    font-size:14px;
    font-weight:700;

    background:var(--bg-card);
}

.casino-comparison-box th:first-child{
    text-align:left;
}

.casino-comparison-box td a{
    display:inline-block;

    padding:8px 18px;

    border-radius:999px;

    background:linear-gradient(180deg,#ffc64b,#f4b236);

    color:#111;

    font-weight:800;

    transition:.2s;
}

.casino-comparison-box td a:hover{
    transform:translateY(-2px);
}

.casino-comparison-box tr:last-child td{
    border-bottom:0;
}

/* =========================================================
   Review Author Testing
   ========================================================= */

.review-author-note {
  margin: 22px 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}

.review-author-note strong {
  display: block;
  color: var(--text);
  line-height: 1.2;
}

.review-author-note span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  margin: 4px 0 8px;
}

.review-author-note p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}



/* =========================================================
   New Author Testing
   ========================================================= */


.author-review-box {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.author-review-box h2 {
  margin-bottom: 10px;
}

.author-review-box > p {
  color: var(--muted);
  margin-bottom: 20px;
}

.author-review-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 20px 0;
}

.author-reviewer {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}

.author-reviewer img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(246, 183, 60, 0.35);
}

.author-reviewer strong {
  display: block;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 2px;
}

.author-reviewer span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}

.author-reviewer p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.author-review-link {
  color: var(--muted);
  margin: 0;
}

.author-review-link a {
  color: var(--gold);
  font-weight: 800;
}

@media (max-width: 760px) {
  .author-review-list {
    grid-template-columns: 1fr;
  }

  .author-review-box {
    padding: 20px;
  }
}


/* =========================================================
   Ranking Table Testing
   ========================================================= */


.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.ranking-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.ranking-table th,
.ranking-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}

.ranking-table th {
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(246, 183, 60, 0.08);
}

.ranking-table td {
  color: var(--muted);
}

.ranking-table td:nth-child(2),
.ranking-table td strong {
  color: var(--text);
  font-weight: 800;
}

.ranking-table a {
  color: var(--gold);
  font-weight: 800;
}

/* =========================================================
   Continue Your Research Section
   ========================================================= */

.explore-more{
  background:var(--bg-soft);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.explore-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:36px;
}

.explore-card{
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:230px;
  padding:28px;
  background:var(--bg-card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
  color:var(--text);
  transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease,background .25s ease;
}

.explore-card::after{
  content:"→";
  position:absolute;
  right:24px;
  bottom:22px;
  color:var(--gold);
  font-size:24px;
  font-weight:900;
  line-height:1;
  transition:transform .25s ease,color .25s ease;
}

.explore-card:hover{
  transform:translateY(-3px);
  border-color:rgba(246,183,60,.42);
  background:linear-gradient(180deg,var(--bg-card-2),var(--bg-card));
  box-shadow:var(--shadow);
  color:var(--text);
}

.explore-card:hover::after{
  transform:translateX(4px);
  color:var(--gold-soft);
}

.explore-card h3{
  margin-bottom:12px;
  color:var(--gold-soft);
}

.explore-card p{
  margin:0;
  padding-right:10px;
    color:#d8d8d8;
  line-height:1.7;
}

/* Hide old icon area if it still exists */
.explore-icon{
  display:none;
}

/* ---------- Tablet ---------- */

@media (max-width:1024px){
  .explore-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .explore-card{
    min-height:210px;
  }
}

/* ---------- Mobile ---------- */

@media (max-width:600px){
  .explore-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .explore-card{
    min-height:auto;
    padding:22px 56px 22px 22px;
  }

  .explore-card::after{
    right:22px;
    top:50%;
    bottom:auto;
    transform:translateY(-50%);
    font-size:22px;
  }

  .explore-card:hover::after{
    transform:translateY(-50%) translateX(4px);
  }
}

/* ---------- iPad / Tablet ---------- */

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .review-hero-grid,
  .article-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .review-hero {
    padding: 72px 0 62px;
  }

  .score-panel {
    max-width: 520px;
  }

  .quick-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-sidebar {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .responsible-card {
    grid-column: 1 / -1;
  }

    .mobile-nav details[open] {
    padding-bottom: 10px;
  }

  .mobile-nav details[open] a {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(246, 183, 60, 0.10);
    border-bottom: 1px solid rgba(246, 183, 60, 0.10);
    margin: 6px 0;
    padding: 11px 14px;
    border-radius: 12px;
  }

  .mobile-nav details[open] a:first-of-type {
    margin-top: 8px;
  }

  .mobile-nav details[open] a:hover {
    background: rgba(246, 183, 60, 0.10);
    color: var(--gold);
  }

  .compare-box{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
}

.compare-box table{
    min-width:760px;
}

.compare-box th:first-child,
.compare-box td:first-child{
    position:sticky;
    left:0;
    z-index:2;
    background:var(--bg-card);
}

.compare-box th:nth-child(2),
.compare-box td:nth-child(2){
    position:sticky;
    left:70px;
    z-index:2;
    background:var(--bg-card);
}

.compare-box th:first-child,
.compare-box th:nth-child(2){
    z-index:3;
}

}

/* ---------- iPhone / Mobile
   Designed for iPhone width range.
   No extra support prepared below 500px.
   ---------- */

@media (max-width: 600px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .header-inner {
    min-height: 68px;
  }

  .logo-wrap img {
    width: 104px;
  }

  .mobile-nav {
    padding: 14px 18px 22px;
  }

  .review-hero {
    padding: 56px 0 48px;
  }

  .section {
    padding: 52px 0;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 21px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-meta {
    gap: 8px;
  }

  .hero-meta span {
    width: 100%;
  }

  .quick-facts,
  .pros-cons,
  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .article-main,
  .score-panel,
  .sidebar-card,
  .fact-card,
  .editor-box,
  .warning-box,
  .methodology-card,
  .verdict-box {
    padding: 22px;
  }

  .logo-circle {
    width: 96px;
    height: 96px;
  }

  .logo-circle img {
    width: 72px;
    height: 72px;
  }

  .score-main strong {
    font-size: 34px;
  }

  .score-item {
    grid-template-columns: 1fr 46px;
    gap: 8px 12px;
  }

  .score-item .bar {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .score-item strong {
    grid-column: 2;
    grid-row: 1;
  }

  .score-item span {
    grid-column: 1;
    grid-row: 1;
  }

  .sidebar-card dl div {
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .compare-box th,
.compare-box td{
    padding:10px 12px;
    font-size:14px;
}

.compare-box table{
    min-width:700px;
}

    .article-main,
    .editor-box,
    .warning-box,
    .methodology-card,
    .verdict-box,
    .ranking-card,
    .compare-box,
    .casino-comparison-box{
        max-width:100%;
        min-width:0;
        overflow-wrap:anywhere;
        word-break:normal;
    }

    .article-main p,
    .article-main li,
    .article-main h2,
    .article-main h3,
    .editor-box p,
    .ranking-card p,
    .compare-box p{
        max-width:100%;
        overflow-wrap:anywhere;
    }
}

/* =========================================================
   Final Fixes: Desktop Dropdown + Mobile FAQ Icon
   ========================================================= */

/* Fix desktop dropdown disappearing before mouse reaches it */
.has-sub::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 22px;
}

.submenu {
  top: 100%;
  margin-top: 10px;
}

.has-sub:hover .submenu,
.has-sub:focus-within .submenu {
  display: block !important;
}

/* Fix mobile FAQ + position */
.faq summary {
  position: relative;
  padding-right: 34px;
}

.faq summary::after {
  float: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Better mobile FAQ spacing */
@media (max-width: 600px) {
  .faq summary {
    line-height: 1.45;
    padding-right: 36px;
  }

  .faq summary::after {
    right: 2px;
  }
}