@font-face {
  font-family: "Futura PT Local";
  src: url("./assets/fonts/futura-pt-400.eb4caaef6dac.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura PT Local";
  src: url("./assets/fonts/futura-pt-600.4ccd36e96f59.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura PT Local";
  src: url("./assets/fonts/futura-pt-700.502737814d68.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #120d3a;
  --black: #050408;
  --paper: #ffffff;
  --gold: #f0d184;
  --red: #b8160d;
  --muted: #5b5871;
  --line: #ece9e2;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Futura PT Local", "Trebuchet MS", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

main {
  background: var(--paper);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--black);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 95px;
  display: grid;
  grid-template-columns: 310px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px 38px 12px;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--red);
  color: var(--paper);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: background 180ms ease, transform 180ms ease;
}

.site-header__cta:hover,
.site-header__cta:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.site-header__cta:active {
  transform: translateY(1px);
}

.brand img {
  width: 270px;
}

.site-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 27px;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1;
}

.site-nav a {
  color: var(--ink);
  opacity: 1;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--red);
}

.site-nav a[aria-current="page"] {
  color: var(--red);
}

.site-nav a:active,
.button:active,
.slider-button:active,
.menu-toggle:active {
  transform: translateY(1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 10px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
}

.hero {
  min-height: 635px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 96px 5.7vw 76px;
  color: var(--paper);
  text-align: center;
  background-color: var(--ink);
  background-image:
    linear-gradient(180deg, rgba(5, 4, 8, .78) 0%, rgba(5, 4, 8, .58) 50%, rgba(5, 4, 8, .58) 100%),
    url("./assets/images/hero.efa2fa0a379a.jpg");
  background-position: center top;
  background-size: cover;
  box-shadow: 0 24px 42px rgba(18, 13, 58, .28);
  z-index: 1;
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.18;
  text-align: center;
}

.hero-kicker,
.hero-title,
.hero-description {
  text-shadow: 0 4px 22px rgba(0, 0, 0, .72);
}

.hero-kicker {
  margin-bottom: 10px;
  color: var(--paper);
  text-transform: uppercase;
  font-size: clamp(28px, 2.1vw, 35.2px);
  font-weight: 200;
  line-height: .8;
  letter-spacing: .8px;
}

.hero-title {
  margin-bottom: 28px;
  text-transform: uppercase;
  line-height: .86;
}

.hero-title span {
  display: block;
}

.hero-title span:nth-child(1),
.hero-title span:nth-child(2) {
  color: var(--gold);
  font-size: clamp(58px, 5.2vw, 80px);
  font-weight: 700;
  line-height: .8;
  letter-spacing: 10px;
}

.hero-title span:nth-child(3) {
  color: var(--paper);
  font-size: clamp(36px, 3.1vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: .2px;
}

.hero-description {
  max-width: 476px;
  margin: 0 auto;
  color: var(--paper);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.29;
}

.hero-rewards-cta {
  position: absolute;
  right: clamp(82px, 14vw, 230px);
  top: 53%;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 238px;
  min-height: 58px;
  padding: 18px 30px 16px;
  border: 1px solid rgba(248, 221, 159, .78);
  border-radius: 2px;
  color: #171009;
  background: linear-gradient(180deg, #f7dc9d 0%, #c79a3b 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .42),
    inset 0 -2px 0 rgba(82, 49, 10, .28),
    0 18px 38px rgba(4, 8, 24, .34);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 1;
  text-shadow: none;
  transform: translate3d(0, -50%, 0);
  opacity: 0;
  animation: elementsCtaIn .85s cubic-bezier(.16, 1, .3, 1) .5s forwards;
  transition:
    color .28s cubic-bezier(.16, 1, .3, 1),
    border-color .28s cubic-bezier(.16, 1, .3, 1),
    box-shadow .28s cubic-bezier(.16, 1, .3, 1),
    transform .28s cubic-bezier(.16, 1, .3, 1);
}

.hero-rewards-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .52) 44%, transparent 64%),
    linear-gradient(180deg, #c1182f 0%, #8f1023 100%);
  transform: translate3d(-115%, 0, 0);
  transition: transform .62s cubic-bezier(.16, 1, .3, 1);
}

.hero-rewards-cta:hover,
.hero-rewards-cta:focus-visible {
  color: var(--paper);
  border-color: rgba(255, 255, 255, .72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .28),
    inset 0 -2px 0 rgba(36, 4, 10, .25),
    0 22px 42px rgba(3, 7, 23, .42);
  transform: translate3d(0, calc(-50% - 3px), 0);
}

.hero-rewards-cta:hover::before,
.hero-rewards-cta:focus-visible::before {
  transform: translate3d(0, 0, 0);
}

.hero-rewards-cta:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .82);
  outline-offset: 4px;
}

