@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Vazirmatn:wght@300;400;500;600;700&display=swap');

:root {
  --ink: #0c0a09;
  --ink-soft: #1c1917;
  --stone: #292524;
  --muted: #a8a29e;
  --paper: #f5f0e8;
  --paper-dim: #e7e0d4;
  --gold: #c4a35a;
  --gold-deep: #8a6a2f;
  --gold-bright: #e8d5a3;
  --crimson: #9f1239;
  --emerald: #065f46;
  --glass: rgba(28, 25, 23, 0.72);
  --radius: 2px;
  --max: 1120px;
  --font-fa: "Vazirmatn", Tahoma, sans-serif;
  --font-brand: "Cormorant Garamond", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-fa);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(196, 163, 90, 0.18), transparent 55%),
    radial-gradient(900px 500px at 0% 20%, rgba(6, 95, 70, 0.16), transparent 50%),
    linear-gradient(180deg, #120f0d 0%, var(--ink) 40%, #151210 100%);
  color: var(--paper);
  line-height: 1.85;
  font-weight: 400;
  min-height: 100vh;
}

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

a {
  color: var(--gold-bright);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}

a:hover {
  color: #fff;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(12, 10, 9, 0.82);
  border-bottom: 1px solid rgba(196, 163, 90, 0.22);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  font-family: var(--font-brand);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
  line-height: 1;
}

.brand span {
  color: var(--paper);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--paper-dim);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(196, 163, 90, 0.4);
  color: var(--gold);
  padding: 0.4rem 0.7rem;
  cursor: pointer;
  font-family: inherit;
}

/* Hero — one composition */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 10, 9, 0.92) 0%, rgba(12, 10, 9, 0.55) 48%, rgba(12, 10, 9, 0.35) 100%),
    linear-gradient(0deg, rgba(12, 10, 9, 0.95) 0%, transparent 45%);
}

.hero-copy {
  padding: clamp(3rem, 8vw, 6rem) 0 3.5rem;
  max-width: 640px;
}

.hero-brand {
  font-family: var(--font-brand);
  font-size: clamp(3rem, 9vw, 5.5rem);
  line-height: 0.95;
  margin: 0 0 1rem;
  color: var(--gold-bright);
  letter-spacing: 0.02em;
  opacity: 0;
  animation: rise 0.9s ease forwards 0.15s;
}

.hero h1 {
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 600;
  margin: 0 0 0.85rem;
  color: var(--paper);
  opacity: 0;
  animation: rise 0.9s ease forwards 0.35s;
}

.hero p {
  margin: 0 0 1.6rem;
  color: var(--paper-dim);
  font-size: 1.05rem;
  max-width: 34rem;
  opacity: 0;
  animation: rise 0.9s ease forwards 0.5s;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  animation: rise 0.9s ease forwards 0.65s;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--ink);
}

.btn-primary:hover {
  color: var(--ink);
  filter: brightness(1.08);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(196, 163, 90, 0.55);
  color: var(--gold-bright);
}

.btn-ghost:hover {
  background: rgba(196, 163, 90, 0.12);
  color: #fff;
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}

/* Top 7 ranking */
.rank-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.rank-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  padding: 1.15rem 1.2rem 1.25rem;
  background: linear-gradient(155deg, rgba(41, 37, 36, 0.95), rgba(12, 10, 9, 0.92));
  border: 1px solid rgba(196, 163, 90, 0.28);
  position: relative;
}

.rank-card.featured {
  border-color: rgba(196, 163, 90, 0.55);
  box-shadow: 0 0 0 1px rgba(196, 163, 90, 0.12);
}

.rank-card.featured::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(var(--gold), var(--emerald));
}

.rank-badge {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  font-family: var(--font-brand);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  line-height: 1;
}

.rank-main {
  min-width: 0;
}

.rank-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-bottom: 0.35rem;
}

.rank-top h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--paper);
}

.rank-score {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold-bright);
  font-weight: 600;
  font-size: 0.95rem;
}

.stars {
  display: inline-flex;
  gap: 0.12rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.stars span {
  opacity: 0.28;
}

.stars span.on {
  opacity: 1;
}

.rank-tag {
  font-size: 0.78rem;
  color: var(--ink);
  background: var(--gold);
  padding: 0.15rem 0.45rem;
  font-weight: 700;
}

.rank-summary {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.95rem;
}

.pc-box {
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}

.pc-box h4 {
  margin: 0 0 0.45rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.pc-box.pros h4 {
  color: #6ee7b7;
}

.pc-box.cons h4 {
  color: #fca5a5;
}

.pc-box ul {
  margin: 0;
  padding-inline-start: 1.05rem;
  color: var(--paper-dim);
  font-size: 0.88rem;
}

.pc-box li {
  margin-bottom: 0.28rem;
}

.rank-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.rank-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

.rank-compare {
  margin-top: 1.5rem;
  overflow-x: auto;
  border: 1px solid rgba(196, 163, 90, 0.22);
}

.rank-compare table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.9rem;
}

.rank-compare th,
.rank-compare td {
  padding: 0.7rem 0.85rem;
  text-align: right;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.rank-compare th {
  background: rgba(196, 163, 90, 0.12);
  color: var(--gold-bright);
  font-weight: 600;
}

.rank-compare td {
  color: var(--paper-dim);
}

.rank-compare tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 720px) {
  .pros-cons {
    grid-template-columns: 1fr;
  }
  .rank-card {
    grid-template-columns: 1fr;
  }
}

/* Sections */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-head {
  margin-bottom: 1.75rem;
}

.section-head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold-bright);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
}

