@import url('https://fonts.googleapis.com/css2?family=Syne:wght@500;600;700;800&family=Sora:wght@300;400;500;600&display=swap');

:root {
  --ink: #07070a;
  --ink-2: #101018;
  --panel: #16161f;
  --line: rgba(46, 196, 182, 0.22);
  --teal: #2ec4b6;
  --teal-dim: #1a8f85;
  --copper: #e8a54b;
  --copper-hot: #ffc36b;
  --ivory: #f2efe8;
  --mist: #9b9aab;
  --rose: #e07a6a;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --container: 1200px;
  --nav-h: 84px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Sora', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-body);
  color: var(--ivory);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  background-color: var(--ink);
  background-image:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(46, 196, 182, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 10%, rgba(232, 165, 75, 0.1), transparent 50%),
    linear-gradient(165deg, #0c0c12 0%, var(--ink) 45%, #050508 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2.4rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 100;
  background:
    linear-gradient(90deg, rgba(46, 196, 182, 0.06), transparent 35%),
    rgba(7, 7, 10, 0.94);
  border-bottom: 1px solid var(--line);
}

.site-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), transparent 40%, transparent 60%, var(--copper));
  opacity: 0.55;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.logo-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: conic-gradient(from 210deg, var(--teal), var(--copper), var(--teal));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: transform 0.35s var(--ease);
}

.logo:hover .logo-mark {
  transform: rotate(30deg) scale(1.04);
}

.logo-mark svg {
  width: 22px;
  height: 22px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ivory);
}

.logo-text strong em {
  font-style: normal;
  color: var(--teal);
}

.logo-text small {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: var(--panel);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ivory);
  transition: transform 0.28s var(--ease), opacity 0.2s ease, width 0.2s ease;
}

.nav-toggle span:nth-child(2) {
  width: 12px;
  background: var(--teal);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 18px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 18px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-menu a {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.6rem 0.75rem;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--mist);
  transition: color 0.2s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.35rem;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--copper));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--ivory);
  outline: none;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}

.nav-menu a.active {
  color: var(--ivory);
}

.nav-menu a .nav-idx {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--teal);
  opacity: 0.7;
}

.nav-backdrop {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(300px, 44vw, 440px);
  display: grid;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 7, 10, 0.94) 0%, rgba(7, 7, 10, 0.78) 42%, rgba(7, 7, 10, 0.35) 72%, rgba(7, 7, 10, 0.55) 100%),
    linear-gradient(0deg, rgba(7, 7, 10, 0.7) 0%, transparent 45%);
}

.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -18deg,
      transparent 0,
      transparent 46px,
      rgba(46, 196, 182, 0.035) 46px,
      rgba(46, 196, 182, 0.035) 47px
    );
  mix-blend-mode: screen;
}

.hero-frame {
  position: absolute;
  inset: 1.1rem;
  border: 1px solid rgba(46, 196, 182, 0.18);
  pointer-events: none;
  z-index: 2;
}

.hero-frame::before,
.hero-frame::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid var(--copper);
}

.hero-frame::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}

.hero-frame::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: 3.4rem 0;
  max-width: 680px;
}

.hero-kicker {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
}

.hero-kicker span {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  background: rgba(46, 196, 182, 0.12);
  border: 1px solid rgba(46, 196, 182, 0.35);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  color: var(--copper-hot);
  letter-spacing: 0.14em;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5.2vw, 3.6rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--ivory);
  margin-bottom: 1.05rem;
  max-width: 11ch;
}

.hero h1 b {
  font-weight: 800;
  background: linear-gradient(120deg, var(--teal) 0%, var(--copper-hot) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h2 {
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.7vw, 1.12rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--mist);
  max-width: 36rem;
  border-left: 2px solid var(--teal);
  padding-left: 1rem;
}

.hero-ornament {
  position: absolute;
  right: max(1.5rem, calc((100vw - var(--container)) / 2));
  bottom: 1.6rem;
  z-index: 3;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(46, 196, 182, 0.35);
  pointer-events: none;
  user-select: none;
}

.ranking {
  position: relative;
  padding: 4.5rem 0 5.5rem;
  overflow: hidden;
}

.ranking::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: min(100% - 2.4rem, var(--container));
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--copper), transparent);
  opacity: 0.5;
}

.ranking-head {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

.ranking-head .eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
}

.ranking-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--ivory);
}

.ranking-head h2 em {
  font-style: normal;
  color: var(--teal);
}

