:root {
  --bg-main: #0a0908;
  --bg-deep: #141110;
  --surface: rgba(20, 15, 12, 0.82);
  --surface-strong: #1b1613;
  --text: #f3eee7;
  --muted: #c2b5a8;
  --line: rgba(255, 255, 255, 0.08);
  --ember: #ff7a18;
  --lava: #ff3b2f;
  --ash: #d9c5b1;
  --smoke: #9b8f86;
  --glow: rgba(255, 122, 24, 0.25);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.45);
  --shadow-hot: 0 0 35px rgba(255, 122, 24, 0.18);
  --container: min(1180px, 92vw);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.6), rgba(8, 7, 6, 0.9)),
    url("../img/background.jpg") center / cover fixed no-repeat,
    radial-gradient(circle at 15% 20%, rgba(255, 122, 24, 0.12), transparent 38%),
    radial-gradient(circle at 80% 15%, rgba(255, 59, 47, 0.16), transparent 42%),
    var(--bg-main);
  min-height: 100vh;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.35;
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 10%, rgba(255, 122, 24, 0.12), transparent 45%);
  z-index: -1;
  pointer-events: none;
}

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Oswald", "Segoe UI", sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.15;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-shell {
  width: 100%;
  overflow: clip;
  position: relative;
}

.ambient-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 70%, rgba(255, 122, 24, 0.18), transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(255, 59, 47, 0.2), transparent 50%);
  animation: ashDrift 18s ease-in-out infinite alternate;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.top-badge {
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fef5ea;
  background: linear-gradient(90deg, rgba(255, 122, 24, 0.2), rgba(255, 59, 47, 0.2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 9, 8, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: url("../img/logo.png") center / cover no-repeat;
  box-shadow: 0 0 0 1px rgba(255, 122, 24, 0.3), 0 0 20px rgba(255, 59, 47, 0.25);
}

.brand-text {
  font-family: "Oswald", "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.05rem;
}

.brand-subtext {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-top: 0.1rem;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(14, 12, 10, 0.7);
  color: #fff;
  border-radius: 12px;
  padding: 0.55rem 0.9rem;
  font-family: "Oswald", "Segoe UI", sans-serif;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.main-nav a {
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  color: #f2e9df;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: 0.22s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 122, 24, 0.18);
  box-shadow: 0 0 0 1px rgba(255, 122, 24, 0.35) inset;
}

.main-nav a.current {
  background: linear-gradient(120deg, rgba(255, 122, 24, 0.28), rgba(255, 59, 47, 0.28));
  box-shadow: 0 0 0 1px rgba(255, 59, 47, 0.35) inset;
}

.main {
  padding-bottom: 4.4rem;
}

.hero {
  margin-top: 1.6rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
  background: linear-gradient(150deg, rgba(15, 12, 10, 0.95), rgba(10, 8, 6, 0.9));
  box-shadow: var(--shadow-soft);
}

.parallax-hero {
  background:
    linear-gradient(180deg, rgba(10, 7, 6, 0.7), rgba(10, 8, 6, 0.95)),
    url("../img/main.jpg") center / cover no-repeat;
  background-attachment: fixed;
}

.hero-inner {
  padding: clamp(2rem, 4vw, 4rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.6rem, 3vw, 2.6rem);
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  margin-bottom: 0.9rem;
}

.hero p {
  color: #e5d6c6;
  font-size: clamp(1.02rem, 2.2vw, 1.25rem);
  max-width: 60ch;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #f6e9d8;
  margin-bottom: 1rem;
}

.kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--ember), var(--lava));
}

.actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.button,
button,
input[type="submit"] {
  border: none;
  border-radius: 12px;
  font-family: "Oswald", "Segoe UI", sans-serif;
  letter-spacing: 0.08em;
  font-size: 0.88rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.25s ease;
}

.button {
  padding: 0.8rem 1.1rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
}

.button-primary {
  color: #1b0d06;
  background: linear-gradient(120deg, var(--ember), var(--lava));
  box-shadow: 0 12px 26px rgba(255, 122, 24, 0.35);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(255, 122, 24, 0.4);
}

.button-secondary {
  color: #fff;
  background: linear-gradient(120deg, rgba(255, 209, 102, 0.9), rgba(255, 122, 24, 0.9));
  box-shadow: 0 10px 22px rgba(255, 209, 102, 0.25);
}

