:root {
  --ink: #0a0712;
  --ink-soft: #15101f;
  --panel: #1a1528;
  --cream: #fff6dc;
  --muted: #c4bdd9;
  --violet: #a78bfa;
  --fuchsia: #e879f9;
  --coral: #ff6b4a;
  --paper: #f8f2df;
  --shadow: 0 22px 70px rgba(0, 0, 0, .35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--cream);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.is-locked {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

.ass-skip {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 40;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--cream);
  color: var(--ink);
  font-weight: 800;
}

.ass-skip:focus {
  transform: translateY(0);
}

.ass-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 246, 220, .12);
  background: rgba(10, 7, 18, .78);
  backdrop-filter: blur(18px);
}

.ass-header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.ass-brand {
  flex: 1 1 auto;
  min-width: 190px;
}

.ass-brand img {
  width: min(236px, 58vw);
  height: auto;
}

.ass-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 246, 220, .82);
  font-size: 14px;
  font-weight: 700;
}

.ass-nav a,
.ass-footer-links a {
  text-decoration: none;
}

.ass-nav a:hover,
.ass-footer-links a:hover,
.ass-legal a:hover,
.ass-footer-help a:hover {
  color: var(--violet);
}

.ass-btn,
.ass-spin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  color: #0d0614;
  background: linear-gradient(135deg, var(--fuchsia), var(--violet));
  box-shadow: 0 14px 34px rgba(147, 51, 234, .22);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.ass-btn:hover,
.ass-spin-btn:hover {
  transform: translateY(-1px);
}

.ass-btn-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
  white-space: nowrap;
}

.ass-btn-ghost {
  color: var(--cream);
  background: rgba(255, 246, 220, .08);
  border: 1px solid rgba(255, 246, 220, .22);
  box-shadow: none;
}

.ass-hero {
  position: relative;
  min-height: 88svh;
  padding-top: 76px;
  overflow: hidden;
  isolation: isolate;
}

.ass-hero-media,
.ass-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.ass-hero-media {
  background:
    radial-gradient(ellipse 80% 60% at 85% 40%, rgba(167, 139, 250, .28) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 70% 75%, rgba(232, 121, 249, .18) 0%, transparent 50%),
    radial-gradient(ellipse 40% 35% at 55% 20%, rgba(255, 107, 74, .22) 0%, transparent 45%),
    linear-gradient(135deg, #120a1a 0%, #0a0712 50%, #15101f 100%);
  background-size: cover;
  background-position: center right;
}

.ass-hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 7, 18, .96) 0%, rgba(10, 7, 18, .82) 34%, rgba(10, 7, 18, .32) 66%, rgba(10, 7, 18, .2) 100%),
    linear-gradient(0deg, rgba(10, 7, 18, .92) 0%, rgba(10, 7, 18, .18) 38%, rgba(10, 7, 18, .6) 100%);
}

.ass-hero-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(88svh - 76px);
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding: 48px 0 54px;
}

.ass-hero-copy {
  width: min(680px, 100%);
}

.ass-kicker {
  margin: 0 0 14px;
  color: var(--violet);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ass-hero h1,
.ass-section-head h2,
.ass-legal h1 {
  margin: 0;
  letter-spacing: 0;
  line-height: .95;
}

.ass-hero h1 {
  max-width: 760px;
  font-size: clamp(54px, 10vw, 126px);
}

.ass-hero-text {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 246, 220, .9);
  font-size: clamp(18px, 2vw, 23px);
}

.ass-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.ass-credit-strip {
  width: min(430px, 100%);
  min-height: 72px;
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid rgba(255, 246, 220, .18);
  background: rgba(10, 7, 18, .58);
  box-shadow: var(--shadow);
}

.ass-credit-strip span,
.ass-credit-strip em {
  color: rgba(255, 246, 220, .68);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.ass-credit-strip strong {
  grid-row: span 2;
  color: var(--fuchsia);
  font-size: 32px;
  line-height: 1;
}

.ass-fineprint {
  margin: 18px 0 0;
  color: rgba(255, 246, 220, .66);
  font-size: 14px;
  font-weight: 700;
}

.ass-proof {
  border-block: 1px solid rgba(255, 246, 220, .12);
  background: #16101f;
}

.ass-proof-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ass-proof span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 246, 220, .16);
  color: rgba(255, 246, 220, .82);
  background: rgba(255, 246, 220, .05);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.ass-lobby,
