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

:root {
  --bg: #080808;
  --text: #ffffff;
  --neon: #ff0020;
  --neon-border: 2px solid var(--neon);
  --design-width: 1080;
  --design-height: 1920;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  font-family: 'Oswald', 'Arial Black', 'Impact', sans-serif;
}

.display-rotate {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.display-orient {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.display-orient--cw {
  width: 100vh;
  height: 100vw;
  transform: rotate(90deg);
}

.display-orient--ccw {
  width: 100vh;
  height: 100vw;
  transform: rotate(-90deg);
}

.display {
  position: relative;
  flex-shrink: 0;
  width: calc(var(--design-width) * 1px);
  height: calc(var(--design-height) * 1px);
  transform: scale(var(--display-scale, 1));
  transform-origin: center center;
  container-type: size;
  color: var(--text);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: var(--bg);
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.015) 0px,
      rgba(255, 255, 255, 0.015) 1px,
      transparent 1px,
      transparent 4px
    ),
    radial-gradient(ellipse 120% 80% at 50% 20%, #1a1a1a 0%, #0a0a0a 45%, #050505 100%);
  will-change: transform;
}

.content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 3cqh 4cqw 2cqh;
  min-height: 0;
}

/* ── Shared headings ── */
.section-heading {
  text-align: center;
  margin-bottom: 2.5cqh;
}

.section-heading--compact {
  margin-bottom: 1.5cqh;
}

.specials-section .section-heading--compact {
  margin-bottom: 0.6cqh;
}

.specials-section .heading-primary-row {
  gap: 1.2cqw;
}

.specials-section .heading-primary--long {
  font-family: 'Oswald', sans-serif;
  font-size: 3.75cqh;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #ffea00;
  text-shadow: 0 0 12px rgba(255, 234, 0, 0.35);
}

.specials-section .heading-star {
  font-size: 2cqh;
  color: transparent;
  -webkit-text-stroke: 1.5px #ffea00;
}

.heading-primary {
  font-family: 'Bebas Neue', 'Oswald', 'Impact', sans-serif;
  font-size: 11cqh;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--text);
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.8);
}

.heading-primary--long {
  font-size: 7.5cqh;
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
}

.heading-primary-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2cqw;
}

.heading-star {
  font-size: 4cqh;
  color: transparent;
  -webkit-text-stroke: 2px var(--neon);
  line-height: 1;
  flex-shrink: 0;
}

.heading-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2cqw;
  margin-top: 0.5cqh;
}

.heading-secondary {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: 4cqh;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--neon);
  white-space: nowrap;
}

.heading-line {
  flex: 1;
  max-width: 18cqw;
  height: 2px;
  background: var(--neon);
}

/* ── Dice section ── */
.dice-section {
  position: relative;
  flex: 0 0 auto;
  padding-bottom: 1cqh;
  margin-bottom: 0.75cqh;
}

.dice-section .section-heading {
  margin-bottom: 0.75cqh;
}

.shake-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.42cqw;
  margin: 0;
  line-height: 1;
}

.shake-title-word {
  font-family: 'Oswald', sans-serif;
  font-size: 5.76cqh;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text);
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.8);
  white-space: nowrap;
}

.shake-title-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.06cqh;
  padding: 0 0.18cqw;
  font-family: 'Oswald', sans-serif;
  font-size: 1.62cqh;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: lowercase;
  color: var(--neon);
}

.shake-title-bridge-line {
  display: block;
}

.dice-section .heading-primary {
  font-size: 8cqh;
}

.dice-section .heading-sub {
  margin-top: 0.25cqh;
}

.dice-section .heading-secondary {
  font-size: 3cqh;
}

.dice-deco {
  position: absolute;
  width: 7.2cqh;
  height: 7.2cqh;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
  pointer-events: none;
  z-index: 2;
}

.dice-deco--left {
  top: 0.15cqh;
  left: 1cqw;
  transform: rotate(-18deg);
}

.dice-deco--right {
  top: 0.15cqh;
  right: 1cqw;
  transform: rotate(22deg);
}

.dice-section--intro .dice-deco--left {
  animation: dice-deco-fall-left 0.65s cubic-bezier(0.22, 1.1, 0.36, 1) 0.05s both;
}

.dice-section--intro .dice-deco--right {
  animation: dice-deco-fall-right 0.65s cubic-bezier(0.22, 1.1, 0.36, 1) 0.12s both;
}