.button-ghost {
  color: #f1e6d8;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.button-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 24, 0.4);
}

.hero-panel {
  border-radius: 18px;
  border: 1px solid rgba(255, 122, 24, 0.25);
  padding: 1.2rem;
  background: rgba(16, 12, 10, 0.72);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 122, 24, 0.08), transparent 50%);
  pointer-events: none;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.stat {
  border-radius: 14px;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 8, 6, 0.6);
  box-shadow: var(--shadow-hot);
}

.stat strong {
  display: block;
  font-size: 1.5rem;
}

.stat span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  overflow-wrap: anywhere;
}

.section {
  margin-top: clamp(2.4rem, 4.5vw, 4.6rem);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.section-head p {
  color: var(--muted);
  max-width: 62ch;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 122, 24, 0.4);
}

.card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
}

.card p {
  color: #dfd2c5;
}

.game-thumb {
  width: 100%;
  margin: 0.2rem 0 0.75rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-height: 220px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 122, 24, 0.15);
  border: 1px solid rgba(255, 122, 24, 0.35);
  color: #ffe6cf;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
}

.callout {
  border-radius: 16px;
  padding: 1rem 1.1rem;
  background: rgba(255, 122, 24, 0.1);
  border: 1px solid rgba(255, 122, 24, 0.25);
  color: #ffe8d2;
}

.list-check li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.55rem;
  color: #e2d6cb;
}

.list-check li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: #ffb066;
}

.notice {
  border-radius: 14px;
  border: 1px solid rgba(255, 209, 102, 0.35);
  background: rgba(255, 209, 102, 0.08);
  padding: 0.95rem 1rem;
  color: #ffe8c6;
}

.notice strong {
  color: #fff4de;
}

.faq {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 10, 9, 0.8);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  color: #f3ebe2;
  padding: 0.9rem 1rem;
  font-weight: 600;
  font-size: 0.98rem;
}

.faq-item button::after {
  content: "+";
  float: right;
  color: #ffb066;
}

.faq-item button[aria-expanded="true"]::after {
  content: "-";
}

.faq-item .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  color: #d8ccc0;
  padding: 0 1rem;
}

.faq-item .answer p {
  padding-bottom: 1rem;
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 9, 8, 0.7);
  color: #f7efe6;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(255, 122, 24, 0.6);
  box-shadow: 0 0 0 2px rgba(255, 122, 24, 0.2);
}

.inline-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.inline-stats .stat {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.85rem;
  background: rgba(10, 8, 7, 0.6);
}

.inline-stats .stat strong {
  display: block;
  font-size: 1.55rem;
}

.inline-stats .stat span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1rem;
}

.legal-nav {
  position: sticky;
  top: 96px;
  align-self: start;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(12, 9, 8, 0.85);
  padding: 0.9rem;
}

.legal-nav a {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  color: #eadfd2;
}

.legal-nav a:hover {
  background: rgba(255, 122, 24, 0.15);
}

.legal-content {
  display: grid;
  gap: 1rem;
}

.legal-content article {
  background: rgba(12, 9, 8, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1rem;
}

.legal-content article h2 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.legal-content article p,
.legal-content article li {
  color: #d6c9bd;
}

.legal-content article ul {
  list-style: disc;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.65rem 0.7rem;
  text-align: left;
}

.table th {
  background: rgba(255, 122, 24, 0.18);
  font-family: "Oswald", "Segoe UI", sans-serif;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.game-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: start;
}

.game-panel {
  background: rgba(12, 9, 8, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.game-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.game-sidebar {
  display: grid;
  gap: 1rem;
}

.log {
  max-height: 240px;
  overflow: auto;
  display: grid;
  gap: 0.5rem;
}

.log p {
  border-left: 3px solid rgba(255, 122, 24, 0.5);
  padding-left: 0.55rem;
  color: #eadfd2;
  font-size: 0.9rem;
}

#ember-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
}

.ember-tile {
  aspect-ratio: 1;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(160deg, rgba(26, 18, 14, 0.9), rgba(10, 8, 7, 0.9));
  display: grid;
  place-items: center;
  font-family: "Oswald", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: #f7efe6;
  text-shadow: 0 0 12px rgba(255, 122, 24, 0.3);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  user-select: none;
  cursor: pointer;
}

.ember-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 24, 0.6);
}

