:root {
  --bg: #0B1426;
  --surface: #14213A;
  --surface-2: #1B2B4A;
  --teal: #2DD4BF;
  --teal-soft: rgba(45, 212, 191, .14);
  --amber: #F59E0B;
  --amber-soft: rgba(245, 158, 11, .14);
  --text: #EDF2F7;
  --muted: #9FB0CC;
  --c-bg: #0B1426;
  --c-line: rgba(237, 242, 247, .09);
  --c-grad: linear-gradient(135deg, #2DD4BF 0%, #38BDF8 55%, #F59E0B 100%);
  --c-text: #EDF2F7;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --radius: 18px;
  --shadow: 0 18px 50px rgba(3, 8, 20, .55);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  overflow-x: clip;
  width: 100%; max-width: 100%;
  min-height: 100vh;
  display: flex; flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
main { flex: 1; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; overflow-wrap: break-word; word-break: break-word; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  overflow-wrap: break-word;
  word-break: break-word;
}
h1 { font-size: clamp(34px, 5.4vw, 64px); }
h2 { font-size: clamp(26px, 3.4vw, 42px); }
h3 { font-size: clamp(19px, 2.2vw, 24px); }
p { color: var(--muted); }
ul, ol { list-style: none; }
button { font-family: inherit; color: inherit; }
.container { max-width: 1240px; margin: 0 auto; padding-inline: 24px; width: 100%; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

::selection { background: rgba(45, 212, 191, .3); }

a, button, .chip, .cselect__trigger {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.btn, .chip, .burger, .cselect__trigger, .chat-toggle, .quiz-option {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 0;
  font-weight: 700; font-size: 15px;
  cursor: pointer;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: linear-gradient(120deg, #2DD4BF, #14B8A6);
  color: #06281f;
  box-shadow: 0 10px 30px rgba(45, 212, 191, .28);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(45, 212, 191, .42); }
.btn-amber {
  background: linear-gradient(120deg, #F59E0B, #F97316);
  color: #2b1502;
  box-shadow: 0 10px 30px rgba(245, 158, 11, .26);
}
.btn-amber:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(245, 158, 11, .4); }
.btn-ghost {
  background: rgba(237, 242, 247, .05);
  color: var(--text);
  border: 1px solid rgba(45, 212, 191, .35);
}
.btn-ghost:hover { background: var(--teal-soft); transform: translateY(-3px); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(11, 20, 38, .74);
  border-bottom: 1px solid var(--c-line);
  overflow: visible;
}
.site-header__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding-block: 13px;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 20px; letter-spacing: .2px; }
.brand svg { width: 38px; height: 38px; flex-shrink: 0; filter: drop-shadow(0 0 10px rgba(45, 212, 191, .45)); }
.brand b { color: var(--teal); font-weight: 800; }
.brand span { white-space: nowrap; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-weight: 600; font-size: 15px;
  color: var(--muted);
  transition: color .3s var(--ease), text-shadow .3s var(--ease);
}
.nav a:hover { color: var(--text); text-shadow: 0 0 16px rgba(45, 212, 191, .55); }
.nav a.is-active {
  color: var(--teal);
  text-shadow: 0 0 18px rgba(45, 212, 191, .5);
}

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-search-btn {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: color .3s var(--ease), transform .3s var(--ease);
}
.header-search-btn:hover { color: var(--teal); transform: scale(1.12); }
.header-search-btn svg { width: 22px; height: 22px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px; color: var(--muted);
  transition: color .3s var(--ease);
}
.header-phone:hover { color: var(--teal); }
.header-phone svg { width: 22px; height: 22px; color: inherit; }
.header-cta { padding: 11px 22px; font-size: 14px; }

/* Burger */
.burger {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  z-index: 110;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(237, 242, 247, .05);
  border: 1px solid var(--c-line);
  cursor: pointer;
}
.burger span {
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 1220px) {
  .burger { display: block; }
  .header-phone span { display: none; }
  .header-cta { display: none; }
  .header-actions { gap: 10px; }
  .site-header__row { gap: 16px; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    max-height: calc(100dvh - var(--header-offset, 64px));
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 24px 30px;
    background: linear-gradient(165deg, #0E1930 0%, #16264A 100%);
    border-top: 1px solid var(--c-line);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .4);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .3s var(--ease), opacity .25s var(--ease), visibility 0s linear .3s;
  }
  .nav[data-open="true"] {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform .3s var(--ease), opacity .25s var(--ease), visibility 0s linear 0s;
  }
  .nav a {
    width: 100%;
    padding: 16px 0;
    font-size: 21px;
    border-bottom: 1px solid var(--c-line);
  }
  .nav a::after { display: none; }
}

/* First-load reveal (above the fold, pure CSS) */
@keyframes firstUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
.first-reveal { animation: firstUp .9s var(--ease) both; }
.first-reveal--2 { animation-delay: .15s; }
.first-reveal--3 { animation-delay: .3s; }
.first-reveal--4 { animation-delay: .45s; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: .08s; }
.reveal--d2 { transition-delay: .16s; }
.reveal--d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .first-reveal { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
}

/* Route decor line */
.route-deco { display: block; width: 100%; height: auto; overflow: visible; pointer-events: none; }
.route-deco path {
  fill: none;
  stroke: rgba(45, 212, 191, .45);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 4 12;
}
.route-deco circle { fill: var(--amber); filter: drop-shadow(0 0 6px rgba(245, 158, 11, .8)); }
.route-deco .route-draw { stroke-dasharray: 900; stroke-dashoffset: 900; }
.route-deco[data-draw] .route-pin { transform-box: fill-box; transform-origin: center; opacity: .35; transition: opacity .45s var(--ease), filter .45s var(--ease); }
.route-deco[data-draw] .route-pin.is-lit { opacity: 1; filter: drop-shadow(0 0 8px rgba(245, 158, 11, .9)); }

/* Section heads */
.section-head { margin-bottom: 42px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { font-size: 17px; }
.section-head--row {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  overflow: visible;
  isolation: isolate;
  padding: 110px 0 130px;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: clip;
  border-radius: inherit;
  background: #0B1426 url('/assets/img/hero/hero-bg.avif') center/cover no-repeat;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 90% 60% at 50% 42%, rgba(11, 20, 38, .25) 0%, rgba(11, 20, 38, .78) 100%),
    linear-gradient(to bottom, rgba(11, 20, 38, .55), rgba(11, 20, 38, .15) 35%, rgba(11, 20, 38, .92) 96%);
}
.hero__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.hero h1 {
  max-width: 880px;
  text-shadow: 0 6px 40px rgba(3, 8, 20, .8);
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(110deg, #5EEAD4, #2DD4BF 40%, #F59E0B);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(237, 242, 247, .85);
  margin-bottom: 38px;
}
.hero__search {
  display: flex; align-items: center; gap: 10px;
  width: min(640px, 100%);
  padding: 9px 9px 9px 22px;
  border-radius: 999px;
  background: rgba(20, 33, 58, .62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(45, 212, 191, .28);
  box-shadow: 0 20px 60px rgba(3, 8, 20, .5);
  position: relative;
  z-index: 40;
}
.hero__search svg.hero__search-icon { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; }
.hero__search input {
  flex: 1; min-width: 0;
  background: transparent; border: 0; outline: 0;
  color: var(--text); font-size: 16px; font-family: inherit;
}
.hero__search input::placeholder { color: rgba(159, 176, 204, .85); }
.hero__search .btn { padding: 12px 26px; flex-shrink: 0; }
.hero__actions { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; }
.hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  width: 40px; height: 62px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(237, 242, 247, .3);
  border-radius: 999px;
}
.hero__scroll i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal);
  animation: scrollDot 2s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(-12px); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* Search suggest dropdown */
.search-suggest {
  position: absolute; top: calc(100% + 10px); left: 0; right: 0;
  background: #14213A;
  border: 1px solid rgba(45, 212, 191, .25);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 8px;
  display: none;
  max-height: 320px;
  overflow-y: auto;
  z-index: 40;
  text-align: left;
  scrollbar-width: thin;
  scrollbar-color: var(--teal) transparent;
}
.search-suggest::-webkit-scrollbar { width: 8px; }
.search-suggest::-webkit-scrollbar-track { background: transparent; margin: 8px 0; }
.search-suggest::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2DD4BF, #0D9488);
  border-radius: 99px;
  border: 2px solid #14213A;
}
.search-suggest::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #5EEAD4, #14B8A6); }
.search-suggest.is-open { display: block; }
.search-suggest a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 15px; font-weight: 600;
  transition: background .25s var(--ease);
}
.search-suggest a:hover { background: var(--teal-soft); }
.search-suggest a svg { width: 17px; height: 17px; color: var(--teal); flex-shrink: 0; }
.search-suggest a small { color: var(--muted); font-weight: 500; margin-left: auto; flex-shrink: 0; }
.search-suggest__empty { padding: 14px; color: var(--muted); font-size: 14px; }

/* Search overlay */
.search-overlay {
  position: fixed; inset: 0; z-index: 140;
  background: rgba(7, 12, 24, .8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: flex-start; justify-content: center;
  padding: 16vh 24px 40px;
}
.search-overlay.is-open { display: flex; }
.search-overlay__box { width: min(620px, 100%); position: relative; }
.search-overlay__field {
  display: flex; align-items: center; gap: 12px;
  background: #14213A;
  border: 1px solid rgba(45, 212, 191, .35);
  border-radius: 999px;
  padding: 16px 22px;
  box-shadow: var(--shadow);
}
.search-overlay__field svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; }
.search-overlay__field input {
  flex: 1; min-width: 0;
  background: transparent; border: 0; outline: 0;
  color: var(--text); font-size: 17px; font-family: inherit;
}
.search-overlay__close {
  position: absolute; top: -56px; right: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(237, 242, 247, .08);
  border: 1px solid var(--c-line);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.search-overlay__close svg { width: 18px; height: 18px; }
.search-overlay .search-suggest { max-height: 46vh; }

/* Cards base */
.t-card {
  position: relative;
  border-radius: var(--radius);
  background: rgba(20, 33, 58, .58);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(45, 212, 191, .14);
  overflow: clip;
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.t-card:hover {
  transform: translateY(-8px);
  border-color: rgba(45, 212, 191, .45);
  box-shadow: 0 24px 50px rgba(3, 8, 20, .6), 0 0 0 1px rgba(45, 212, 191, .15);
}
.t-card__media { position: relative; overflow: clip; }
.t-card__media img { width: 100%; height: auto; transition: transform .8s var(--ease); }
.t-card:hover .t-card__media img { transform: scale(1.06); }
.t-card__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11, 20, 38, .55), transparent 55%);
}
.t-card__body { padding: 20px 22px 24px; }
.t-card__body h3 { margin-bottom: 8px; }
.t-card__body p { font-size: 14.5px; }

.card-rating {
  display: inline-flex; align-items: center; gap: 5px;
  font-weight: 700; font-size: 13.5px; color: var(--amber);
}
.card-rating svg { width: 15px; height: 15px; }
.card-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 13px; }
.card-tags span {
  font-size: 12px; font-weight: 600;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: #7EE8DC;
  border: 1px solid rgba(45, 212, 191, .22);
}
.card-meta {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 12px;
  font-size: 13px; color: var(--muted);
}
.card-meta span { display: inline-flex; align-items: center; gap: 6px; }
.card-meta svg { width: 15px; height: 15px; color: var(--teal); flex-shrink: 0; }
.card-pin {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(11, 20, 38, .72);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(245, 158, 11, .35);
  font-size: 12.5px; font-weight: 700; color: var(--amber);
}
.card-pin svg { width: 13px; height: 13px; }

/* Home: destinations */
.dest-popular { padding: 96px 0 60px; position: relative; }
.dest-popular__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.dest-popular__more { display: flex; justify-content: center; margin-top: 44px; }

/* Home: resorts */
.resorts-featured { padding: 60px 0; }
.resorts-featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.resorts-featured__more { display: flex; justify-content: center; margin-top: 44px; }

/* Home: about */
.home-about { padding: 80px 0; }
.home-about__wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.home-about__text h2 { margin-bottom: 20px; }
.home-about__text p { margin-bottom: 16px; }
.home-about__points { margin-top: 26px; display: grid; gap: 14px; }
.home-about__points li {
  display: flex; align-items: flex-start; gap: 13px;
  color: var(--text); font-weight: 600; font-size: 15px;
}
.home-about__points svg {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px;
  color: var(--teal);
  filter: drop-shadow(0 0 8px rgba(45, 212, 191, .5));
}
.home-about__media { position: relative; }
.home-about__media img {
  width: 100%; border-radius: 24px;
  border: 1px solid rgba(45, 212, 191, .2);
  box-shadow: var(--shadow);
}
.home-about__badge {
  position: absolute; bottom: -22px; left: -22px;
  display: flex; align-items: center; gap: 13px;
  padding: 16px 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, #16264A, #0E1930);
  border: 1px solid rgba(245, 158, 11, .35);
  box-shadow: var(--shadow);
}
.home-about__badge svg { width: 30px; height: 30px; color: var(--amber); }
.home-about__badge b { display: block; font-size: 19px; line-height: 1.2; }
.home-about__badge small { color: var(--muted); font-size: 12.5px; }

/* Home: stats */
.stats-band { padding: 80px 0; position: relative; }
.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.stat-cell {
  text-align: center;
  padding: 36px 22px;
  border-radius: var(--radius);
  background: rgba(20, 33, 58, .58);
  border: 1px solid rgba(45, 212, 191, .14);
  position: relative;
  overflow: clip;
  transition: transform .45s var(--ease), border-color .45s var(--ease);
}
.stat-cell::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(45, 212, 191, .14), transparent 65%);
  opacity: 0; transition: opacity .45s var(--ease);
}
.stat-cell:hover { transform: translateY(-6px); border-color: rgba(45, 212, 191, .4); }
.stat-cell:hover::before { opacity: 1; }
.stat-cell b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 600;
  background: linear-gradient(110deg, #5EEAD4, #2DD4BF 50%, #F59E0B);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
  line-height: 1.1;
}
.stat-cell span { color: var(--muted); font-size: 14.5px; }