.ranking-head p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--mist);
  max-width: 34rem;
}

.rank-list {
  display: grid;
  gap: 0.85rem;
}

.rank-item {
  display: grid;
  grid-template-columns: 72px 160px 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 0.85rem 1.1rem 0.85rem 0.85rem;
  background:
    linear-gradient(120deg, rgba(46, 196, 182, 0.07), transparent 42%),
    rgba(22, 22, 31, 0.72);
  border: 1px solid rgba(46, 196, 182, 0.14);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.3s var(--ease);
}

.rank-item:hover,
.rank-item:focus-visible {
  border-color: rgba(46, 196, 182, 0.45);
  background:
    linear-gradient(120deg, rgba(46, 196, 182, 0.14), transparent 50%),
    rgba(28, 28, 40, 0.9);
  transform: translateX(6px);
  outline: none;
}

.rank-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(46, 196, 182, 0.55);
}

.rank-item:nth-child(1) .rank-num {
  -webkit-text-stroke-color: var(--copper);
  color: rgba(232, 165, 75, 0.18);
}

.rank-item:nth-child(2) .rank-num,
.rank-item:nth-child(3) .rank-num {
  -webkit-text-stroke-color: var(--teal);
}

.rank-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.rank-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.rank-item:hover .rank-media img {
  transform: scale(1.06);
}

.rank-body {
  min-width: 0;
  display: grid;
  gap: 0.35rem;
}

.rank-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ivory);
}

.rank-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.9rem;
  font-size: 0.82rem;
  color: var(--mist);
}

.rank-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.rank-meta span::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--teal);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.rank-body p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.55;
  max-width: 42rem;
}

.rank-score {
  display: grid;
  justify-items: end;
  gap: 0.35rem;
  padding-right: 0.25rem;
}

.rank-score strong {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--copper-hot);
  line-height: 1;
}

.rank-score small {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
}

.rank-score .go {
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 90;
  }

  .nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(90vw, 340px);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 5.8rem 1.4rem 2rem;
    background:
      radial-gradient(ellipse 80% 40% at 100% 0%, rgba(46, 196, 182, 0.18), transparent 60%),
      linear-gradient(180deg, #12121a 0%, #07070a 100%);
    border-left: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateX(105%);
    transition: transform 0.38s var(--ease);
    z-index: 95;
    overflow-y: auto;
  }

  .nav-menu.is-open {
    transform: translateX(0);
  }

  .nav-menu a {
    padding: 1rem 0.9rem;
    font-size: 1.15rem;
    border-bottom: 1px solid rgba(46, 196, 182, 0.1);
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-menu a.active {
    color: var(--teal);
  }

  .hero {
    min-height: 320px;
  }

  .hero-content {
    padding: 2.6rem 0 3.2rem;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-frame {
    inset: 0.75rem;
  }

  .hero-ornament {
    opacity: 0.45;
    right: 1rem;
    bottom: 0.8rem;
  }

  .rank-item {
    grid-template-columns: 56px 1fr auto;
    grid-template-areas:
      "num body score"
      "num media score";
    gap: 0.75rem 1rem;
    padding: 1rem;
  }

  .rank-num { grid-area: num; align-self: start; padding-top: 0.2rem; }
  .rank-media { grid-area: media; max-width: 220px; }
  .rank-body { grid-area: body; }
  .rank-score { grid-area: score; align-self: start; }

  .rank-body p {
    display: none;
  }
}

@media (max-width: 480px) {
  .logo-text strong {
    font-size: 1.2rem;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 280px;
  }

  .hero h1 {
    font-size: 1.85rem;
  }

  .hero-ornament {
    display: none;
  }

  .ranking {
    padding: 3.25rem 0 4rem;
  }

  .rank-item {
    grid-template-columns: 48px 1fr;
    grid-template-areas:
      "num score"
      "media media"
      "body body";
    transform: none;
  }

  .rank-item:hover,
  .rank-item:focus-visible {
    transform: none;
  }

  .rank-score {
    justify-items: end;
    align-self: center;
  }

  .rank-media {
    max-width: none;
  }

  .rank-score .go {
    display: none;
  }
}

body.nav-open,
body.is-locked {
  overflow: hidden;
}

#site[aria-hidden="true"] {
  visibility: hidden;
  pointer-events: none;
}

.section {
  position: relative;
  padding: 4.5rem 0;
}

.section-head {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2.4rem;
  max-width: 42rem;
}

.section-head .eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--ivory);
}

