/* ============================================================
   CLEAN CONVERT — ancientromegame.com
   Non Gamstop Casinos UK
   ============================================================ */

@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:local('Inter')}
@font-face{font-family:'Inter';font-style:normal;font-weight:600;font-display:swap;src:local('Inter Semibold')}
@font-face{font-family:'Inter';font-style:normal;font-weight:700;font-display:swap;src:local('Inter Bold')}

:root {
  --bg:#FFFFFF;
  --bg-alt:#F8F9FA;
  --border:#E5E7EB;
  --text:#111827;
  --muted:#6B7280;
  --accent:#16A34A;
  --accent-dark:#15803d;
  --dark:#0f172a;
  --dark2:#1e293b;
  --radius:8px;
  --font:'Inter',system-ui,-apple-system,sans-serif;
  --max-w:1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; }
img { max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── CONTAINER ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 16px; }

/* ── HEADER / NAV ── */
.site-header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo span { color: var(--accent); }
.desktop-nav { display: flex; gap: 24px; }
.desktop-nav a { color: #cbd5e1; font-size: .9rem; font-weight: 500; transition: color .2s; }
.desktop-nav a:hover { color: var(--accent); text-decoration: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.mobile-nav { display: none; }
@media(max-width:768px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav.open {
    display: flex;
    flex-direction: column;
    background: var(--dark2);
    padding: 16px;
    gap: 12px;
  }
  .mobile-nav a { color: #cbd5e1; font-size: 1rem; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%) !important;
  color: #fff;
  padding: 72px 0 64px;
}
.hero h1, .hero-desc { color: #f1f5f9; }
.hero-eyebrow { font-size: .85rem; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.hero h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
.hero-desc { font-size: 1.1rem; color: #94a3b8; max-width: 680px; margin-bottom: 32px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 1.75rem; font-weight: 700; color: var(--accent); display: block; }
.hero-stat-label { font-size: .8rem; color: #94a3b8; }
.hero-cta-wrap { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.trust-stars { display: flex; align-items: center; gap: 8px; color: #fbbf24; font-size: .9rem; }
.trust-stars span { color: #94a3b8; }
.hero-author-block { display: flex; align-items: center; gap: 12px; padding: 16px; background: rgba(255,255,255,.05); border-radius: var(--radius); border: 1px solid rgba(255,255,255,.08); max-width: 420px; margin-top: 24px; }
.hero-author-img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); flex-shrink: 0; }
.hero-author-name { font-weight: 600; color: #f1f5f9; font-size: .95rem; }
.hero-author-title { font-size: .8rem; color: #94a3b8; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  animation: pulse 2s infinite;
  transition: transform .2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); text-decoration: none; }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(22,163,74,.4); }
  50% { box-shadow: 0 0 0 8px rgba(22,163,74,0); }
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  border: 2px solid rgba(255,255,255,.3);
  text-decoration: none;
  transition: border-color .2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,.7); text-decoration: none; }

/* ── SECTIONS ── */
.content-section { padding: 64px 0; }
.content-section-alt { background: var(--bg-alt); }

.content-section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
  display: block;
  width: 100%;
  float: none;
  clear: both;
}

/* H2 BANNER */
.h2-banner-wrap {
  display: block;
  width: calc(100% + 32px);
  margin-left: -16px;
  overflow: hidden;
  line-height: 0;
  clear: both;
  margin-bottom: 32px;
  border-radius: 4px;
}
.h2-banner-img {
  display: block;
  width: 100%;
  aspect-ratio: 3/1;
  object-fit: cover;
}
.h2-banner-wrap figcaption {
  font-size: 11px;
  color: #6b7280;
  text-align: right;
  padding: 4px 8px 0;
  font-style: italic;
  line-height: 1.4;
}
@media(max-width:767px) {
  .h2-banner-img { aspect-ratio: 1/1; object-position: center top; }
}

.section-body { line-height: 1.8; }
.section-body p { margin-bottom: 16px; color: var(--text); }
.section-body p:last-child { margin-bottom: 0; }
.section-body ul { margin: 16px 0 16px 20px; }
.section-body li { margin-bottom: 8px; }
.section-body table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: .9rem; overflow-x: auto; display: block; }
.section-body th { background: var(--dark); color: #fff; padding: 10px 14px; text-align: left; font-weight: 600; white-space: nowrap; }
.section-body td { padding: 9px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
.section-body tr:nth-child(even) td { background: var(--bg-alt); }

/* ── VITRINA ── */
.vitrina-section { padding: 64px 0; background: var(--dark); }
.vitrina-section h2 { color: #f1f5f9; margin-bottom: 8px; font-size: clamp(1.4rem,3vw,2rem); font-weight: 700; }
.vitrina-subtitle { color: #94a3b8; margin-bottom: 40px; font-size: 1rem; }
.vitrina-grid { display: grid; gap: 20px; }
.casino-card {
  background: #1e293b;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 24px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 16px;
  align-items: start;
  transition: transform .2s, box-shadow .2s;
}
.casino-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.casino-card.top-pick { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.casino-rank {
  width: 48px;
  height: 48px;
  background: rgba(22,163,74,.15);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
}
.casino-badge { display: inline-block; background: rgba(22,163,74,.2); color: var(--accent); font-size: .75rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 8px; }
.casino-name { font-size: 1.15rem; font-weight: 700; color: #f1f5f9; margin-bottom: 6px; }
.casino-license { font-size: .8rem; color: #94a3b8; margin-bottom: 6px; }
.casino-bonus { font-size: .9rem; color: #fbbf24; font-weight: 600; margin-bottom: 10px; }
.casino-features { display: flex; gap: 6px; flex-wrap: wrap; }
.feature-tag { background: rgba(255,255,255,.06); color: #cbd5e1; font-size: .75rem; padding: 3px 8px; border-radius: 4px; }
.casino-cta { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 160px; }
.casino-rating { font-size: .9rem; color: #fbbf24; font-weight: 700; }
@media(max-width:768px) {
  .casino-card { grid-template-columns: 40px 1fr; }
  .casino-cta { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; }
}

/* ── EEAT AUTHOR ── */
.eeat-section { padding: 64px 0; background: var(--bg-alt); }
.eeat-section h2 { font-size: clamp(1.3rem,3vw,1.8rem); font-weight: 700; color: var(--dark); margin-bottom: 32px; }
.author-box {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--border);
  align-items: start;
}
.author-portrait { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; border: 3px solid var(--accent); }
.author-info h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.author-title-badge { display: inline-block; background: var(--accent); color: #fff; font-size: .75rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 12px; }
.author-bio { color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.expertise-list { display: flex; flex-wrap: wrap; gap: 8px; }
.expertise-tag { background: var(--bg-alt); border: 1px solid var(--border); color: var(--text); font-size: .8rem; padding: 4px 12px; border-radius: 20px; }
@media(max-width:768px) {
  .author-box { grid-template-columns: 1fr; text-align: center; }
  .author-portrait { margin: 0 auto; }
  .expertise-list { justify-content: center; }
}

/* ── REVIEWED BY ── */
.reviewed-section { padding: 64px 0; }
.reviewed-section h2 { font-size: clamp(1.3rem,3vw,1.8rem); font-weight: 700; margin-bottom: 32px; }
.reviewed-by-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
@media(max-width:768px) { .reviewed-by-cards { grid-template-columns: 1fr; } }
.reviewer-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.reviewer-img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); margin: 0 auto 12px; display: block; }
.reviewer-name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.reviewer-title { font-size: .8rem; color: var(--muted); margin-bottom: 8px; }
.reviewer-stars { color: #fbbf24; margin-bottom: 10px; font-size: .9rem; }
.reviewer-quote { font-size: .85rem; color: var(--muted); line-height: 1.6; font-style: italic; }
.reviewer-date { font-size: .75rem; color: var(--muted); margin-top: 10px; }

/* ── FAQ ── */
.faq-section { padding: 64px 0; background: var(--bg-alt); }
.faq-section h2 { font-size: clamp(1.3rem,3vw,1.8rem); font-weight: 700; margin-bottom: 32px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-q {
  width: 100%;
  background: #fff;
  border: none;
  padding: 18px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--text);
  transition: background .2s;
}
.faq-q:hover { background: var(--bg-alt); }
.faq-q .faq-icon { font-size: 1.2rem; flex-shrink: 0; transition: transform .3s; color: var(--accent); }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  background: #fff;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  color: var(--muted);
  line-height: 1.7;
}
.faq-a.open { max-height: 600px; padding: 16px 24px 20px; }

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  color: #94a3b8;
  padding: 48px 0 32px;
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin-bottom: 32px; }
@media(max-width:768px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-logo { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.footer-logo span { color: var(--accent); }
.footer-desc { font-size: .85rem; line-height: 1.6; margin-bottom: 16px; }
.footer-disclaimer {
  font-size: .78rem;
  color: #64748b;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding: 16px;
  line-height: 1.6;
  margin-top: 12px;
}
.footer-links h4 { color: #f1f5f9; font-size: .9rem; font-weight: 700; margin-bottom: 12px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #94a3b8; font-size: .85rem; transition: color .2s; }
.footer-links a:hover { color: var(--accent); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px; text-align: center; font-size: .8rem; color: #475569; }

/* ── STICKY CTA (mobile) ── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark2);
  border-top: 2px solid var(--accent);
  padding: 12px 16px;
  z-index: 200;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-cta-text { color: #f1f5f9; font-size: .9rem; font-weight: 600; }
.sticky-cta .btn-primary { padding: 10px 20px; font-size: .9rem; animation: none; }
@media(max-width:768px) { .sticky-cta { display: none; } /* JS shows it */ }

/* ── POPUP ── */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.popup-overlay.show { display: flex; }
.popup-box {
  background: var(--dark2);
  border: 1px solid rgba(22,163,74,.4);
  border-radius: 12px;
  padding: 32px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
}
.popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.4rem;
  cursor: pointer;
}
.popup-title { color: #f1f5f9; font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.popup-sub { color: #94a3b8; font-size: .9rem; margin-bottom: 24px; }
.popup-bonus { color: var(--accent); font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; }

/* ── SECTION BACKGROUNDS ── */
.section-bg-white { background: var(--bg); }
.section-bg-alt { background: var(--bg-alt); }
.section-bg-dark { background: var(--dark); }

/* ── BREADCRUMB ── */
.breadcrumb { font-size: .82rem; color: #94a3b8; margin-bottom: 16px; }
.breadcrumb a { color: #94a3b8; }
.breadcrumb span { color: #64748b; margin: 0 6px; }

/* ── MISC ── */
.section-label { font-size: .8rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; display: block; }
.updated-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(22,163,74,.1); color: var(--accent); font-size: .8rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; margin-bottom: 16px; }