/* Quiz banner */
.quiz-banner { padding: 60px 0 80px; }
.quiz-banner__box {
  position: relative;
  border-radius: 28px;
  padding: 64px 48px;
  text-align: center;
  overflow: clip;
  background:
    radial-gradient(ellipse 70% 120% at 15% -10%, rgba(45, 212, 191, .2), transparent 55%),
    radial-gradient(ellipse 70% 120% at 85% 110%, rgba(245, 158, 11, .16), transparent 55%),
    linear-gradient(150deg, #16264A, #0E1930);
  border: 1px solid rgba(45, 212, 191, .22);
}
.quiz-banner__box h2 { margin-bottom: 14px; }
.quiz-banner__box p { margin-bottom: 32px; font-size: 17px; }
.quiz-banner__timer {
  display: inline-flex; align-items: center; gap: 9px;
  margin-bottom: 22px;
  padding: 9px 20px;
  border-radius: 999px;
  background: var(--amber-soft);
  border: 1px solid rgba(245, 158, 11, .35);
  color: var(--amber); font-weight: 700; font-size: 13.5px;
  letter-spacing: .4px; text-transform: uppercase;
}
.quiz-banner__timer svg { width: 16px; height: 16px; }

/* Reviews */
.reviews-wall { padding: 80px 0; }
.reviews-wall__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(20, 33, 58, .58);
  border: 1px solid rgba(45, 212, 191, .14);
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .45s var(--ease), border-color .45s var(--ease);
}
.review-card:hover { transform: translateY(-6px); border-color: rgba(45, 212, 191, .4); }
.review-card > svg { width: 30px; height: 30px; color: rgba(45, 212, 191, .5); }
.review-card p { font-size: 15px; color: #C6D2E6; flex: 1; }
.review-card__person { display: flex; align-items: center; gap: 14px; }
.review-card__person img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(45, 212, 191, .4);
}
.review-card__person b { display: block; font-size: 15px; }
.review-card__person small { color: var(--muted); font-size: 13px; display: flex; align-items: center; gap: 5px; }
.review-card__person small svg { width: 12px; height: 12px; color: var(--amber); }
.review-card__stars { display: flex; gap: 3px; color: var(--amber); }
.review-card__stars svg { width: 15px; height: 15px; }