.ass-rules,
.ass-faq,
.ass-legal {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

.ass-section-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.ass-section-head-left {
  margin: 0;
  text-align: left;
}

.ass-section-head h2,
.ass-legal h1 {
  font-size: clamp(34px, 5vw, 64px);
}

.ass-section-head p:last-child,
.ass-legal p {
  color: rgba(255, 246, 220, .74);
  font-size: 17px;
}

.ass-filterbar {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 24px;
  display: flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 246, 220, .16);
  background: rgba(255, 246, 220, .06);
}

.ass-filterbar button {
  min-width: 86px;
  min-height: 38px;
  border: 0;
  color: rgba(255, 246, 220, .72);
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.ass-filterbar button.is-active {
  color: #0d0614;
  background: var(--cream);
}

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

.ass-game-card {
  min-height: 430px;
  display: grid;
  grid-template-rows: 190px 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 246, 220, .16);
  background: #16101f;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .2);
}

.ass-game-card[hidden] {
  display: none;
}

.ass-game-art {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 18px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 246, 220, .18), transparent 34%),
    linear-gradient(135deg, rgba(167, 139, 250, .3), rgba(255, 107, 74, .18));
}

.ass-game-art.has-cover {
  display: block;
  padding: 0;
  background: #16101f;
}

.ass-game-art.has-cover img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.ass-game-art span {
  min-width: 0;
  border: 1px solid rgba(255, 246, 220, .26);
  background:
    linear-gradient(180deg, rgba(255, 246, 220, .2), transparent 45%, rgba(0, 0, 0, .28)),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, .1) 0 24px, transparent 24px 48px);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, .22);
}

.ass-accent-coral .ass-game-art {
  background:
    radial-gradient(circle at 80% 18%, rgba(232, 121, 249, .2), transparent 36%),
    linear-gradient(135deg, rgba(255, 107, 74, .38), rgba(248, 242, 223, .12));
}

.ass-accent-fuchsia .ass-game-art {
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 246, 220, .28), transparent 34%),
    linear-gradient(135deg, rgba(232, 121, 249, .34), rgba(167, 139, 250, .16));
}

.ass-accent-cream .ass-game-art {
  background:
    radial-gradient(circle at 24% 24%, rgba(255, 107, 74, .2), transparent 30%),
    linear-gradient(135deg, rgba(255, 246, 220, .22), rgba(167, 139, 250, .14));
}

.ass-game-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ass-game-body p {
  margin: 0 0 10px;
  color: var(--violet);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ass-game-body h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.05;
}

.ass-game-body span {
  margin-top: 12px;
  color: rgba(255, 246, 220, .72);
}

.ass-spin-btn {
  width: 100%;
  margin-top: auto;
  text-decoration: none;
}

.ass-game-page {
  padding-top: 76px;
}

.ass-stage {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 86px;
}

.ass-stage-bar {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  color: rgba(255, 246, 220, .72);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.ass-back {
  color: var(--violet);
  text-decoration: none;
}

.ass-stage-head {
  max-width: 820px;
  margin-bottom: 24px;
}

.ass-stage-head h1 {
  margin: 0;
  font-size: clamp(44px, 8vw, 86px);
  line-height: .96;
  letter-spacing: 0;
}

.ass-stage-head p:last-child {
  color: rgba(255, 246, 220, .74);
  font-size: 18px;
}

.ass-game-frame {
  position: relative;
  width: 100%;
  min-height: 620px;
  border: 1px solid rgba(255, 246, 220, .18);
  background: #000;
  box-shadow: var(--shadow);
}

.ass-game-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.ass-game-notes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(255, 246, 220, .16);
  background: rgba(255, 246, 220, .06);
}

.ass-game-notes p {
  margin: 0;
  color: rgba(255, 246, 220, .72);
}

.ass-rules {
  width: 100%;
  max-width: none;
  background: var(--paper);
  color: var(--ink);
}

.ass-rules-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 48px;
  align-items: start;
}

.ass-rules .ass-kicker {
  color: #7c3aed;
}

.ass-rules .ass-section-head p:last-child,
.ass-rule-list p {
  color: #4c4660;
}

.ass-rule-list {
  display: grid;
  gap: 14px;
}

.ass-rule-list article {
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(10, 7, 18, .12);
}

.ass-rule-list strong {
  display: inline-block;
  margin-bottom: 14px;
  color: #7c3aed;
  font-size: 13px;
  font-weight: 900;
}

.ass-rule-list h3 {
  margin: 0;
  font-size: 24px;
}

.ass-rule-list p {
  margin-bottom: 0;
}

.ass-faq {
  padding-top: 80px;
}

.ass-faq details {
  max-width: 840px;
  margin: 10px auto;
  border: 1px solid rgba(255, 246, 220, .16);
  background: rgba(255, 246, 220, .06);
}

.ass-faq summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

.ass-faq details p {
  margin: 0;
  padding: 0 22px 22px;
  color: rgba(255, 246, 220, .72);
}