.hero-rewards-cta:active {
  transform: translate3d(0, calc(-50% - 1px), 0);
}

.hero-kicker,
.hero-title span,
.hero-description {
  opacity: 0;
  animation: elementsFadeIn 1.25s ease forwards;
}

.hero-title span:nth-child(3) {
  animation-name: elementsFadeInUp;
  animation-duration: .75s;
  animation-delay: .18s;
}

.hero-description {
  animation-delay: .32s;
}

@keyframes elementsFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes elementsFadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes elementsCtaIn {
  from {
    opacity: 0;
    transform: translate3d(28px, -50%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, -50%, 0);
  }
}

.gaming-band {
  min-height: 790px;
  padding: 66px 28px 86px;
  color: var(--ink);
  background-color: var(--black);
  background-image: url("./assets/images/rewards-bg.739098e63ceb.jpg");
  background-size: cover;
  background-position: center;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 58px;
  color: var(--gold);
  text-align: center;
  text-transform: uppercase;
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 2px;
}

#play h1 {
  color: var(--gold);
  background-image: linear-gradient(180deg, #fadb9b 0%, #b58923 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  margin-bottom: 26px;
  text-transform: uppercase;
  font-size: 54px;
  font-weight: 400;
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.game-card {
  background: var(--paper);
  color: var(--black);
}

.game-image {
  min-height: 342px;
  display: flex;
  position: relative;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 25px;
  background-position: center;
  background-size: cover;
}

.game-count {
  min-width: 100px;
  min-height: 85px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 0 13px;
  color: var(--paper);
  background: #000000;
  text-align: center;
}

.game-count strong {
  display: block;
  color: var(--gold);
  font-size: 35.2px;
  font-weight: 600;
  line-height: 44.8px;
}

.game-count span {
  display: block;
  text-transform: uppercase;
  color: var(--paper);
  font-size: 17.6px;
  font-weight: 400;
  line-height: 19.2px;
}

.game-count.icon-only {
  min-width: 125px;
  color: var(--paper);
  text-transform: uppercase;
  font-size: 19.2px;
  font-weight: 400;
  line-height: 28.8px;
}

.game-count.icon-only::before {
  content: "\2667";
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 42px;
  line-height: .8;
}

.game-card p {
  min-height: 188px;
  margin: 0;
  padding: 26px 24px 50px;
  color: var(--black);
  text-align: center;
  font-size: 20px;
  line-height: 1.32;
}

.split-section {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 38%) minmax(0, 1fr);
  align-items: center;
  gap: 48px;
  padding: 80px 28px;
  color: var(--ink);
  background: var(--paper);
}

.section-copy p {
  max-width: 520px;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.27;
  color: var(--ink);
}

#promo h2,
#events h2 {
  color: var(--ink);
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -3.2px;
}

#promo .section-copy,
#events .section-copy {
  color: var(--ink);
}

#events .eyebrow {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 26px 13px;
  border: 0;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button.dark {
  color: var(--paper);
  background: var(--black);
}

.button.red {
  color: var(--paper);
  background: var(--red);
}

.button:hover {
  background: var(--red);
  color: var(--paper);
}

.carousel-wrap {
  position: relative;
  min-width: 0;
}

.card-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 520px);
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border: 1px solid #f0f0f0;
}

.card-slider::-webkit-scrollbar {
  display: none;
}

.promo-card,
.event-card,
.room-grid article {
  background: var(--paper);
  border: 1px solid #f2f2f2;
  color: var(--ink);
}

.promo-card {
  scroll-snap-align: start;
  padding-bottom: 24px;
}