/* Newsletter */
.newsletter-cta { padding: 40px 0 100px; }
.newsletter-cta__box {
  border-radius: 28px;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  background:
    radial-gradient(ellipse 80% 130% at 100% 0%, rgba(45, 212, 191, .16), transparent 60%),
    linear-gradient(150deg, #16264A, #0E1930);
  border: 1px solid rgba(45, 212, 191, .22);
}
.newsletter-cta__box h2 { margin-bottom: 12px; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input {
  flex: 1; min-width: 0;
  padding: 16px 22px;
  border-radius: 999px;
  background: rgba(11, 20, 38, .65);
  border: 1px solid rgba(45, 212, 191, .25);
  color: var(--text);
  font-size: 15px; font-family: inherit;
  outline: 0;
  transition: border-color .3s var(--ease);
}
.newsletter-form input:focus { border-color: var(--teal); }
.newsletter-form input::placeholder { color: rgba(159, 176, 204, .7); }

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: 88px 0 72px;
  text-align: center;
  overflow: clip;
  background:
    radial-gradient(ellipse 60% 90% at 50% -25%, rgba(45, 212, 191, .16), transparent 60%),
    radial-gradient(ellipse 45% 70% at 88% 0%, rgba(245, 158, 11, .1), transparent 55%),
    linear-gradient(to bottom, #0E1930, var(--bg));
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero h1 em {
  font-style: italic;
  background: linear-gradient(110deg, #5EEAD4, #2DD4BF 40%, #F59E0B);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-hero p { font-size: 17px; }
.page-hero .route-deco { position: absolute; left: 0; right: 0; bottom: -6px; opacity: .8; }

/* Chips & filters */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 19px;
  border-radius: 999px;
  background: rgba(237, 242, 247, .05);
  border: 1px solid var(--c-line);
  color: var(--muted);
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  transition: all .3s var(--ease);
}
.chip svg { width: 15px; height: 15px; }
.chip:hover { border-color: rgba(45, 212, 191, .45); color: var(--text); }
.chip.is-on {
  background: var(--teal-soft);
  border-color: var(--teal);
  color: #7EE8DC;
  box-shadow: 0 0 18px rgba(45, 212, 191, .22);
}
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }

.filter-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(20, 33, 58, .6);
  border: 1px solid var(--c-line);
  width: fit-content; max-width: 100%;
}
.filter-tabs button {
  padding: 10px 20px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  transition: all .3s var(--ease);
}
.filter-tabs button:hover { color: var(--text); }
.filter-tabs button.is-on {
  background: linear-gradient(120deg, #2DD4BF, #14B8A6);
  color: #06281f;
  box-shadow: 0 6px 18px rgba(45, 212, 191, .3);
}
@media (max-width: 820px) {
  .filter-tabs {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    border-radius: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--teal) transparent;
    -webkit-overflow-scrolling: touch;
  }
  .filter-tabs button { flex: 0 0 auto; white-space: nowrap; padding: 10px 16px; }
  .filter-tabs::-webkit-scrollbar { height: 6px; }
  .filter-tabs::-webkit-scrollbar-track { background: transparent; }
  .filter-tabs::-webkit-scrollbar-thumb { background: linear-gradient(90deg, #2DD4BF, #0D9488); border-radius: 99px; }
}

/* Custom select */
.cselect { position: relative; min-width: 230px; }
.cselect__trigger {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%;
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(20, 33, 58, .7);
  border: 1px solid var(--c-line);
  color: var(--text);
  font-size: 14px; font-weight: 600; font-family: inherit;
  cursor: pointer;
  transition: border-color .3s var(--ease);
}
.cselect__trigger:hover, .cselect.is-open .cselect__trigger { border-color: rgba(45, 212, 191, .5); }
.cselect__trigger svg { width: 16px; height: 16px; color: var(--teal); transition: transform .3s var(--ease); flex-shrink: 0; }
.cselect.is-open .cselect__trigger svg { transform: rotate(180deg); }
.cselect__panel {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: #16264A;
  border: 1px solid rgba(45, 212, 191, .3);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 6px;
  z-index: 55;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear .25s;
}
.cselect.is-open .cselect__panel {
  opacity: 1; visibility: visible; transform: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear 0s;
}
.cselect__panel button {
  display: block; width: 100%;
  text-align: left;
  padding: 10px 14px;
  border-radius: 9px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 14px; font-weight: 600; font-family: inherit;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.cselect__panel button:hover { background: var(--teal-soft); color: var(--text); }
.cselect__panel button.is-sel { color: #7EE8DC; background: rgba(45, 212, 191, .1); }

/* Destinations page */
.dest-top { padding: 72px 0 30px; }
.dest-top__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dest-seasons { padding: 50px 0; }
.dest-seasons__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.season-card {
  position: relative;
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(20, 33, 58, .58);
  border: 1px solid rgba(45, 212, 191, .14);
  overflow: clip;
  transition: transform .45s var(--ease), border-color .45s var(--ease);
}
.season-card:hover { transform: translateY(-6px); border-color: rgba(45, 212, 191, .4); }
.season-card > svg.season-card__icon {
  width: 42px; height: 42px;
  color: var(--teal);
  margin-bottom: 16px;
  filter: drop-shadow(0 0 12px rgba(45, 212, 191, .45));
}
.season-card h3 { margin-bottom: 10px; }
.season-card p { font-size: 14.5px; margin-bottom: 16px; }
.season-card ul { display: flex; flex-direction: column; gap: 9px; }
.season-card li { display: flex; align-items: center; gap: 9px; font-size: 14px; color: #C6D2E6; font-weight: 600; }
.season-card li svg { width: 14px; height: 14px; color: var(--amber); flex-shrink: 0; }

.dest-catalog { padding: 50px 0 100px; }
.dest-catalog__bar {
  position: relative; z-index: 50;
  display: flex; flex-direction: column; gap: 18px;
  margin-bottom: 36px;
}
.dest-catalog__bar-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
}
.dest-catalog__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.dest-catalog__more { display: flex; justify-content: center; margin-top: 44px; }
.dest-catalog__empty {
  display: none;
  text-align: center;
  padding: 60px 24px;
  border-radius: var(--radius);
  border: 1px dashed rgba(45, 212, 191, .3);
  color: var(--muted);
}
.dest-catalog__empty.is-shown { display: block; }
.t-card.is-filtered { display: none; }
.t-card.is-paged { display: none; }

/* Ideas page */
.ideas-collections { padding: 72px 0 30px; }
.ideas-collections__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.collection-tile {
  position: relative;
  padding: 28px 26px;
  border-radius: var(--radius);
  overflow: clip;
  border: 1px solid rgba(45, 212, 191, .16);
  background: linear-gradient(160deg, #16264A, #0E1930);
  transition: transform .45s var(--ease), border-color .45s var(--ease);
}
.collection-tile:hover { transform: translateY(-6px); border-color: rgba(245, 158, 11, .45); }
.collection-tile svg { width: 36px; height: 36px; color: var(--amber); margin-bottom: 14px; filter: drop-shadow(0 0 10px rgba(245, 158, 11, .4)); }
.collection-tile h3 { font-size: 18px; margin-bottom: 8px; }
.collection-tile p { font-size: 13.5px; }

.ideas-scenarios { padding: 50px 0; }
.ideas-scenarios__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.scenario-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  border-radius: var(--radius);
  overflow: clip;
  background: rgba(20, 33, 58, .58);
  border: 1px solid rgba(45, 212, 191, .14);
  transition: transform .45s var(--ease), border-color .45s var(--ease);
}
.scenario-card:hover { transform: translateY(-6px); border-color: rgba(45, 212, 191, .4); }
.scenario-card img { width: 100%; height: 100%; object-fit: cover; }
.scenario-card__body { padding: 24px 26px; }
.scenario-card__body h3 { margin-bottom: 10px; }
.scenario-card__steps { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.scenario-card__steps li {
  position: relative;
  padding-left: 26px;
  font-size: 13.5px; color: var(--muted);
}
.scenario-card__steps li::before {
  content: '';
  position: absolute; left: 6px; top: 7px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(45, 212, 191, .7);
}
.scenario-card__steps li:not(:last-child)::after {
  content: '';
  position: absolute; left: 9px; top: 17px; bottom: -8px;
  width: 1px;
  background-image: linear-gradient(to bottom, rgba(45, 212, 191, .5) 40%, transparent 40%);
  background-size: 1px 6px;
}

.ideas-catalog { padding: 50px 0 60px; }
.ideas-catalog__filters {
  position: relative; z-index: 50;
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 36px;
}
.filter-group { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.filter-group > b {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .6px;
  color: var(--muted);
  margin-right: 4px;
  flex-shrink: 0;
}
.ideas-catalog__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.ideas-catalog__empty {
  display: none;
  text-align: center;
  padding: 60px 24px;
  border-radius: var(--radius);
  border: 1px dashed rgba(45, 212, 191, .3);
  color: var(--muted);
}
.ideas-catalog__empty.is-shown { display: block; }

.ideas-subscribe { padding: 40px 0 100px; }
.ideas-subscribe__box {
  border-radius: 28px;
  padding: 56px 48px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 130% at 50% -30%, rgba(245, 158, 11, .14), transparent 60%),
    linear-gradient(150deg, #16264A, #0E1930);
  border: 1px solid rgba(245, 158, 11, .25);
}
.ideas-subscribe__box h2 { margin-bottom: 12px; }
.ideas-subscribe__box p { margin-bottom: 30px; }
.ideas-subscribe__box .newsletter-form { max-width: 540px; margin: 0 auto; }

/* Guides page */
.guides-top { padding: 72px 0 30px; }
.guides-top__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.guide-feature {
  display: grid;
  grid-template-columns: 260px 1fr;
  border-radius: var(--radius);
  overflow: clip;
  background: rgba(20, 33, 58, .58);
  border: 1px solid rgba(45, 212, 191, .14);
  transition: transform .45s var(--ease), border-color .45s var(--ease);
}
.guide-feature:hover { transform: translateY(-6px); border-color: rgba(45, 212, 191, .4); }
.guide-feature img { width: 100%; height: 100%; object-fit: cover; }
.guide-feature__body { padding: 24px 26px; display: flex; flex-direction: column; }
.guide-feature__body h3 { margin-bottom: 10px; }
.guide-feature__body p { font-size: 14px; flex: 1; }

.guides-seasonal { padding: 50px 0; }
.guides-seasonal__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.seasonal-banner {
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 280px;
  padding: 30px;
  border-radius: var(--radius);
  overflow: clip;
  border: 1px solid rgba(45, 212, 191, .16);
  background-size: cover;
  background-position: center;
  transition: transform .45s var(--ease), border-color .45s var(--ease);
}
.seasonal-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11, 20, 38, .9) 15%, rgba(11, 20, 38, .15));
}
.seasonal-banner:hover { transform: translateY(-6px); border-color: rgba(245, 158, 11, .45); }
.seasonal-banner > * { position: relative; }
.seasonal-banner--summer { background-image: url('/assets/img/guides/summer.avif'); }
.seasonal-banner--winter { background-image: url('/assets/img/guides/winter.avif'); }
.seasonal-banner h3 { margin-bottom: 8px; font-size: 22px; }
.seasonal-banner p { font-size: 14px; margin-bottom: 14px; }

.guides-catalog { padding: 50px 0 100px; }
.guides-catalog__bar {
  position: relative; z-index: 50;
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 36px;
}
.guides-catalog__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.guides-catalog__empty {
  display: none;
  text-align: center;
  padding: 60px 24px;
  border-radius: var(--radius);
  border: 1px dashed rgba(45, 212, 191, .3);
  color: var(--muted);
}
.guides-catalog__empty.is-shown { display: block; }
.guide-views {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--muted);
}

/* About page */
.about-mission { padding: 80px 0 40px; }
.about-mission__wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-mission__text h2 { margin-bottom: 18px; }
.about-mission__text p { margin-bottom: 15px; }
.about-mission__media img {
  width: 100%; border-radius: 24px;
  border: 1px solid rgba(45, 212, 191, .2);
  box-shadow: var(--shadow);
}
.about-why { padding: 60px 0; }
.about-why__list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.why-item {
  padding: 26px 22px;
  border-radius: var(--radius);
  background: rgba(20, 33, 58, .58);
  border: 1px solid rgba(45, 212, 191, .14);
  text-align: center;
  transition: transform .45s var(--ease), border-color .45s var(--ease);
}
.why-item:hover { transform: translateY(-6px); border-color: rgba(45, 212, 191, .4); }
.why-item svg {
  width: 34px; height: 34px;
  color: var(--teal);
  margin: 0 auto 14px;
  filter: drop-shadow(0 0 10px rgba(45, 212, 191, .45));
}
.why-item b { display: block; font-size: 15px; margin-bottom: 7px; }
.why-item p { font-size: 13px; }

.about-values { padding: 60px 0; }
.about-values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card {
  padding: 30px 28px;
  border-radius: var(--radius);
  background: rgba(20, 33, 58, .58);
  border: 1px solid rgba(45, 212, 191, .14);
  transition: transform .45s var(--ease), border-color .45s var(--ease);
}
.value-card:hover { transform: translateY(-6px); border-color: rgba(245, 158, 11, .4); }
.value-card svg {
  width: 38px; height: 38px;
  color: var(--amber);
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(245, 158, 11, .4));
}
.value-card h3 { font-size: 18px; margin-bottom: 9px; }
.value-card p { font-size: 14px; }

.about-team { padding: 60px 0; }
.about-team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-card {
  border-radius: var(--radius);
  overflow: clip;
  background: rgba(20, 33, 58, .58);
  border: 1px solid rgba(45, 212, 191, .14);
  transition: transform .45s var(--ease), border-color .45s var(--ease);
}
.team-card:hover { transform: translateY(-8px); border-color: rgba(45, 212, 191, .45); }
.team-card img { width: 100%; height: auto; }
.team-card__body { padding: 22px 24px 26px; }
.team-card__body h3 { margin-bottom: 4px; }
.team-card__body small {
  display: block;
  color: var(--teal); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .6px;
  margin-bottom: 10px;
}
.team-card__body p { font-size: 14px; }

.about-cta { padding: 50px 0 100px; }
.about-cta__box {
  border-radius: 28px;
  padding: 64px 48px;
  text-align: center;
  background:
    radial-gradient(ellipse 75% 130% at 50% 130%, rgba(45, 212, 191, .18), transparent 60%),
    linear-gradient(150deg, #16264A, #0E1930);
  border: 1px solid rgba(45, 212, 191, .22);
}
.about-cta__box h2 { margin-bottom: 14px; }
.about-cta__box p { margin-bottom: 30px; }
.about-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Casino page */
.casino-intro { padding: 72px 0 40px; }
.casino-intro__wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}
.casino-intro__text h2 { margin-bottom: 18px; }
.casino-intro__text p { margin-bottom: 15px; }
.casino-intro__facts { display: grid; gap: 13px; margin-top: 22px; }
.casino-intro__facts li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; color: #C6D2E6; font-weight: 600;
}
.casino-intro__facts svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.casino-intro__panel {
  border-radius: 24px;
  padding: 36px;
  background:
    radial-gradient(ellipse 80% 100% at 80% 0%, rgba(245, 158, 11, .14), transparent 60%),
    linear-gradient(160deg, #16264A, #0E1930);
  border: 1px solid rgba(245, 158, 11, .3);
  text-align: center;
}
.casino-intro__panel svg { width: 54px; height: 54px; color: var(--amber); margin: 0 auto 18px; filter: drop-shadow(0 0 14px rgba(245, 158, 11, .5)); }
.casino-intro__panel h3 { margin-bottom: 10px; }
.casino-intro__panel p { font-size: 14px; }

.casino-slots { padding: 50px 0; }
.casino-slots__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.slot-card {
  border-radius: var(--radius);
  overflow: clip;
  background: rgba(20, 33, 58, .58);
  border: 1px solid rgba(45, 212, 191, .14);
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
  display: flex; flex-direction: column;
}
.slot-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 158, 11, .5);
  box-shadow: 0 24px 50px rgba(3, 8, 20, .6), 0 0 30px rgba(245, 158, 11, .12);
}
.slot-card__media { position: relative; overflow: clip; }
.slot-card__media img { width: 100%; transition: transform .8s var(--ease); }
.slot-card:hover .slot-card__media img { transform: scale(1.07); }
.slot-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.slot-card__body h3 { font-size: 19px; margin-bottom: 7px; }
.slot-card__body p { font-size: 13.5px; flex: 1; margin-bottom: 18px; }
.slot-card__body .btn { width: 100%; padding: 13px 20px; }

.casino-why { padding: 60px 0; }
.casino-why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.casino-why-card {
  padding: 28px 26px;
  border-radius: var(--radius);
  background: rgba(20, 33, 58, .58);
  border: 1px solid rgba(45, 212, 191, .14);
  transition: transform .45s var(--ease), border-color .45s var(--ease);
}
.casino-why-card:hover { transform: translateY(-6px); border-color: rgba(45, 212, 191, .4); }
.casino-why-card svg { width: 34px; height: 34px; color: var(--teal); margin-bottom: 15px; filter: drop-shadow(0 0 10px rgba(45, 212, 191, .45)); }
.casino-why-card h3 { font-size: 17px; margin-bottom: 8px; }
.casino-why-card p { font-size: 14px; }

.casino-partners { padding: 60px 0; }
.casino-partners__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.partner-perk {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(20, 33, 58, .58);
  border: 1px solid rgba(245, 158, 11, .16);
  transition: transform .45s var(--ease), border-color .45s var(--ease);
}
.partner-perk:hover { transform: translateY(-6px); border-color: rgba(245, 158, 11, .45); }
.partner-perk svg { width: 30px; height: 30px; color: var(--amber); flex-shrink: 0; filter: drop-shadow(0 0 10px rgba(245, 158, 11, .4)); }
.partner-perk b { display: block; font-size: 15px; margin-bottom: 5px; }
.partner-perk p { font-size: 13.5px; }

.casino-articles { padding: 60px 0; }
.casino-articles__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.casino-disclaimer { padding: 30px 0 90px; }
.casino-disclaimer__box {
  border-radius: 24px;
  padding: 40px;
  background: rgba(20, 33, 58, .45);
  border: 1px solid var(--c-line);
}
.casino-disclaimer__head {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 18px; flex-wrap: wrap;
}
.casino-disclaimer__head img { flex-shrink: 0; }
.casino-disclaimer__head h2 { font-size: 22px; }
.casino-disclaimer__box p { font-size: 14px; margin-bottom: 12px; }
.rg-strip {
  display: flex; align-items: center; gap: 26px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--c-line);
}
.rg-strip a { display: inline-flex; align-items: center; gap: 10px; opacity: .85; transition: opacity .3s var(--ease); }
.rg-strip a:hover { opacity: 1; }
.rg-strip img { height: 30px; width: auto; }
.rg-strip span { font-size: 13px; font-weight: 700; color: var(--muted); }

