/* =========================================================
   Honestscopelabs — Premium Casino Hotel Review Publication
   Design system: editorial luxury, glassmorphism, gold accents
   ========================================================= */

:root {
  --pale-slate: #BFBDC1;
  --dim-grey: #6D6A75;
  --shadow-grey: #37323E;
  --metallic-gold: #DEB841;
  --honey-bronze: #DE9E36;

  --bg: #FBFAF8;
  --bg-alt: #F3F1EE;
  --ink: #2A2730;
  --ink-soft: #5A5663;
  --line: rgba(55, 50, 62, 0.12);
  --gold-grad: linear-gradient(135deg, #DEB841 0%, #DE9E36 100%);
  --shadow-soft: 0 18px 50px -24px rgba(55, 50, 62, 0.45);
  --shadow-card: 0 24px 70px -30px rgba(55, 50, 62, 0.55);
  --radius: 22px;
  --radius-lg: 28px;
  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Lexend', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Limelight', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.5px;
  color: var(--shadow-grey);
}

p { color: var(--ink-soft); }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

::selection { background: var(--metallic-gold); color: #fff; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--shadow-grey); color: var(--pale-slate); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(191, 189, 193, 0.78); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lexend', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--honey-bronze);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--metallic-gold);
}

.section-title {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  margin-bottom: 18px;
}
.section-intro {
  max-width: 640px;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.text-gold {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 100px;
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .35s var(--ease);
  text-transform: uppercase;
}
.btn--gold {
  background: var(--gold-grad);
  color: var(--shadow-grey);
  box-shadow: 0 14px 30px -12px rgba(222, 158, 54, 0.6);
}
.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -12px rgba(222, 158, 54, 0.75);
}
.btn--ghost {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.16); border-color: var(--metallic-gold); }
.btn--outline {
  border-color: var(--shadow-grey);
  color: var(--shadow-grey);
  background: transparent;
}
.btn--outline:hover { background: var(--shadow-grey); color: #fff; }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all .4s var(--ease);
  background: rgba(251, 250, 248, 0.0);
}
.site-header.scrolled {
  background: rgba(251, 250, 248, 0.85);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  box-shadow: 0 10px 30px -20px rgba(55,50,62,0.3);
}
.site-header.on-dark .nav-link,
.site-header.on-dark .brand-name { color: #fff; }
.site-header.scrolled .nav-link,
.site-header.scrolled .brand-name { color: var(--shadow-grey); }
.site-header.on-dark.scrolled .nav-link,
.site-header.on-dark.scrolled .brand-name { color: var(--shadow-grey); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: grid; place-items: center;
  font-family: 'Limelight', serif;
  color: var(--shadow-grey);
  font-size: 20px;
  box-shadow: 0 8px 20px -8px rgba(222,158,54,.6);
}
.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 20px -8px rgba(222,158,54,.6);
  flex: 0 0 44px;
}
.brand-name {
  font-family: 'Limelight', serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: #fff;
  transition: color .4s var(--ease);
}
.brand-name span { color: var(--metallic-gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  color: #fff;
  padding: 6px 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--metallic-gold);
  transition: width .35s var(--ease);
}
.nav-link:hover { color: var(--metallic-gold); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--metallic-gold); }

.nav-cta { padding: 11px 22px; font-size: 12.5px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: none; background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: flex-end;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: currentColor;
  transition: all .3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 26px; }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(55,50,62,0.55) 0%, rgba(55,50,62,0.35) 40%, rgba(55,50,62,0.78) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 140px 0 90px;
  max-width: 760px;
}
.hero-eyebrow {
  color: var(--metallic-gold);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 22px;
  display: inline-flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ""; width: 36px; height: 1px; background: var(--metallic-gold);
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin-bottom: 24px;
}
.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 38px;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 3;
}
.hero-scroll .line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, var(--metallic-gold), transparent);
  animation: scrollPulse 2s var(--ease) infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: .8; }
  50% { transform: scaleY(1.4); opacity: .3; }
}

/* ---------- Page hero (interior) ---------- */
.page-hero {
  position: relative;
  padding: 180px 0 90px;
  color: #fff;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.page-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(55,50,62,0.65), rgba(55,50,62,0.85));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 16px;
}
.page-hero p { color: rgba(255,255,255,0.82); max-width: 620px; font-size: 1.08rem; }
.breadcrumbs {
  display: flex; gap: 10px; align-items: center;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--metallic-gold);
  margin-bottom: 22px;
}
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { opacity: .5; }