.ember-tile.active {
  border-color: rgba(255, 209, 102, 0.9);
  box-shadow: 0 0 0 2px rgba(255, 209, 102, 0.18), 0 0 20px rgba(255, 209, 102, 0.3);
}

.ember-tile.matched {
  animation: emberPulse 0.6s ease;
}

@keyframes emberPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 122, 24, 0.6);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(255, 122, 24, 0);
  }
}

.slot-machine {
  display: grid;
  gap: 0.8rem;
}

.slot-reels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.reel {
  --slot-cell: 68px;
  --slot-start: -204px;
  --slot-loop-end: calc(var(--slot-cell) * -12);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(160deg, rgba(18, 12, 10, 0.95), rgba(9, 7, 6, 0.95));
  height: calc(var(--slot-cell) * 3);
  overflow: hidden;
  position: relative;
}

.reel-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  display: grid;
  grid-auto-rows: var(--slot-cell);
  transform: translateY(0);
  will-change: transform;
}

.reel.spinning .reel-track {
  animation: spinLoop 0.75s linear infinite;
}

.slot-cell {
  display: grid;
  place-items: center;
  height: var(--slot-cell);
  font-family: "Oswald", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: #f7efe6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
}

.slot-icon {
  width: 34px;
  height: 34px;
  display: block;
}

.slot-icon path,
.slot-icon circle,
.slot-icon polygon,
.slot-icon rect {
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.2;
}

.slot-cell.core {
  color: #ffdd9a;
}

.slot-cell.ember {
  color: #ffb066;
}

.slot-cell.ash {
  color: #d9c5b1;
}

.slot-cell.stone {
  color: #b7a79c;
}

.reel-window {
  position: absolute;
  inset: var(--slot-cell) 0;
  border-top: 2px solid rgba(255, 209, 102, 0.7);
  border-bottom: 2px solid rgba(255, 209, 102, 0.7);
  pointer-events: none;
  box-shadow: inset 0 0 18px rgba(255, 122, 24, 0.2);
}

@keyframes spinLoop {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(var(--slot-loop-end));
  }
}

.heat-bar {
  position: relative;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.heat-target {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18%;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(255, 209, 102, 0.7), rgba(255, 122, 24, 0.7));
  box-shadow: 0 0 18px rgba(255, 122, 24, 0.4);
}

.heat-marker {
  position: absolute;
  top: -6px;
  width: 12px;
  height: 30px;
  border-radius: 6px;
  background: #fff3e0;
  box-shadow: 0 0 10px rgba(255, 209, 102, 0.7);
}

.heat-panel {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.footer {
  margin-top: 3.6rem;
  padding: 1.4rem 0 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 7, 6, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.1rem;
  align-items: start;
}

.footer h4 {
  font-size: 0.95rem;
  margin-bottom: 0.42rem;
}

.footer-logo {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  margin-bottom: 0.55rem;
  object-fit: cover;
}

.footer p,
.footer a,
.footer li {
  color: #c8bdb0;
  font-size: 0.95rem;
}

.footer ul {
  display: grid;
  gap: 0.28rem;
}

.footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9f9287;
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ashDrift {
  0% {
    transform: translateY(-10px) scale(1);
  }
  100% {
    transform: translateY(10px) scale(1.03);
  }
}

@media (max-width: 1100px) {
  .top-badge {
    font-size: 9px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }

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

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

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

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }

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

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 4vw;
    right: 4vw;
    background: rgba(12, 9, 8, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 0.7rem;
    display: none;
    box-shadow: var(--shadow-soft);
  }

  .main-nav.open {
    display: grid;
    gap: 0.2rem;
  }

  .grid.three,
  .grid.two,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .inline-stats {
    grid-template-columns: 1fr;
  }

  #ember-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .slot-reels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .hero-inner {
    padding: 1.3rem;
  }

  .button {
    width: 100%;
  }

  #ember-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reel {
    --slot-cell: 56px;
    --slot-start: -168px;
    --slot-loop-end: calc(var(--slot-cell) * -12);
  }

  .footer-bottom {
    flex-direction: column;
  }
}