/* Slot machine modal */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(5, 9, 19, .82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  overflow-y: auto;
  scrollbar-gutter: stable;
}
.modal-backdrop.is-open { display: flex; }
.modal-shell {
  position: relative;
  width: min(460px, 100%);
  border-radius: 26px;
  background: linear-gradient(165deg, #1B2B4A, #0E1930);
  border: 1px solid rgba(45, 212, 191, .3);
  box-shadow: var(--shadow);
  padding: 30px 28px;
  margin: auto;
  animation: modalIn .45s var(--ease);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(28px) scale(.97); }
  to { opacity: 1; transform: none; }
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(237, 242, 247, .07);
  border: 1px solid var(--c-line);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s var(--ease);
  z-index: 5;
}
.modal-close:hover { background: rgba(237, 242, 247, .14); }
.modal-close svg { width: 17px; height: 17px; }

.slot-head { text-align: center; margin-bottom: 18px; padding-inline: 30px; }
.slot-head h3 { font-size: 22px; margin-bottom: 4px; }
.slot-head p { font-size: 13px; }
.slot-wallet {
  display: flex; justify-content: center; gap: 12px;
  margin-bottom: 18px; flex-wrap: wrap;
}
.slot-wallet b {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(11, 20, 38, .7);
  border: 1px solid rgba(245, 158, 11, .35);
  font-size: 14px; color: var(--amber);
}
.slot-wallet b svg { width: 15px; height: 15px; }
.slot-wallet b.slot-wallet__win { border-color: rgba(45, 212, 191, .4); color: var(--teal); }
.slot-reel-box {
  display: flex; justify-content: center; gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(7, 12, 24, .8);
  border: 1px solid rgba(45, 212, 191, .25);
  box-shadow: inset 0 4px 24px rgba(0, 0, 0, .5);
  margin-bottom: 8px;
  position: relative;
  overflow: clip;
}
.slot-reel-box::after {
  content: '';
  position: absolute; left: 14px; right: 14px; top: 50%;
  height: 72px;
  transform: translateY(-50%);
  border-block: 1.5px solid rgba(245, 158, 11, .55);
  border-radius: 4px;
  pointer-events: none;
  box-shadow: 0 0 18px rgba(245, 158, 11, .12);
}
.slot-reel {
  width: 86px; height: 216px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(to bottom, rgba(20, 33, 58, .9), rgba(14, 25, 48, .9));
  position: relative;
}
.slot-reel::before, .slot-reel::after {
  content: '';
  position: absolute; left: 0; right: 0;
  height: 46px;
  z-index: 2;
  pointer-events: none;
}
.slot-reel::before { top: 0; background: linear-gradient(to bottom, rgba(7, 12, 24, .9), transparent); }
.slot-reel::after { bottom: 0; background: linear-gradient(to top, rgba(7, 12, 24, .9), transparent); }
.slot-strip { display: flex; flex-direction: column; will-change: transform; }
.slot-strip span {
  height: 72px;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
  line-height: 1;
}
.slot-result {
  min-height: 26px;
  text-align: center;
  font-weight: 700; font-size: 15px;
  color: var(--teal);
  margin-bottom: 14px;
}
.slot-result.is-lose { color: var(--muted); }
.slot-controls { display: flex; flex-direction: column; gap: 14px; }
.slot-bet { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.slot-bet b { font-size: 13px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; width: 100%; text-align: center; }
.slot-bet button {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--c-line);
  background: rgba(237, 242, 247, .05);
  color: var(--muted);
  font-size: 14px; font-weight: 700;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.slot-bet button.is-on {
  background: var(--amber-soft);
  border-color: var(--amber);
  color: var(--amber);
}
.slot-actions { display: flex; gap: 10px; }
.slot-actions .btn { flex: 1; padding: 14px 18px; }
.slot-spin.is-spinning { pointer-events: none; opacity: .65; }

/* Quiz modal */
.quiz-shell { width: min(560px, 100%); }
.quiz-progress {
  display: flex; gap: 7px;
  margin-bottom: 24px;
}
.quiz-progress i {
  flex: 1; height: 5px;
  border-radius: 99px;
  background: rgba(237, 242, 247, .1);
  overflow: clip;
  position: relative;
}
.quiz-progress i::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #2DD4BF, #F59E0B);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.quiz-progress i.is-done::after { transform: scaleX(1); }
.quiz-step h3 { font-size: 22px; margin-bottom: 6px; }
.quiz-step > p { font-size: 14px; margin-bottom: 22px; }
.quiz-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.quiz-option {
  display: flex; align-items: center; gap: 13px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(237, 242, 247, .04);
  border: 1px solid var(--c-line);
  color: var(--text);
  font-size: 14.5px; font-weight: 600; font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: all .3s var(--ease);
}
.quiz-option svg { width: 22px; height: 22px; color: var(--teal); flex-shrink: 0; }
.quiz-option:hover { border-color: rgba(45, 212, 191, .5); transform: translateY(-2px); }
.quiz-option.is-picked {
  background: var(--teal-soft);
  border-color: var(--teal);
  box-shadow: 0 0 22px rgba(45, 212, 191, .2);
}
.quiz-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 26px; }
.quiz-nav .btn { padding: 12px 26px; }
.quiz-result { text-align: center; }
.quiz-result svg.quiz-result__icon {
  width: 60px; height: 60px;
  color: var(--teal);
  margin: 6px auto 18px;
  filter: drop-shadow(0 0 18px rgba(45, 212, 191, .6));
}
.quiz-result h3 { font-size: 24px; margin-bottom: 8px; }
.quiz-result > p { font-size: 14.5px; margin-bottom: 24px; }
.quiz-result__list { display: grid; gap: 12px; margin-bottom: 26px; }
.quiz-result__list a {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 16px;
  border-radius: 14px;
  background: rgba(237, 242, 247, .04);
  border: 1px solid rgba(45, 212, 191, .25);
  font-weight: 700; font-size: 15px;
  transition: all .3s var(--ease);
  text-align: left;
}
.quiz-result__list a:hover { border-color: var(--teal); background: var(--teal-soft); transform: translateX(4px); }
.quiz-result__list img { width: 62px; height: 44px; object-fit: cover; border-radius: 9px; flex-shrink: 0; }
.quiz-result__list small { display: block; color: var(--muted); font-weight: 500; font-size: 12.5px; }