/* ---------- Cards / Glass ---------- */
.glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  border: 1px solid var(--line);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}
.card-media {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
}
.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.card:hover .card-media img { transform: scale(1.07); }
.card-body { padding: 26px 26px 30px; }
.card-tag {
  display: inline-block;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--honey-bronze); font-weight: 600;
  margin-bottom: 12px;
}
.card-title {
  font-size: 1.45rem;
  margin-bottom: 10px;
}
.card-meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px; color: var(--dim-grey);
  margin-bottom: 14px;
}
.card-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--metallic-gold); }
.card-text { font-size: 0.95rem; margin-bottom: 20px; }
.card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  color: var(--shadow-grey);
  text-transform: uppercase;
}
.card-link .arrow { transition: transform .35s var(--ease); color: var(--honey-bronze); }
.card-link:hover { color: var(--honey-bronze); }
.card-link:hover .arrow { transform: translateX(6px); }

/* ---------- Grid ---------- */
.grid { display: grid; gap: 32px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.section-head .lead { max-width: 460px; }

/* ---------- Rating badge ---------- */
.rating-badge {
  position: absolute;
  top: 18px; right: 18px;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  box-shadow: 0 10px 24px -10px rgba(55,50,62,.5);
  border: 2px solid var(--metallic-gold);
  z-index: 3;
}
.rating-badge .num {
  font-family: 'Limelight', serif;
  font-size: 22px;
  color: var(--shadow-grey);
  line-height: 1;
}
.rating-badge .lbl {
  font-size: 8px; letter-spacing: 1.5px;
  color: var(--dim-grey);
  text-transform: uppercase;
  margin-top: 2px;
}

/* ---------- Score / verdict ---------- */
.score-ring {
  --p: 92;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: conic-gradient(var(--metallic-gold) calc(var(--p)*1%), rgba(55,50,62,0.12) 0);
  display: grid; place-items: center;
  position: relative;
}
.score-ring::before {
  content: "";
  position: absolute;
  inset: 10px;
  background: #fff;
  border-radius: 50%;
}
.score-ring .inner {
  position: relative;
  text-align: center;
}
.score-ring .inner .v {
  font-family: 'Limelight', serif;
  font-size: 2.4rem;
  color: var(--shadow-grey);
  line-height: 1;
}
.score-ring .inner .l {
  font-size: 10px; letter-spacing: 2px;
  color: var(--dim-grey); text-transform: uppercase;
}

/* ---------- Stat strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.stat {
  padding: 30px 26px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat .n {
  font-family: 'Limelight', serif;
  font-size: 2.2rem;
  color: var(--shadow-grey);
  display: block;
  margin-bottom: 6px;
}
.stat .n span { color: var(--honey-bronze); }
.stat .l {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--dim-grey);
}

/* ---------- Feature list ---------- */
.feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.feature-icon {
  flex: 0 0 54px;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(222,184,65,0.15), rgba(222,158,54,0.1));
  border: 1px solid rgba(222,184,65,0.3);
  display: grid; place-items: center;
  color: var(--honey-bronze);
  font-size: 22px;
}
.feature h4 {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--shadow-grey);
  margin-bottom: 6px;
  letter-spacing: 0;
}
.feature p { font-size: 0.92rem; }

/* ---------- Destination chips ---------- */
.destinations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.destination {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex;
  align-items: flex-end;
  color: #fff;
  transition: transform .5s var(--ease);
}
.destination img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .8s var(--ease);
}
.destination::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(55,50,62,0.85) 100%);
  transition: background .5s var(--ease);
  z-index: 1;
}
.destination:hover { transform: translateY(-6px); }
.destination:hover img { transform: scale(1.07); }
.destination:hover::after { background: linear-gradient(180deg, rgba(55,50,62,0.2) 0%, rgba(55,50,62,0.92) 100%); }
.destination-content {
  position: relative; z-index: 2;
  padding: 28px;
  width: 100%;
}
.destination-country {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--metallic-gold);
  margin-bottom: 8px;
}
.destination-name {
  font-family: 'Limelight', serif;
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.destination-count {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

/* ---------- Table games block ---------- */
.tg-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #fff;
}
.tg-block__media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.tg-block__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.tg-block__body {
  padding: 56px 52px;
}
.tg-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 26px;
  margin-top: 26px;
}
.tg-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.tg-list li .chip {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: grid; place-items: center;
  color: var(--shadow-grey);
  font-size: 16px;
  flex: 0 0 34px;
}