.promo-card img,
.event-card img,
.room-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.promo-card h3,
.promo-card .meta {
  padding: 0 18px;
}

.promo-card h3 {
  margin-top: 18px;
}

.meta {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 5px;
  color: var(--black);
  font-size: 16px;
  line-height: 1.3;
}

.promo-card .meta::before,
.event-card .meta::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  margin-top: .35em;
  background:
    radial-gradient(circle, var(--red) 45%, transparent 47%) 0 0 / 4px 4px;
  opacity: .85;
}

.slider-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: var(--black);
  cursor: pointer;
}

.slider-button::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-top: 3px solid var(--red);
  border-left: 3px solid var(--red);
}

.slider-button.prev {
  left: -14px;
}

.slider-button.next {
  right: -14px;
}

.slider-button.prev::before {
  transform: translateX(2px) rotate(-45deg);
}

.slider-button.next::before {
  transform: translateX(-2px) rotate(135deg);
}

.events {
  padding-top: 35px;
}

.eyebrow {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
}

.eyebrow.light {
  color: var(--gold);
}

.event-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.event-card {
  padding-bottom: 18px;
}

.event-card h3,
.event-card .meta {
  padding: 0 18px;
}

.event-card h3 {
  margin-top: 18px;
}

.rewards {
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(18, 13, 58, .96), rgba(18, 13, 58, .68)),
    url("./assets/images/rewards-bg.739098e63ceb.jpg");
  background-size: cover;
  background-position: center;
}

.rewards-grid {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(320px, 1.2fr);
  align-items: center;
  gap: 40px;
  padding: 76px 28px;
}

.rewards h2,
.rewards p {
  color: var(--paper);
}

.rewards .eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.rewards h2 {
  font-size: 54px;
  font-weight: 500;
  line-height: .9;
  letter-spacing: -2.4px;
}

.rewards p:not(.eyebrow) {
  font-size: 19px;
  line-height: 1.5;
}

.rewards img {
  justify-self: center;
}

.dine {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(300px, .8fr);
  gap: 44px;
  align-items: center;
  padding: 78px 28px;
}

.dine-media {
  min-height: 430px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 28px;
  padding: 42px;
  background: var(--black);
  background-image: linear-gradient(135deg, rgba(184, 22, 13, .42), rgba(18, 13, 58, .84));
}

.well-logo {
  width: 210px;
}

.food-logo {
  width: 640px;
}

.meetings {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 88px 28px;
  color: var(--paper);
  background:
    linear-gradient(110deg, rgba(5, 4, 8, .92), rgba(5, 4, 8, .7)),
    url("./assets/images/venue-exterior.eac175c00381.png");
  background-size: cover;
  background-position: center;
}