@keyframes dice-deco-fall-left {
  0% {
    opacity: 0;
    transform: translateY(-140%) rotate(-720deg) scale(0.45);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotate(-18deg) scale(1);
  }
}

@keyframes dice-deco-fall-right {
  0% {
    opacity: 0;
    transform: translateY(-140%) rotate(720deg) scale(0.45);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotate(22deg) scale(1);
  }
}

.dice-row {
  display: flex;
  justify-content: space-between;
  gap: 1.2cqw;
  padding: 0 0.5cqw;
}

.dice-number {
  flex: 1;
  height: 13cqh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  border: var(--neon-border);
  border-radius: 1.4cqh;
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: 9cqh;
  font-weight: 400;
  line-height: 1;
  color: var(--text);
  overflow: hidden;
}

.dice-number-value {
  display: block;
  transform-origin: center center;
}

.dice-number--fall {
  animation: dice-fall-in 0.55s cubic-bezier(0.22, 1.15, 0.36, 1) both;
}

.dice-number--rolling .dice-number-value {
  animation: dice-value-roll 0.07s linear infinite;
}

.dice-number--landed .dice-number-value {
  animation: dice-value-land 0.35s cubic-bezier(0.22, 1.2, 0.36, 1);
}

@keyframes dice-fall-in {
  0% {
    opacity: 0;
    transform: translateY(-130%) rotate(-540deg) scale(0.55);
  }

  65% {
    transform: translateY(6%) rotate(12deg) scale(1.04);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

@keyframes dice-value-roll {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  50% {
    transform: translateY(-8%) scale(0.92);
    opacity: 0.85;
  }
}

@keyframes dice-value-land {
  0% {
    transform: scale(1.35);
  }

  100% {
    transform: scale(1);
  }
}

/* ── Specials section ── */
.specials-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  margin-bottom: 0.5cqh;
}

.specials-list {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65cqh;
  overflow: hidden;
  padding: 0 0.5cqw;
  min-height: 0;
}

.special-item {
  display: flex;
  align-items: center;
  flex: 1 1 0;
  min-height: 0;
  background: rgba(0, 0, 0, 0.55);
  border: var(--neon-border);
  border-radius: 1.1cqh;
  overflow: visible;
}

.special-name {
  flex: 1;
  min-width: 0;
  padding: 0.5cqh 1.5cqw;
  font-family: 'Oswald', sans-serif;
  font-size: 3.4cqh;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--text);
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: auto;
}

.special-divider {
  width: 2px;
  align-self: stretch;
  background: var(--neon);
  flex-shrink: 0;
}

.special-price,
.special-price .price-dollar,
.special-price .price-cents,
.special-price .price-cents sup {
  color: #ffffff;
}

.special-price {
  display: flex;
  align-items: flex-start;
  padding: 0 1.5cqw;
  font-family: 'Oswald', sans-serif;
  font-size: 3.8cqh;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 12cqw;
  justify-content: flex-end;
}

.special-price .price-dollar {
  font-size: 3.2cqh;
}

.special-price .price-cents {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.6cqh;
  line-height: 1;
  margin-left: 1px;
  margin-top: 0.35cqh;
}

.special-price .price-cents sup {
  font-size: inherit;
  line-height: 1;
}

.special-price .price-cents-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  margin-top: 2px;
}

/* ── Footer ── */
.display-footer {
  flex: 0 0 auto;
  padding-top: 0.5cqh;
}

.footer-neon-line {
  height: 2px;
  background: var(--neon);
  margin-bottom: 1cqh;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2cqw;
}

.footer-location,
.footer-tagline {
  font-size: 1.5cqh;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.footer-location {
  text-align: left;
}

.footer-tagline {
  text-align: right;
}

.footer-logo {
  width: 13.2cqh;
  height: auto;
  mix-blend-mode: lighten;
}

/* ── Full-screen interstitial media ── */
.interstitial-overlay {
  position: absolute;
  inset: 0;
  z-index: 200;
  display: none;
  background: #000;
  overflow: hidden;
}

.interstitial-overlay.is-visible {
  display: block;
}

.interstitial-image,
.interstitial-video {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.interstitial-image {
  image-orientation: from-image;
}

.interstitial-image.is-landscape,
.interstitial-video.is-landscape {
  transform: translate(-50%, -50%) rotate(90deg);
  max-width: 177.78%;
  max-height: 56.25%;
}