/* ---------- Pros / Cons ---------- */
.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.pc-card {
  border-radius: var(--radius);
  padding: 36px 34px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.pc-card.pros { border-top: 4px solid var(--metallic-gold); }
.pc-card.cons { border-top: 4px solid var(--dim-grey); }
.pc-card h3 {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0;
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 12px;
}
.pc-card.pros h3 { color: var(--honey-bronze); }
.pc-card.cons h3 { color: var(--dim-grey); }
.pc-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  font-size: 0.96rem;
  color: var(--ink);
  border-bottom: 1px dashed var(--line);
}
.pc-list li:last-child { border-bottom: none; }
.pc-list.pros li::before {
  content: "+";
  position: absolute; left: 0; top: 9px;
  color: var(--honey-bronze); font-weight: 700; font-size: 18px;
}
.pc-list.cons li::before {
  content: "–";
  position: absolute; left: 0; top: 9px;
  color: var(--dim-grey); font-weight: 700; font-size: 18px;
}

/* ---------- Review sections ---------- */
.review-section { padding: 80px 0; border-top: 1px solid var(--line); }
.review-section__head {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 28px;
}
.review-section__num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: grid; place-items: center;
  font-family: 'Limelight', serif;
  color: var(--shadow-grey);
  font-size: 18px;
  flex: 0 0 46px;
}
.review-section__head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split--media-left .split__media { order: -1; }
.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__text h3 {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0;
  margin-bottom: 14px;
  color: var(--shadow-grey);
}
.split__text p { margin-bottom: 16px; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.gallery figure {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery figure:hover img { transform: scale(1.1); }

/* ---------- Verdict ---------- */
.verdict {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  background: var(--shadow-grey);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 52px;
  box-shadow: var(--shadow-card);
}
.verdict .score-ring { background: conic-gradient(var(--metallic-gold) calc(var(--p)*1%), rgba(255,255,255,0.12) 0); }
.verdict .score-ring::before { background: var(--shadow-grey); }
.verdict .score-ring .inner .v { color: #fff; }
.verdict .score-ring .inner .l { color: var(--pale-slate); }
.verdict h2 { color: #fff; margin-bottom: 16px; }
.verdict p { color: rgba(191,189,193,0.85); margin-bottom: 16px; }
.verdict-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.verdict-tags span {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid rgba(222,184,65,0.4);
  border-radius: 100px;
  color: var(--metallic-gold);
}

/* ---------- Quick facts ---------- */
.quickfacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
}
.quickfact {
  padding: 24px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quickfact:nth-child(3n) { border-right: none; }
.quickfact .l {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--dim-grey); margin-bottom: 8px;
}
.quickfact .v {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  color: var(--shadow-grey);
  font-size: 1rem;
}

/* ---------- Trust pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar {
  padding: 40px 34px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.pillar:hover { transform: translateY(-6px); border-color: var(--metallic-gold); }
.pillar .num {
  font-family: 'Limelight', serif;
  font-size: 2.4rem;
  color: var(--metallic-gold);
  display: block;
  margin-bottom: 18px;
}
.pillar h4 {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0;
  margin-bottom: 12px;
  color: var(--shadow-grey);
}

/* ---------- Responsible gaming ---------- */
.responsible {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.responsible-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 36px;
  backdrop-filter: blur(10px);
}
.responsible-card h3 { color: #fff; margin-bottom: 16px; font-size: 1.4rem; }
.responsible-card p { color: rgba(191,189,193,0.8); margin-bottom: 18px; }
.responsible-list { display: grid; gap: 14px; }
.responsible-list li {
  display: flex; gap: 14px; align-items: flex-start;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.responsible-list li .ic {
  color: var(--metallic-gold);
  flex: 0 0 24px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--shadow-grey);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(222,184,65,0.18), transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(222,158,54,0.15), transparent 50%);
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(191,189,193,0.85); max-width: 540px; margin: 0 auto 30px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 42px;
  box-shadow: var(--shadow-soft);
}
.form-row { display: grid; gap: 22px; margin-bottom: 22px; }
.form-row--2 { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--dim-grey); font-weight: 600;
}
.field label .req { color: var(--honey-bronze); }
.field input,
.field select,
.field textarea {
  font-family: 'Lexend', sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-alt);
  color: var(--ink);
  transition: all .3s var(--ease);
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--metallic-gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(222,184,65,0.15);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .error {
  font-size: 12px; color: #c0392b; min-height: 14px;
  display: none;
}
.field.invalid input,
.field.invalid textarea { border-color: #c0392b; background: rgba(192,57,43,0.04); }
.field.invalid .error { display: block; }

.contact-info {
  display: grid; gap: 22px;
}
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-soft);
}
.info-card h4 {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0;
  margin-bottom: 14px;
  color: var(--shadow-grey);
  display: flex; align-items: center; gap: 12px;
}
.info-card h4 .ic { color: var(--honey-bronze); }
.info-card p, .info-card a { font-size: 0.95rem; color: var(--ink-soft); }
.info-card a:hover { color: var(--honey-bronze); }
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  height: 280px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.hours-list { display: grid; gap: 8px; }
.hours-list li {
  display: flex; justify-content: space-between;
  font-size: 0.92rem;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--ink); font-weight: 500; }