/* Toast */
.toast-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5, 9, 19, .7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.toast-backdrop.is-open { display: flex; }
.toast-box {
  width: min(420px, 100%);
  border-radius: 24px;
  background: linear-gradient(165deg, #1B2B4A, #0E1930);
  border: 1px solid rgba(45, 212, 191, .35);
  box-shadow: var(--shadow);
  padding: 38px 32px;
  text-align: center;
  animation: modalIn .4s var(--ease);
}
.toast-box svg {
  width: 54px; height: 54px;
  margin: 0 auto 16px;
  color: var(--teal);
  filter: drop-shadow(0 0 16px rgba(45, 212, 191, .55));
}
.toast-box.is-err svg { color: var(--amber); filter: drop-shadow(0 0 16px rgba(245, 158, 11, .55)); }
.toast-box b { display: block; font-size: 19px; margin-bottom: 6px; font-family: var(--font-display); }
.toast-box p { font-size: 14px; }

/* Chat widget */
.chat-toggle {
  position: fixed; right: 22px; bottom: 22px; z-index: 120;
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, #2DD4BF, #0D9488);
  color: #04231b;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px rgba(45, 212, 191, .4);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.chat-toggle:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 18px 40px rgba(45, 212, 191, .55); }
.chat-toggle svg { width: 27px; height: 27px; }
.chat-toggle__dot {
  position: absolute; top: 2px; right: 2px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--amber);
  border: 2px solid #0B1426;
  animation: chatPulse 2.4s ease-in-out infinite;
}
@keyframes chatPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}
.chat-panel {
  position: fixed; right: 22px; bottom: 94px; z-index: 120;
  width: 360px; height: 460px;
  max-width: calc(100vw - 32px);
  max-height: calc(100dvh - 120px);
  border-radius: 22px;
  background: linear-gradient(170deg, #16264A, #0E1930);
  border: 1px solid rgba(45, 212, 191, .3);
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  overflow: clip;
  opacity: 0; visibility: hidden;
  transform: translateY(16px) scale(.97);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s linear .35s;
}
.chat-panel.is-open {
  opacity: 1; visibility: visible; transform: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s linear 0s;
}
.chat-panel__head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: rgba(45, 212, 191, .08);
  border-bottom: 1px solid var(--c-line);
}
.chat-panel__head img {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(45, 212, 191, .5);
}
.chat-panel__head b { display: block; font-size: 14.5px; }
.chat-panel__head small { color: var(--teal); font-size: 12px; display: flex; align-items: center; gap: 5px; }
.chat-panel__head small::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
}
.chat-panel__close {
  margin-left: auto;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 0;
  background: rgba(237, 242, 247, .07);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.chat-panel__close svg { width: 15px; height: 15px; }
.chat-log {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.chat-msg {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.55;
  animation: msgIn .35s var(--ease);
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.chat-msg--bot {
  align-self: flex-start;
  background: rgba(237, 242, 247, .07);
  border: 1px solid var(--c-line);
  border-bottom-left-radius: 5px;
  color: #D5DEED;
}
.chat-msg--user {
  align-self: flex-end;
  background: linear-gradient(120deg, rgba(45, 212, 191, .25), rgba(45, 212, 191, .12));
  border: 1px solid rgba(45, 212, 191, .3);
  border-bottom-right-radius: 5px;
}
.chat-typing { display: inline-flex; gap: 4px; padding: 13px 15px; }
.chat-typing i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--muted);
  animation: typingDot 1.2s ease-in-out infinite;
}
.chat-typing i:nth-child(2) { animation-delay: .18s; }
.chat-typing i:nth-child(3) { animation-delay: .36s; }
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: .5; }
  30% { transform: translateY(-5px); opacity: 1; }
}
.chat-form {
  display: flex; gap: 9px;
  padding: 12px;
  border-top: 1px solid var(--c-line);
}
.chat-form input {
  flex: 1; min-width: 0;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(11, 20, 38, .7);
  border: 1px solid var(--c-line);
  color: var(--text);
  font-size: 13.5px; font-family: inherit;
  outline: 0;
  transition: border-color .3s var(--ease);
}
.chat-form input:focus { border-color: rgba(45, 212, 191, .5); }
.chat-form button {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, #2DD4BF, #0D9488);
  color: #04231b;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s var(--ease);
}
.chat-form button:hover { transform: scale(1.08); }
.chat-form button svg { width: 17px; height: 17px; }