.prose {
  font-size: 1.02rem;
  color: var(--paper-dim);
}

.prose h2 {
  color: var(--gold-bright);
  font-size: 1.45rem;
  margin: 2.4rem 0 0.9rem;
  font-weight: 700;
}

.prose h3 {
  color: var(--paper);
  font-size: 1.15rem;
  margin: 1.8rem 0 0.65rem;
  font-weight: 600;
}

.prose p {
  margin: 0 0 1rem;
}

.prose ul,
.prose ol {
  padding-inline-start: 1.3rem;
  margin: 0 0 1.1rem;
}

.prose li {
  margin-bottom: 0.4rem;
}

.prose figure {
  margin: 1.75rem 0;
}

.prose figcaption {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.article-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(196, 163, 90, 0.2);
}

/* Offer strip */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.offer {
  background: linear-gradient(160deg, rgba(41, 37, 36, 0.9), rgba(12, 10, 9, 0.95));
  border: 1px solid rgba(196, 163, 90, 0.28);
  padding: 1.4rem 1.3rem;
  position: relative;
  overflow: hidden;
}

.offer::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(var(--gold), var(--emerald));
}

.offer h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  color: var(--paper);
}

.offer p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Feature rail — not cards for decoration; interactive destinations */
.feature-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-link {
  display: block;
  padding: 1.2rem;
  border-bottom: 1px solid rgba(196, 163, 90, 0.25);
  background: rgba(28, 25, 23, 0.45);
  color: inherit;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.feature-link:hover {
  background: rgba(196, 163, 90, 0.1);
  border-color: var(--gold);
  color: inherit;
}

.feature-link strong {
  display: block;
  color: var(--gold-bright);
  margin-bottom: 0.35rem;
}

.feature-link span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.blog-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: inherit;
  border-bottom: 1px solid rgba(196, 163, 90, 0.2);
  padding-bottom: 1rem;
  transition: opacity 0.2s ease;
}

.blog-item:hover {
  opacity: 0.9;
  color: inherit;
}

.blog-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(196, 163, 90, 0.15);
}

.blog-item h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--paper);
  font-weight: 600;
}

.blog-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.meta {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Sticky CTA bar */
.sticky-cta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 35;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.65rem 1rem;
  background: rgba(12, 10, 9, 0.92);
  border-top: 1px solid rgba(196, 163, 90, 0.3);
  backdrop-filter: blur(10px);
  transform: translateY(110%);
  transition: transform 0.35s ease;
}

.sticky-cta.show {
  transform: translateY(0);
}

body {
  padding-bottom: 4.5rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(196, 163, 90, 0.2);
  padding: 2.5rem 0 5.5rem;
  background: rgba(0, 0, 0, 0.35);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}

.site-footer h3 {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 1rem;
}

.site-footer p,
.site-footer li {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.4rem;
}

.socials {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.socials a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(196, 163, 90, 0.35);
  color: var(--gold-bright);
  transition: background 0.2s ease, color 0.2s ease;
}

.socials a:hover {
  background: var(--gold);
  color: var(--ink);
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.disclaimer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  color: #78716c;
}

/* Article page */
.article-hero {
  padding: 2.5rem 0 1rem;
}

.article-hero h1 {
  margin: 0.4rem 0 0.75rem;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--paper);
  line-height: 1.45;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--muted);
}

.related {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196, 163, 90, 0.2);
}

/* Motion */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-brand,
  .hero h1,
  .hero p,
  .cta-row {
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .offer-grid,
  .feature-rail,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    inset-inline: 1rem;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    background: var(--ink-soft);
    border: 1px solid rgba(196, 163, 90, 0.25);
    padding: 0.75rem;
  }
  .nav-links.open {
    display: flex;
  }
  .hero {
    min-height: 78vh;
  }
}


/* Link-building / responsible gambling */
.rg-footer {
  margin-top: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(196, 163, 90, 0.28);
  background: rgba(0, 0, 0, 0.28);
  color: var(--muted);
  font-size: 0.88rem;
}
.link-internal,
.link-resources {
  margin: 1.25rem 0;
  padding: 0.9rem 1rem;
  border-right: 3px solid var(--gold);
  background: rgba(28, 25, 23, 0.55);
  color: var(--paper-dim);
  font-size: 0.95rem;
}
.link-internal a,
.link-resources a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* FAQ accordion (AEO-friendly details/summary) */
.faq-list{display:grid;gap:0.75rem;margin-top:1.25rem}
.faq-item{border:1px solid rgba(196,163,90,.25);border-radius:12px;padding:0.75rem 1rem;background:rgba(12,10,9,.55)}
.faq-item summary{cursor:pointer;list-style:none}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary h3{display:inline;font-size:1.05rem;margin:0;color:var(--gold,#c4a35a)}
.faq-item[open]{border-color:rgba(196,163,90,.55)}
.faq-item p{margin:0.75rem 0 0;color:var(--muted,#cfc8be);line-height:1.85}
.breadcrumb{font-size:.9rem;color:var(--muted,#a8a29e);margin-bottom:1rem}
.breadcrumb a{color:inherit;text-decoration:underline;text-underline-offset:3px}