.section-head h2 em {
  font-style: normal;
  color: var(--teal);
}

.section-head p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--mist);
  max-width: 36rem;
}

.method {
  border-top: 1px solid rgba(46, 196, 182, 0.12);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.method-item {
  padding: 1.4rem 1.3rem 1.5rem;
  background: rgba(22, 22, 31, 0.7);
  border: 1px solid rgba(46, 196, 182, 0.14);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

.method-item .icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--ink);
  background: linear-gradient(135deg, var(--teal), var(--copper));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  font-size: 1rem;
}

.method-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}

.method-item p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--mist);
}

.casino {
  background:
    radial-gradient(ellipse 60% 50% at 100% 50%, rgba(46, 196, 182, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(16, 16, 24, 0.5), transparent);
  border-top: 1px solid rgba(46, 196, 182, 0.12);
  border-bottom: 1px solid rgba(46, 196, 182, 0.12);
}

.casino-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.casino-media {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%);
  border: 1px solid rgba(46, 196, 182, 0.2);
}

.casino-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.casino-media .badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  background: rgba(7, 7, 10, 0.82);
  border: 1px solid rgba(46, 196, 182, 0.35);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

.casino-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0.7rem 0 1rem;
}

.casino-copy h2 em {
  font-style: normal;
  color: var(--copper);
}

.casino-copy > p {
  color: var(--mist);
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.casino-points {
  display: grid;
  gap: 0.85rem;
}

.casino-points li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.75rem;
  align-items: start;
  font-size: 0.94rem;
  color: var(--mist);
  font-weight: 300;
}

.casino-points i {
  color: var(--teal);
  margin-top: 0.2rem;
}

.casino-points strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 0.15rem;
}

.guide {
  border-bottom: 1px solid rgba(46, 196, 182, 0.12);
}

.guide-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.guide-media {
  overflow: hidden;
  border: 1px solid rgba(232, 165, 75, 0.25);
  clip-path: polygon(18px 0, 100% 0, 100% 100%, 0 100%, 0 18px);
}

.guide-media img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
}

.guide-list {
  display: grid;
  gap: 1rem;
}

.guide-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(46, 196, 182, 0.12);
}

.guide-list article:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.guide-list .icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(46, 196, 182, 0.3);
  color: var(--copper);
  background: rgba(46, 196, 182, 0.08);
  font-size: 1.05rem;
}

.guide-list h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.guide-list p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--mist);
}

.reasons {
  background: linear-gradient(180deg, rgba(22, 22, 31, 0.55), transparent);
}

.destinations {
  border-top: 1px solid rgba(46, 196, 182, 0.12);
}

.dest-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.dest-media {
  position: sticky;
  top: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(46, 196, 182, 0.2);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}

.dest-media img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.dest-grid {
  display: grid;
  gap: 0.75rem;
}

.dest-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  padding: 1.1rem 1.15rem;
  background: rgba(22, 22, 31, 0.72);
  border: 1px solid rgba(46, 196, 182, 0.14);
  transition: border-color 0.25s ease, transform 0.3s var(--ease);
}

.dest-card:hover {
  border-color: rgba(46, 196, 182, 0.4);
  transform: translateX(4px);
}

.dest-card .icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: linear-gradient(135deg, var(--teal), var(--copper));
  font-size: 1.05rem;
}

.dest-card h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.dest-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.55;
}

.evenings {
  background:
    radial-gradient(ellipse 50% 60% at 0% 50%, rgba(232, 165, 75, 0.08), transparent 55%),
    rgba(10, 10, 14, 0.4);
  border-top: 1px solid rgba(46, 196, 182, 0.12);
  border-bottom: 1px solid rgba(46, 196, 182, 0.12);
}

.evening-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.evening-card {
  position: relative;
  padding: 1.5rem 1.3rem 1.4rem;
  background: rgba(22, 22, 31, 0.8);
  border: 1px solid rgba(46, 196, 182, 0.14);
  overflow: hidden;
}

.evening-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--copper));
}

.evening-card .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(46, 196, 182, 0.45);
  margin-bottom: 0.85rem;
}

.evening-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.evening-card h3 i {
  color: var(--copper);
  font-size: 0.95rem;
}

.evening-card p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.6;
}

.lobby {
  border-bottom: 1px solid rgba(46, 196, 182, 0.12);
}

.lobby-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.lobby-copy .eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
}

.lobby-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0.7rem 0 1rem;
}

.lobby-copy h2 em {
  font-style: normal;
  color: var(--teal);
}