.meeting-panel,
.room-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.meeting-panel {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.meeting-panel p {
  color: var(--paper);
  font-size: 21px;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.room-grid article {
  color: var(--ink);
}

.room-grid img {
  aspect-ratio: 16 / 9;
}

.room-grid h3,
.room-grid p {
  padding: 0 24px;
}

.room-grid h3 {
  margin-top: 24px;
}

.room-grid p {
  margin-bottom: 26px;
}

.find-us {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 1fr);
  min-height: 470px;
  padding: 50px 35px 48px;
  color: var(--paper);
  background:
    linear-gradient(120deg, rgba(4, 3, 14, .98), rgba(4, 3, 14, .86)),
    url("./assets/images/rewards-bg.739098e63ceb.jpg");
  background-size: cover;
  background-position: center;
}

.find-card {
  max-width: 420px;
  padding: 26px 36px 36px;
  align-self: start;
}

.find-card img {
  width: 320px;
  margin-bottom: 22px;
}

.find-card p {
  margin-bottom: 13px;
  color: var(--paper);
}

.map-panel {
  min-height: 330px;
  background-image: url("./assets/images/map.e9c313e79158.jpg");
  background-position: center;
  background-size: cover;
  box-shadow: 0 7px 18px rgba(0, 0, 0, .28);
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 28px 20px 34px;
  color: var(--paper);
  background: var(--black);
  text-align: center;
  font-size: 15px;
}

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-logos img:first-child {
  width: 130px;
}

.footer-logos img:last-child {
  width: 280px;
}

.info-page {
  background: #f7f3ec;
}

.page-header {
  min-height: 280px;
  display: grid;
  align-items: end;
  padding: 98px 5.7vw 56px;
  color: var(--paper);
  background-size: cover;
  background-position: center;
}

.page-header.app-header {
  background-image:
    linear-gradient(115deg, rgba(5, 4, 8, .92), rgba(18, 13, 58, .76) 52%, rgba(5, 4, 8, .28)),
    url("./assets/images/hero.efa2fa0a379a.jpg");
}

.page-header.bonus-header {
  background-image:
    linear-gradient(115deg, rgba(64, 3, 8, .92), rgba(18, 13, 58, .72) 56%, rgba(5, 4, 8, .24)),
    url("./assets/images/rewards-bg.739098e63ceb.jpg");
}

.page-header.login-header {
  background-image:
    linear-gradient(115deg, rgba(5, 4, 8, .92), rgba(18, 13, 58, .74) 56%, rgba(5, 4, 8, .2)),
    url("./assets/images/venue-exterior.eac175c00381.png");
}

.page-header h1 {
  width: min(var(--max), 100%);
  margin: 0 auto;
  color: var(--paper);
  text-align: left;
  font-size: 60px;
  letter-spacing: 2px;
}

.page-content {
  padding: 70px 28px 92px;
}

.article-panel {
  max-width: 1030px;
  margin: 0 auto;
  padding: 62px 72px 68px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 22px 48px rgba(18, 13, 58, .08);
}

.article-panel h1,
.article-panel h2 {
  max-width: 820px;
  margin-bottom: 26px;
  color: var(--red);
  text-align: left;
  font-size: 48px;
  letter-spacing: 1px;
}

.article-panel h3 {
  margin: 42px 0 14px;
  color: var(--ink);
  font-size: 24px;
  letter-spacing: .5px;
}

.article-panel p,
.article-panel li {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.58;
}

.article-panel p {
  max-width: 820px;
  margin-bottom: 18px;
}

.article-panel ul {
  max-width: 820px;
  margin: 0 0 28px 22px;
  padding: 0;
}

.article-panel li {
  margin-bottom: 10px;
  padding-left: 6px;
}

.article-panel li::marker {
  color: var(--red);
}

.landing-panel {
  margin-bottom: 54px;
}

.landing-section {
  background: var(--paper);
}

.landing-section .section-inner {
  max-width: none;
}

.landing-section .landing-panel {
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Futura PT Local", "Trebuchet MS", Arial, sans-serif;
  border-right: 0;
  border-left: 0;
  box-shadow: none;
}

.landing-section .landing-panel > h1,
.landing-section .landing-panel > h2,
.landing-section .landing-panel > h3,
.landing-section .landing-panel > p,
.landing-section .landing-panel > ul > li {
  color: var(--ink);
}

.landing-panel > .eyebrow {
  color: var(--red);
}

.landing-lead {
  font-weight: 600;
}

.landing-body > :last-child {
  margin-bottom: 0;
}

.landing-panel > .button {
  margin-top: 22px;
}

.elements-content-scope {
  all: initial;
  display: block;
  width: 100%;
  max-width: 100%;
  color: initial;
  font: initial;
  text-align: initial;
}

.elements-content-scope,
.elements-content-scope *,
.elements-content-scope *::before,
.elements-content-scope *::after {
  box-sizing: border-box;
}

.elements-content-scope :where(
  div,
  section,
  article,
  header,
  footer,
  main,
  nav,
  aside,
  figure,
  figcaption,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  a,
  span,
  strong,
  em,
  small,
  ul,
  ol,
  li,
  dl,
  dt,
  dd,
  table,
  thead,
  tbody,
  tfoot,
  tr,
  th,
  td,
  img,
  picture,
  source,
  button,
  input,
  textarea,
  select,
  label
) {
  all: revert;
  box-sizing: border-box;
}

.elements-content-scope :where(img, video, iframe, svg, canvas) {
  max-width: 100%;
}

.notice-box {
  max-width: 860px;
  margin: 38px 0 8px;
  padding: 26px 30px;
  border-left: 6px solid var(--red);
  background: #f7f3ec;
}

.notice-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 18px;
}