/* Cookie banner */
.cookie-bar {
  position: fixed; left: 22px; right: 22px; bottom: 22px; z-index: 130;
  max-width: 520px;
  margin-inline: auto;
  border-radius: 20px;
  background: linear-gradient(165deg, #1B2B4A, #0E1930);
  border: 1px solid rgba(45, 212, 191, .3);
  box-shadow: var(--shadow);
  padding: 22px 24px;
  display: none;
  animation: modalIn .5s var(--ease);
}
.cookie-bar.is-shown { display: block; }
.cookie-bar__row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.cookie-bar__row svg { width: 30px; height: 30px; color: var(--amber); flex-shrink: 0; }
.cookie-bar p { font-size: 13.5px; }
.cookie-bar p a { color: var(--teal); font-weight: 600; }
.cookie-bar__actions { display: flex; justify-content: flex-end; gap: 10px; }
.cookie-bar__actions .btn { padding: 10px 22px; font-size: 13.5px; }

/* Legal pages */
.legal-content { padding: 64px 0 100px; }
.legal-content ol.legal-list { counter-reset: legal; display: flex; flex-direction: column; gap: 34px; }
.legal-content ol.legal-list > li { counter-increment: legal; }
.legal-content ol.legal-list > li > h2 {
  font-size: 21px;
  margin-bottom: 12px;
  display: flex; align-items: baseline; gap: 12px;
}
.legal-content ol.legal-list > li > h2::before {
  content: counter(legal, decimal-leading-zero);
  font-family: var(--font-body);
  font-size: 14px; font-weight: 800;
  color: var(--teal);
  padding: 4px 10px;
  border: 1px solid rgba(45, 212, 191, .35);
  border-radius: 9px;
  flex-shrink: 0;
}
.legal-content p { margin-bottom: 12px; font-size: 15px; }
.legal-content ul { display: flex; flex-direction: column; gap: 8px; margin: 10px 0 14px; }
.legal-content ul li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 14.5px;
}
.legal-content ul li::before {
  content: '';
  position: absolute; left: 6px; top: 10px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 7px rgba(45, 212, 191, .6);
}
.legal-updated {
  display: inline-flex; align-items: center; gap: 9px;
  margin-bottom: 36px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(237, 242, 247, .05);
  border: 1px solid var(--c-line);
  color: var(--muted);
  font-size: 13px; font-weight: 600;
}
.legal-updated svg { width: 15px; height: 15px; color: var(--teal); }
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 18px;
  font-size: 14px;
}
.legal-content th, .legal-content td {
  text-align: left;
  padding: 12px 16px;
  border: 1px solid var(--c-line);
  color: var(--muted);
  min-width: 130px;
}
.legal-content th { color: var(--text); background: rgba(45, 212, 191, .07); font-weight: 700; }