.lobby-copy > p {
  color: var(--mist);
  font-weight: 300;
  margin-bottom: 1.35rem;
}

.lobby-steps {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.lobby-steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.85rem;
  align-items: start;
}

.lobby-steps span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--ink);
  background: var(--copper);
}

.lobby-steps strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 0.15rem;
}

.lobby-steps p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--mist);
}

.lobby-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(232, 165, 75, 0.28);
  clip-path: polygon(18px 0, 100% 0, 100% 100%, 0 100%, 0 18px);
}

.lobby-media img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
}

.responsible {
  background: linear-gradient(120deg, rgba(46, 196, 182, 0.08), rgba(224, 122, 106, 0.06));
  border-top: 1px solid rgba(46, 196, 182, 0.12);
  border-bottom: 1px solid rgba(46, 196, 182, 0.12);
}

.responsible-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem 1.75rem;
  background: rgba(7, 7, 10, 0.55);
  border: 1px solid rgba(46, 196, 182, 0.22);
}

.responsible-panel .icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: var(--ink);
  background: linear-gradient(135deg, var(--rose), var(--copper));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.responsible-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem;
}

.responsible-panel p {
  color: var(--mist);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 46rem;
}

.editorial {
  padding-bottom: 1rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.editorial-card {
  padding: 1.4rem 1.25rem;
  background:
    linear-gradient(160deg, rgba(46, 196, 182, 0.08), transparent 45%),
    rgba(22, 22, 31, 0.75);
  border: 1px solid rgba(46, 196, 182, 0.14);
}

.editorial-card .tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.editorial-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.editorial-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.editorial-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--copper);
}

.editorial-card a:hover {
  color: var(--teal);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.reason {
  padding: 1.35rem 1.15rem;
  border: 1px solid rgba(46, 196, 182, 0.14);
  background: rgba(7, 7, 10, 0.45);
  text-align: left;
}

.reason i {
  font-size: 1.25rem;
  color: var(--teal);
  margin-bottom: 0.9rem;
}

.reason h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.reason p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--mist);
}

.cta {
  padding: 3.5rem 0 5rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 2.1rem;
  background:
    linear-gradient(120deg, rgba(46, 196, 182, 0.16), rgba(232, 165, 75, 0.1)),
    rgba(22, 22, 31, 0.85);
  border: 1px solid rgba(46, 196, 182, 0.25);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.cta-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.cta-panel p {
  color: var(--mist);
  font-weight: 300;
  max-width: 36rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.35rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  color: var(--ink);
  background: linear-gradient(120deg, var(--teal), #4ad4c5);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: filter 0.2s ease, transform 0.2s var(--ease);
}

.btn:hover,
.btn:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
  outline: none;
}

.btn-ghost {
  color: var(--ivory);
  background: transparent;
  border: 1px solid rgba(46, 196, 182, 0.4);
  clip-path: none;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--teal);
  color: var(--teal);
  filter: none;
}

.btn-copper {
  background: linear-gradient(120deg, var(--copper), var(--copper-hot));
}

.site-footer {
  border-top: 1px solid rgba(46, 196, 182, 0.16);
  padding: 3rem 0 2rem;
  background: rgba(7, 7, 10, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  margin-top: 0.85rem;
  color: var(--mist);
  font-weight: 300;
  font-size: 0.92rem;
  max-width: 22rem;
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
  color: var(--ivory);
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  color: var(--mist);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--teal);
}

.footer-col a i {
  width: 1.1rem;
  color: var(--copper);
}

.footer-disclaimer {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.5rem;
  background: rgba(22, 22, 31, 0.75);
  border: 1px solid rgba(232, 165, 75, 0.22);
}

.footer-disclaimer h3 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--copper);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-disclaimer p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--mist);
  font-weight: 300;
}

.footer-disclaimer a {
  color: var(--teal);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(46, 196, 182, 0.12);
  font-size: 0.8rem;
  color: var(--mist);
}

.footer-copy {
  display: grid;
  gap: 0.25rem;
}

.page-hero {
  position: relative;
  padding: 3.2rem 0 2.6rem;
  border-bottom: 1px solid rgba(46, 196, 182, 0.14);
  background:
    radial-gradient(ellipse 50% 80% at 100% 0%, rgba(46, 196, 182, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(16, 16, 24, 0.65), transparent);
}

.page-hero .eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 16ch;
  margin-bottom: 0.85rem;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--teal);
}

