@font-face {
  font-family: "Futura PT Local";
  src: url("./assets/fonts/futura-pt-400.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.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.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;
  align-items: center;
  gap: 22px;
  padding: 14px 38px 12px;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}

.brand img {
  width: 270px;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  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: flex-start;
  align-items: center;
  padding: 96px 5.7vw 76px 75px;
  color: var(--paper);
  text-align: center;
  background-color: var(--ink);
  background-image:
    linear-gradient(90deg, rgba(5, 4, 8, .88) 0%, rgba(5, 4, 8, .74) 26%, rgba(5, 4, 8, .42) 46%, rgba(5, 4, 8, .08) 64%, rgba(5, 4, 8, 0) 76%),
    url("./assets/images/hero.jpg");
  background-position: left top;
  background-size: cover;
  box-shadow: 0 24px 42px rgba(18, 13, 58, .28);
  z-index: 1;
}

.hero-copy {
  max-width: 476px;
  line-height: 1.18;
}

.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-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);
  }
}

.gaming-band {
  min-height: 790px;
  padding: 66px 28px 86px;
  color: var(--ink);
  background-color: var(--black);
  background-image: url("./assets/images/rewards-bg.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.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.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.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.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.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.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.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 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;
}

.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;
  }

  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;
    min-height: 78px;
  }

  .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;
  }

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

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

  .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;
  }
}