/* Footer */
.site-footer {
  margin-top: auto;
  background: linear-gradient(to bottom, #0A1222, #070D1A);
  border-top: 1px solid var(--c-line);
  padding: 64px 0 30px;
  position: relative;
  overflow: clip;
}
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 212, 191, .5), transparent);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  margin-bottom: 44px;
}
.site-footer__about p { font-size: 14px; margin-top: 16px; }
.site-footer h4 {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.site-footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.site-footer__col a { color: var(--muted); font-size: 14.5px; transition: color .3s var(--ease), padding-left .3s var(--ease); }
.site-footer__col a:hover { color: var(--teal); padding-left: 5px; }
.site-footer__contact { display: flex; flex-direction: column; gap: 13px; }
.site-footer__contact li { display: flex; align-items: flex-start; gap: 11px; color: var(--muted); font-size: 14px; }
.site-footer__contact svg { width: 17px; height: 17px; color: var(--teal); flex-shrink: 0; margin-top: 4px; }
.site-footer__contact a { transition: color .3s var(--ease); }
.site-footer__contact a:hover { color: var(--teal); }
.footer-socials { display: flex; gap: 11px; margin-top: 20px; }
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(237, 242, 247, .05);
  border: 1px solid var(--c-line);
  color: var(--muted);
  transition: all .3s var(--ease);
}
.footer-socials a:hover {
  color: var(--teal);
  border-color: rgba(45, 212, 191, .5);
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(45, 212, 191, .15);
}
.footer-socials svg { width: 18px; height: 18px; }
.site-footer__bottom {
  border-top: 1px solid var(--c-line);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.site-footer__bottom p { font-size: 13px; }
.site-footer__rg { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.site-footer__rg img { height: 26px; width: auto; opacity: .8; transition: opacity .3s var(--ease); }
.site-footer__rg a:hover img { opacity: 1; }

/* Tablet */
@media (max-width: 1220px) {
  .hero { min-height: 78vh; padding: 90px 0 110px; }
  .dest-popular__grid { grid-template-columns: repeat(2, 1fr); }
  .guides-catalog__grid { grid-template-columns: repeat(2, 1fr); }
  .ideas-collections__grid { grid-template-columns: repeat(2, 1fr); }
  .casino-slots__grid { grid-template-columns: repeat(2, 1fr); }
  .about-why__list { grid-template-columns: repeat(5, 1fr); gap: 14px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 1100px) {
  .about-why__list { grid-template-columns: repeat(5, 1fr); }
  .why-item { padding: 20px 14px; }
  .scenario-card { grid-template-columns: 200px 1fr; }
  .guide-feature { grid-template-columns: 210px 1fr; }
}

/* Mobile */
@media (max-width: 820px) {
  .hero { min-height: auto; padding: 84px 0 100px; }
  .hero__search { flex-wrap: wrap; border-radius: 24px; padding: 14px; gap: 12px; }
  .hero__search input { width: 100%; flex: 1 1 100%; padding-left: 4px; }
  .hero__search svg.hero__search-icon { display: none; }
  .hero__search .btn { width: 100%; }
  .resorts-featured__grid { grid-template-columns: repeat(2, 1fr); }
  .home-about__wrap { grid-template-columns: 1fr; gap: 44px; }
  .home-about__badge { left: 12px; bottom: -18px; }
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .reviews-wall__grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-cta__box { grid-template-columns: 1fr; padding: 42px 30px; gap: 26px; }
  .quiz-banner__box { padding: 48px 30px; }
  .dest-top__grid { grid-template-columns: 1fr; }
  .dest-seasons__grid { grid-template-columns: 1fr; }
  .dest-catalog__grid { grid-template-columns: repeat(2, 1fr); }
  .ideas-scenarios__grid { grid-template-columns: 1fr; }
  .ideas-catalog__grid { grid-template-columns: repeat(2, 1fr); }
  .guides-top__grid { grid-template-columns: 1fr; }
  .guides-seasonal__grid { grid-template-columns: 1fr; }
  .about-mission__wrap { grid-template-columns: 1fr; gap: 40px; }
  .about-why__list { grid-template-columns: repeat(2, 1fr); }
  .about-why__list .why-item:last-child { grid-column: 1 / -1; }
  .about-values__grid { grid-template-columns: repeat(2, 1fr); }
  .about-team__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .casino-intro__wrap { grid-template-columns: 1fr; gap: 36px; }
  .casino-why__grid { grid-template-columns: repeat(2, 1fr); }
  .casino-partners__grid { grid-template-columns: repeat(2, 1fr); }
  .casino-articles__grid { grid-template-columns: 1fr; }
  .scenario-card { grid-template-columns: 1fr; }
  .scenario-card img { aspect-ratio: 16 / 8; }
  .guide-feature { grid-template-columns: 1fr; }
  .guide-feature img { aspect-ratio: 16 / 8; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
  .legal-content { padding: 50px 0 80px; }
  .modal-shell { padding: 26px 20px; }
  .quiz-options { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .container { padding-inline: 16px; }
  .dest-popular__grid { grid-template-columns: 1fr; }
  .resorts-featured__grid { grid-template-columns: 1fr; }
  .reviews-wall__grid { grid-template-columns: 1fr; }
  .dest-catalog__grid { grid-template-columns: 1fr; }
  .ideas-catalog__grid { grid-template-columns: 1fr; }
  .ideas-collections__grid { grid-template-columns: 1fr; }
  .guides-catalog__grid { grid-template-columns: 1fr; }
  .casino-slots__grid { grid-template-columns: 1fr; }
  .casino-why__grid { grid-template-columns: 1fr; }
  .casino-partners__grid { grid-template-columns: 1fr; }
  .about-values__grid { grid-template-columns: 1fr; }
  .about-why__list { grid-template-columns: 1fr; }
  .about-why__list .why-item:last-child { grid-column: auto; }
  .stats-band__grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; }
  .btn { padding: 13px 22px; font-size: 14px; white-space: normal; }
  .hero__actions { width: 100%; }
  .hero__actions .btn { width: 100%; }
  .slot-reel { width: 72px; height: 198px; }
  .slot-strip span { height: 66px; font-size: 34px; }
  .slot-reel-box::after { height: 66px; }
  .chat-panel { right: 16px; }
  .chat-toggle { right: 16px; bottom: 16px; }
  .cookie-bar { left: 12px; right: 12px; bottom: 12px; padding: 18px; }
  .quiz-banner__box { padding: 40px 22px; }
  .about-cta__box { padding: 46px 24px; }
  .ideas-subscribe__box { padding: 42px 24px; }
  .casino-disclaimer__box { padding: 26px 20px; }
  .rg-strip { gap: 18px; }
}

@media (max-width: 360px) {
  .slot-reel { width: 62px; height: 180px; }
  .slot-strip span { height: 60px; font-size: 30px; }
  .slot-reel-box::after { height: 60px; }
  .slot-reel-box { padding: 12px; gap: 7px; }
}

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