.notice-box p {
  margin-bottom: 0;
}

.content-accordion {
  max-width: 900px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.content-accordion details {
  border-bottom: 1px solid var(--line);
}

.content-accordion summary {
  position: relative;
  display: block;
  padding: 23px 58px 22px 0;
  color: var(--ink);
  cursor: pointer;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}

.content-accordion summary::-webkit-details-marker {
  display: none;
}

.content-accordion summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--black);
  transform: translateY(-50%);
  font-size: 22px;
  line-height: 1;
}

.content-accordion details[open] summary::after {
  content: "-";
  background: var(--red);
}

.content-accordion details > div {
  padding: 0 58px 26px 0;
}

.content-accordion p {
  margin-bottom: 0;
}

.article-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 42px;
}

.text-link {
  color: var(--red);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 240px 1fr;
    gap: 16px;
    padding-inline: 24px;
  }

  .brand img {
    width: 230px;
  }

  .site-nav {
    gap: 15px;
    font-size: 14px;
  }

  .hero-rewards-cta {
    right: 42px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 42px;
  }

  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-header h1 {
    font-size: 48px;
  }

  .article-panel {
    padding: 54px 52px 60px;
  }
}

@media (max-width: 860px) {
  body {
    font-size: 16px;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    min-height: 78px;
    gap: 12px;
  }

  .brand img {
    width: 205px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    grid-column: 1 / -1;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-header__cta {
    padding: 9px 14px;
    font-size: 12px;
    letter-spacing: 0.6px;
  }

  .hero {
    flex-direction: column;
    min-height: 520px;
    padding: 130px 24px 70px;
    background-position: 58% center;
  }

  .hero-copy {
    max-width: 500px;
    font-size: 20px;
  }

  .hero-rewards-cta {
    position: relative;
    right: auto;
    top: auto;
    margin-top: 28px;
    transform: none;
    opacity: 1;
    animation: none;
  }

  .hero-rewards-cta:hover,
  .hero-rewards-cta:focus-visible,
  .hero-rewards-cta:active {
    transform: translate3d(0, -2px, 0);
  }

  .gaming-band {
    min-height: auto;
    padding: 48px 18px 58px;
  }

  h1,
  h2 {
    font-size: 36px;
  }

  .split-section,
  .events,
  .dine,
  .rewards-grid,
  .find-us {
    grid-template-columns: 1fr;
  }

  .split-section,
  .dine,
  .rewards-grid {
    padding: 54px 20px;
  }

  .section-copy p {
    font-size: 19px;
  }

  .event-stack,
  .room-grid {
    grid-template-columns: 1fr;
  }

  .meetings {
    padding: 60px 20px;
  }

  .find-us {
    padding: 38px 20px;
  }

  .page-header {
    min-height: 230px;
    padding: 92px 24px 44px;
  }

  .page-header h1 {
    font-size: 38px;
  }

  .page-content {
    padding: 44px 20px 64px;
  }

  .article-panel {
    padding: 40px 30px 46px;
  }

  .article-panel h1,
  .article-panel h2 {
    font-size: 35px;
  }

  .article-panel h3 {
    font-size: 21px;
  }

  .article-panel p,
  .article-panel li {
    font-size: 18px;
  }

  .notice-box {
    padding: 22px 22px;
  }

  .content-accordion summary {
    padding-right: 48px;
    font-size: 18px;
  }

  .content-accordion details > div {
    padding-right: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand img {
    width: 180px;
  }

  .hero {
    min-height: 470px;
    padding-top: 110px;
  }

  h1,
  h2 {
    font-size: 31px;
  }

  .game-grid {
    grid-template-columns: 1fr;
  }

  .game-image {
    min-height: 260px;
  }

  .card-slider {
    grid-auto-columns: minmax(260px, 88vw);
  }

  .slider-button.prev {
    left: 8px;
  }

  .slider-button.next {
    right: 8px;
  }

  .dine-media {
    min-height: 320px;
    padding: 28px;
  }

  .find-card {
    padding-inline: 0;
  }

  .page-header {
    min-height: 205px;
    padding: 84px 18px 38px;
  }

  .page-header h1 {
    font-size: 31px;
  }

  .page-content {
    padding: 32px 14px 48px;
  }

  .article-panel {
    padding: 30px 20px 36px;
  }

  .article-panel h1,
  .article-panel h2 {
    font-size: 29px;
  }

  .article-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
}

/* Hotfix: reduce Elements Casino landing content spacing on mobile/tablet */
@media (max-width: 768px) {
  .hero {
    min-height: 520px;
    padding: 56px 20px 48px;
    background-position: center top;
  }

  .hero-copy,
  .hero-description {
    max-width: 100%;
  }

  .hero-title {
    margin-bottom: 20px;
  }

  .hero-title span:nth-child(1),
  .hero-title span:nth-child(2) {
    font-size: clamp(42px, 14vw, 58px);
    letter-spacing: 5px;
  }

  .hero-title span:nth-child(3) {
    font-size: clamp(28px, 9vw, 36px);
  }

  .hero-description {
    font-size: 17px;
    line-height: 1.4;
  }

  .page-content {
    padding: 36px 16px 56px;
  }

  .article-panel {
    padding: 28px 18px 34px;
  }

  .article-panel h1,
  .article-panel h2 {
    margin-bottom: 18px;
    font-size: 30px;
    line-height: 1.15;
  }

  .article-panel h3 {
    margin: 28px 0 12px;
    font-size: 22px;
  }

  .article-panel p,
  .article-panel li {
    font-size: 17px;
    line-height: 1.55;
  }

  .landing-panel {
    margin-bottom: 32px;
  }

  .content-toc {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .page-content {
    padding: 52px 24px 72px;
  }

  .article-panel {
    padding: 44px 36px 50px;
  }

  .article-panel h1,
  .article-panel h2 {
    font-size: 40px;
  }

  .article-panel p,
  .article-panel li {
    font-size: 19px;
  }
}

/* Hotfix: make Elements Casino landing sections full-width */
.landing-section {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.landing-section .section-inner,
.landing-section .landing-panel,
.landing-section .elements-content-scope {
  width: 100%;
  max-width: none;
}

.landing-section .article-panel {
  border-left: 0;
  border-right: 0;
}

@media (max-width: 1023px) {
  .landing-section {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

/* Wider content area for casino review landing pages (login/bonus/app/content) */
.article-panel.landing-panel--wide {
  max-width: 1280px;
  padding: 56px 64px 64px;
}

.article-panel.landing-panel--wide h1,
.article-panel.landing-panel--wide h2,
.article-panel.landing-panel--wide p,
.article-panel.landing-panel--wide ul,
.article-panel.landing-panel--wide ol {
  max-width: none;
}

.elements-content-scope--wide :where(p, ul, ol, h1, h2, h3, h4, blockquote, table, figure) {
  max-width: none;
}

@media (max-width: 1180px) {
  .article-panel.landing-panel--wide {
    padding: 48px 44px 56px;
  }
}

@media (max-width: 860px) {
  .article-panel.landing-panel--wide {
    padding: 38px 22px 44px;
  }
}

/*
 * Elements Casino — Key Facts / CMS-контент: вернуть ширину контента
 * из page.body. Унаследованные правила `.article-panel p/ul/li/h2`
 * имеют max-width: 820px, а `.elements-content-scope :where(...)`
 * с `all: revert` проигрывает по специфичности. Переопределяем для
 * контейнера CMS-тела на full-width лендинг-секциях, чтобы Key Facts,
 * таблицы и карточки занимали всю ширину панели, а не зажимались.
 * Hero / mobile padding остаются нетронутыми.
 */
.landing-section .article-panel .landing-body,
.landing-section .article-panel .elements-content-scope {
  max-width: none;
  width: 100%;
}

.landing-section .article-panel .landing-body :where(
  p, ul, ol, li, dl, dt, dd,
  h1, h2, h3, h4, h5, h6,
  table, thead, tbody, tr, th, td,
  figure, blockquote, pre, section, article, div
) {
  max-width: none;
}

.landing-section .article-panel .landing-body table {
  width: 100%;
  border-collapse: collapse;
}

@media (min-width: 861px) {
  .landing-section .article-panel.landing-panel {
    padding-left: clamp(28px, 4vw, 64px);
    padding-right: clamp(28px, 4vw, 64px);
  }
}