.page-hero p {
  max-width: 38rem;
  color: var(--mist);
  font-weight: 300;
  font-size: 1.02rem;
}

.page-content {
  padding: 3.25rem 0 4.5rem;
}

.prose {
  display: grid;
  gap: 1.15rem;
  max-width: 46rem;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 1.25rem;
  color: var(--ivory);
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.prose p,
.prose li {
  color: var(--mist);
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.7;
}

.prose ul,
.prose ol {
  display: grid;
  gap: 0.55rem;
  padding-left: 1.15rem;
}

.prose ul {
  list-style: disc;
}

.prose ol {
  list-style: decimal;
}

.prose a {
  color: var(--teal);
  text-decoration: underline;
}

.prose .email-box {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.5rem;
  padding: 0.95rem 1.15rem;
  background: rgba(46, 196, 182, 0.1);
  border: 1px solid rgba(46, 196, 182, 0.28);
  color: var(--ivory);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
}

.prose .email-box:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  max-width: 52rem;
}

.faq-item {
  padding: 1.2rem 1.25rem;
  background: rgba(22, 22, 31, 0.7);
  border: 1px solid rgba(46, 196, 182, 0.14);
}

.faq-item h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.faq-item h2 i {
  color: var(--teal);
  margin-top: 0.15rem;
}

.faq-item p {
  color: var(--mist);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.65;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.content-card {
  padding: 1.35rem 1.25rem;
  background: rgba(22, 22, 31, 0.7);
  border: 1px solid rgba(46, 196, 182, 0.14);
}

.content-card i {
  color: var(--copper);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.content-card h2,
.content-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.content-card p {
  color: var(--mist);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.6;
}

.content-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.menu-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}

.menu-table th,
.menu-table td {
  text-align: left;
  padding: 0.85rem 0.75rem;
  border-bottom: 1px solid rgba(46, 196, 182, 0.14);
  font-size: 0.92rem;
}

.menu-table th {
  font-family: var(--font-display);
  color: var(--copper);
  font-weight: 700;
}

.menu-table td {
  color: var(--mist);
  font-weight: 300;
}

.menu-table td:last-child,
.menu-table th:last-child {
  text-align: right;
  color: var(--ivory);
  font-family: var(--font-display);
  font-weight: 700;
}

.modal-layer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(46, 196, 182, 0.12), transparent 60%),
    rgba(3, 3, 6, 0.92);
}

.modal-layer[hidden] {
  display: none !important;
}

.modal-card {
  width: min(100%, 460px);
  padding: 2rem 1.75rem 1.75rem;
  background:
    linear-gradient(165deg, rgba(28, 28, 40, 0.98), rgba(12, 12, 18, 0.98));
  border: 1px solid rgba(46, 196, 182, 0.28);
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  text-align: center;
}

.modal-card .modal-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 1.1rem;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  color: var(--ink);
  background: linear-gradient(135deg, var(--teal), var(--copper));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.modal-card h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.7rem;
}

.modal-card p {
  color: var(--mist);
  font-weight: 300;
  font-size: 0.95rem;
  margin-bottom: 1.4rem;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.restrict-card {
  width: min(100%, 520px);
  text-align: center;
}

.restrict-card .modal-icon {
  background: linear-gradient(135deg, var(--rose), var(--copper));
}

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1900;
  width: min(calc(100% - 2rem), 720px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.2rem;
  background: rgba(16, 16, 24, 0.96);
  border: 1px solid rgba(46, 196, 182, 0.3);
  box-shadow: var(--shadow);
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent p {
  font-size: 0.88rem;
  color: var(--mist);
  font-weight: 300;
}

.cookie-consent p strong {
  display: block;
  font-family: var(--font-display);
  color: var(--ivory);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.cookie-consent p a {
  color: var(--teal);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

@media (max-width: 960px) {
  .method-grid,
  .reasons-grid {
    grid-template-columns: 1fr 1fr;
  }

  .casino-layout,
  .guide-grid,
  .cta-panel,
  .footer-grid,
  .content-grid,
  .dest-layout,
  .lobby-layout,
  .evening-grid,
  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .dest-media {
    position: static;
  }

  .responsible-panel {
    grid-template-columns: 1fr;
  }

  .cta-panel .btn {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .method-grid,
  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .cookie-consent {
    grid-template-columns: 1fr;
  }

  .modal-actions,
  .cookie-actions {
    flex-direction: column;
  }

  .modal-actions .btn,
  .cookie-actions .btn {
    width: 100%;
  }
}