.ass-footer {
  border-top: 1px solid rgba(255, 246, 220, .12);
  background: #08060d;
}

.ass-footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
}

.ass-footer-logo {
  width: 236px;
  height: auto;
  margin-bottom: 14px;
}

.ass-footer p {
  color: rgba(255, 246, 220, .68);
}

.ass-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-content: start;
  justify-content: end;
  font-weight: 800;
}

.ass-footer-help,
.ass-footer-legal {
  grid-column: 1 / -1;
  margin: 0;
}

.ass-legal-page {
  padding-top: 76px;
}

.ass-legal {
  max-width: 880px;
}

.ass-legal h1 {
  margin-bottom: 18px;
}

.ass-legal h2 {
  margin: 34px 0 8px;
  font-size: 26px;
}

.ass-legal a,
.ass-footer-help a {
  color: var(--fuchsia);
  font-weight: 900;
}

.ass-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  grid-column: 1 / -1;
}

.ass-partners img {
  width: auto;
  height: 30px;
  max-width: 8.5rem;
}

.ass-agegate,
.ass-cookiebar {
  position: fixed;
  z-index: 60;
}

.ass-agegate {
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(10, 7, 18, .84);
  backdrop-filter: blur(14px);
}

.ass-agegate[hidden],
.ass-cookiebar[hidden] {
  display: none;
}

.ass-agegate-dialog {
  width: min(480px, 100%);
  padding: 30px;
  border: 1px solid rgba(255, 246, 220, .2);
  background: var(--ink-soft);
  box-shadow: var(--shadow);
}

.ass-agegate-dialog h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1;
}

.ass-agegate-dialog p {
  color: rgba(255, 246, 220, .74);
}

.ass-agegate-leave {
  display: block;
  margin-top: 14px;
  color: rgba(255, 246, 220, .72);
  font-weight: 800;
  text-align: center;
}

.ass-cookiebar {
  left: 16px;
  right: 16px;
  bottom: 16px;
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(255, 246, 220, .18);
  background: #16101f;
  box-shadow: var(--shadow);
}

.ass-cookiebar p {
  margin: 0;
  color: rgba(255, 246, 220, .74);
  font-size: 14px;
}

@media (max-width: 920px) {
  .ass-nav {
    display: none;
  }

  .ass-game-grid,
  .ass-rules-inner,
  .ass-footer-inner,
  .ass-game-notes {
    grid-template-columns: 1fr;
  }

  .ass-game-notes {
    display: grid;
  }

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

  .ass-footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .ass-header-inner {
    width: calc(100% - 22px);
    min-height: 66px;
    gap: 10px;
  }

  .ass-brand {
    min-width: 0;
  }

  .ass-brand img {
    width: min(190px, 56vw);
  }

  .ass-header .ass-btn-small {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .ass-hero {
    min-height: 86svh;
    padding-top: 66px;
  }

  .ass-game-page {
    padding-top: 66px;
  }

  .ass-hero-media {
    background-position: 62% center;
  }

  .ass-hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 7, 18, .98) 0%, rgba(10, 7, 18, .72) 72%, rgba(10, 7, 18, .42) 100%),
      linear-gradient(0deg, rgba(10, 7, 18, .95) 0%, rgba(10, 7, 18, .26) 48%, rgba(10, 7, 18, .68) 100%);
  }

  .ass-hero-inner {
    width: calc(100% - 28px);
    min-height: calc(86svh - 66px);
    padding: 36px 0 42px;
  }

  .ass-hero h1 {
    font-size: clamp(48px, 16vw, 82px);
  }

  .ass-hero-actions,
  .ass-cookiebar {
    align-items: stretch;
    flex-direction: column;
  }

  .ass-btn,
  .ass-spin-btn {
    width: 100%;
  }

  .ass-credit-strip {
    grid-template-columns: 1fr;
  }

  .ass-credit-strip strong {
    grid-row: auto;
  }

  .ass-proof-inner {
    justify-content: flex-start;
    padding: 18px 0;
  }

  .ass-lobby,
  .ass-rules,
  .ass-faq,
  .ass-legal,
  .ass-stage {
    width: calc(100% - 28px);
    padding: 58px 0;
  }

  .ass-game-frame {
    min-height: 540px;
  }

  .ass-rules {
    width: 100%;
  }

  .ass-rules-inner {
    width: calc(100% - 28px);
  }

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

  .ass-filterbar {
    width: 100%;
  }

  .ass-filterbar button {
    flex: 1 1 0;
    min-width: 0;
  }

  .ass-footer-inner {
    width: calc(100% - 28px);
  }
}