.hours-list .time { color: var(--dim-grey); }

/* ---------- About ---------- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 20px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--metallic-gold), transparent);
}
.timeline-item {
  position: relative;
  padding-left: 60px;
  padding-bottom: 40px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 13px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold-grad);
  box-shadow: 0 0 0 4px var(--bg);
}
.timeline-item .year {
  font-family: 'Limelight', serif;
  color: var(--honey-bronze);
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.timeline-item h4 {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0;
  margin-bottom: 8px;
  color: var(--shadow-grey);
}

/* ---------- Legal pages ---------- */
.legal-body { max-width: 820px; margin: 0 auto; }
.legal-body h2 {
  font-size: 1.6rem;
  margin: 40px 0 14px;
}
.legal-body h3 {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0;
  margin: 28px 0 10px;
  color: var(--shadow-grey);
}
.legal-body p { margin-bottom: 16px; }
.legal-body ul.bullets { margin: 12px 0 20px; padding-left: 4px; }
.legal-body ul.bullets li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--ink-soft);
}
.legal-body ul.bullets li::before {
  content: "";
  position: absolute; left: 0; top: 11px;
  width: 14px; height: 1.5px;
  background: var(--metallic-gold);
}
.legal-toc {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 40px;
}
.legal-toc h4 {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim-grey);
  margin-bottom: 14px;
}
.legal-toc ol { padding-left: 20px; }
.legal-toc ol li { margin-bottom: 6px; }
.legal-toc a { color: var(--ink-soft); font-size: 0.95rem; }
.legal-toc a:hover { color: var(--honey-bronze); }
.updated-note {
  font-size: 12px; letter-spacing: 1px;
  color: var(--dim-grey);
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

/* ---------- Toast ---------- */
.toast-wrap {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 1000;
  display: flex; flex-direction: column; gap: 12px;
  pointer-events: none;
}
.toast {
  pointer-events: auto;
  min-width: 280px; max-width: 380px;
  background: var(--shadow-grey);
  color: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 20px 50px -15px rgba(55,50,62,0.6);
  border-left: 4px solid var(--metallic-gold);
  display: flex; align-items: flex-start; gap: 14px;
  transform: translateX(120%);
  opacity: 0;
  transition: all .45s var(--ease);
  font-size: 0.95rem;
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast .ic { color: var(--metallic-gold); flex: 0 0 22px; font-size: 20px; }
.toast.error { border-left-color: #c0392b; }
.toast.error .ic { color: #e74c3c; }
.toast .msg { line-height: 1.5; }

/* ---------- Modal / Lightbox ---------- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(55,50,62,0.85);
  backdrop-filter: blur(8px);
  z-index: 1100;
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.modal-overlay.show { display: flex; opacity: 1; }
.modal {
  max-width: 900px; width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform .4s var(--ease);
}
.modal-overlay.show .modal { transform: scale(1); }
.modal img { width: 100%; display: block; }
.modal-close {
  position: absolute;
  top: 24px; right: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: grid; place-items: center;
  transition: all .3s var(--ease);
}
.modal-close:hover { background: var(--metallic-gold); color: var(--shadow-grey); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--shadow-grey);
  color: var(--pale-slate);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .brand { margin-bottom: 22px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { color: rgba(191,189,193,0.7); font-size: 0.92rem; max-width: 320px; }
.footer-col h5 {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--metallic-gold);
  margin-bottom: 20px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a {
  font-size: 0.92rem;
  color: rgba(191,189,193,0.75);
}
.footer-col a:hover { color: var(--metallic-gold); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(191,189,193,0.6);
}
.footer-disclaimer {
  background: rgba(0,0,0,0.2);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 40px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; gap: 18px; align-items: flex-start;
}
.footer-disclaimer .age-badge {
  flex: 0 0 56px;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--metallic-gold);
  display: grid; place-items: center;
  font-family: 'Limelight', serif;
  color: var(--metallic-gold);
  font-size: 16px;
}
.footer-disclaimer p {
  color: rgba(191,189,193,0.7);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

/* ---------- Misc ---------- */
.divider-gold {
  width: 80px; height: 2px;
  background: var(--gold-grad);
  margin: 24px 0;
  border: none;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 7px 14px;
  background: rgba(222,184,65,0.1);
  border: 1px solid rgba(222,184,65,0.3);
  border-radius: 100px;
  color: var(--honey-bronze);
  font-weight: 600;
}

/* ---------- Utility classes (no inline styles) ---------- */
.hero--interior { min-height: 88vh; }
.section--pt-sm { padding-top: 64px; }
.section--pb-sm { padding-bottom: 64px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.maxw-760 { max-width: 760px; }
.maxw-820 { max-width: 820px; }
.w-100 { width: 100%; }
.justify-center { justify-content: center; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-48 { margin-bottom: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: 8px; }
.fs-19 { font-size: 1.9rem; }
.fw-600 { font-weight: 600; }
.color-gold { color: var(--honey-bronze); }
.color-white { color: #fff; }
.center-head {
  justify-content: center;
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.center-head .section-intro { text-align: center; }
.btn--block { width: 100%; justify-content: center; }
.hero-actions--center { justify-content: center; }
.hero-actions--center .btn { justify-content: center; }
.req { color: var(--honey-bronze); }
.legal-body a.link-gold { color: var(--honey-bronze); }
.responsible-lead {
  color: rgba(191,189,193,0.8);
  max-width: 520px;
  margin-bottom: 24px;
}
.btn--gold-outline {
  border-color: var(--metallic-gold);
  color: var(--metallic-gold);
  background: transparent;
}
.btn--gold-outline:hover {
  background: var(--metallic-gold);
  color: var(--shadow-grey);
}
.responsible-card--center {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.responsible-card--center h3 { text-align: center; }
.responsible-card--center p { text-align: center; }
.mt-18 { margin-top: 18px; }
.tg-title {
  font-family: 'Limelight', serif;
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.review-section__head--center {
  justify-content: center;
  margin-bottom: 36px;
}
.score-ring--91 { --p: 91; }
.score-ring--88 { --p: 88; }
.score-ring--94 { --p: 94; }
.eyebrow--gold { color: var(--metallic-gold); }
.link-gold { color: var(--honey-bronze); }
.link-gold:hover { color: var(--metallic-gold); }
.fs-19-mb-sm { font-size: 1.9rem; margin-bottom: 8px; }
.mb-28 { margin-bottom: 28px; }
.fs-85-mt-sm { font-size: 0.85rem; margin-top: 6px; }
.section-head--mb-32 { margin-bottom: 32px; }
.req-mark { color: var(--honey-bronze); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tg-block { grid-template-columns: 1fr; }
  .tg-block__media { min-height: 300px; }
  .split, .about-intro, .responsible, .contact-grid, .proscons { grid-template-columns: 1fr; gap: 36px; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .verdict { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .verdict-tags { justify-content: center; }
}

@media (max-width: 820px) {
  .section { padding: 70px 0; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(85vw, 360px);
    background: var(--shadow-grey);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 40px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    box-shadow: -20px 0 60px -20px rgba(0,0,0,0.5);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links .nav-link { color: #fff !important; font-size: 16px; }
  .nav-toggle { display: flex; color: var(--shadow-grey); }
  .site-header.on-dark .nav-toggle { color: #fff; }
  .site-header.scrolled .nav-toggle { color: var(--shadow-grey); }
  .grid--3, .grid--4, .destinations, .pillars, .values-grid, .quickfacts { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .tg-list { grid-template-columns: 1fr; }
  .form-row--2 { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .grid--2, .grid--3, .grid--4, .destinations, .pillars, .values-grid, .quickfacts, .footer-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .form-card, .tg-block__body, .verdict, .cta-band { padding: 32px 24px; }
  .pc-card { padding: 28px 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .toast-wrap { left: 16px; right: 16px; bottom: 16px; }
  .toast { min-width: 0; max-width: none; }
}
