@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Unbounded:wght@600;700;800&display=swap');

:root {
  --ink: #100e12;
  --ink-soft: #1a161f;
  --paper: #f6f1ea;
  --mute: #b7aea6;
  --coral: #ff6b45;
  --coral-deep: #e24a2a;
  --mint: #6ef0c5;
  --mint-deep: #2ec996;
  --line: rgba(246, 241, 234, 0.12);
  --glass: rgba(22, 18, 28, 0.55);
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--paper);
  background-color: var(--ink);
  background-image:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(255, 107, 69, 0.18), transparent 55%),
    radial-gradient(ellipse 55% 45% at 100% 10%, rgba(110, 240, 197, 0.12), transparent 50%),
    linear-gradient(165deg, #100e12 0%, #17131d 40%, #0c0a0e 100%);
  min-height: 100vh;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

a:hover,
a:focus-visible {
  color: var(--mint);
}

.site-header {
  position: relative;
  z-index: 20;
  padding: 1.1rem 0;
  background: rgba(26, 22, 31, 0.88);
  border-bottom: 1px solid rgba(255, 107, 69, 0.28);
  backdrop-filter: blur(12px);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  position: relative;
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--ink);
  background: conic-gradient(from 210deg, var(--coral), var(--mint), var(--coral));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: markSpin 12s linear infinite;
}

.brand-mark i {
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.brand-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--paper);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.brand-mark i {
  color: var(--coral-deep);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--paper);
}

.brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 0.28rem;
}

.main-nav .nav-link {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--paper);
  padding: 0.45rem 0.7rem;
  opacity: 0.78;
}

.main-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.15rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--coral), var(--mint));
  transition: transform 0.3s ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus-visible,
.main-nav .nav-link.active {
  color: var(--paper);
  opacity: 1;
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link:focus-visible::after,
.main-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 1px solid rgba(255, 107, 69, 0.45);
  border-radius: 0.85rem;
  padding: 0.5rem 0.7rem;
  background: rgba(255, 107, 69, 0.08);
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(110, 240, 197, 0.2);
}

.navbar-toggler-icon-custom {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  width: 1.35rem;
}

.navbar-toggler-icon-custom span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--paper);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 5.5rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(115deg, rgba(16, 14, 18, 0.92) 8%, rgba(16, 14, 18, 0.55) 48%, rgba(16, 14, 18, 0.78) 100%),
    url('../images/hero-bg.png') center / cover no-repeat;
  transform: scale(1.04);
  animation: heroDrift 20s ease-in-out infinite alternate;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(246, 241, 234, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 241, 234, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 30% 40%, black 20%, transparent 72%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  z-index: -1;
  pointer-events: none;
}

.hero-orb-a {
  width: min(34vw, 280px);
  height: min(34vw, 280px);
  top: 12%;
  right: 8%;
  background: radial-gradient(circle, rgba(255, 107, 69, 0.45), transparent 70%);
  animation: floatA 9s ease-in-out infinite;
}

.hero-orb-b {
  width: min(26vw, 220px);
  height: min(26vw, 220px);
  bottom: 10%;
  left: 6%;
  background: radial-gradient(circle, rgba(110, 240, 197, 0.35), transparent 70%);
  animation: floatB 11s ease-in-out infinite;
}

.hero-content {
  padding: 4.75rem 0 5.5rem;
}

.hero-brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  padding: 0.45rem 0.85rem 0.45rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(110, 240, 197, 0.35);
  background: rgba(16, 14, 18, 0.45);
  backdrop-filter: blur(8px);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint);
  animation: riseIn 0.7s ease both;
}

.hero-brand-chip i {
  width: 1.7rem;
  height: 1.7rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(110, 240, 197, 0.18);
  color: var(--mint);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 11ch;
  margin-bottom: 1.35rem;
  color: var(--paper);
  animation: riseIn 0.85s ease 0.08s both;
}

.hero-title span {
  display: inline-block;
  background: linear-gradient(120deg, var(--coral) 0%, #ffb089 45%, var(--mint) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  font-size: 1.12rem;
  color: var(--mute);
  max-width: 34rem;
  margin-bottom: 2rem;
  animation: riseIn 0.85s ease 0.16s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: riseIn 0.85s ease 0.24s both;
}

.btn-primary-ps {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--coral);
  color: #1a0d0a;
  border: none;
  border-radius: 1rem;
  padding: 0.95rem 1.4rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 40px rgba(255, 107, 69, 0.28);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.btn-primary-ps:hover,
.btn-primary-ps:focus-visible {
  color: #1a0d0a;
  background: #ff825f;
  transform: translateY(-3px);
}

.btn-ghost-ps {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(246, 241, 234, 0.22);
  border-radius: 1rem;
  padding: 0.95rem 1.4rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
}

.btn-ghost-ps:hover,
.btn-ghost-ps:focus-visible {
  color: var(--ink);
  background: var(--mint);
  border-color: var(--mint);
}

.hero-stage {
  position: relative;
  margin-top: 1rem;
  min-height: 22rem;
  animation: riseIn 1s ease 0.2s both;
}

.hero-frame {
  position: absolute;
  inset: 8% 6% 6% 10%;
  border: 1px solid rgba(246, 241, 234, 0.14);
  border-radius: 2rem 0.75rem 2rem 0.75rem;
  background: linear-gradient(160deg, rgba(255, 107, 69, 0.12), rgba(110, 240, 197, 0.06));
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.hero-frame::before {
  content: '';
  position: absolute;
  width: 160%;
  height: 160%;
  top: -30%;
  left: -30%;
  background: conic-gradient(from 120deg, transparent 0deg, rgba(255, 107, 69, 0.2), transparent 90deg, rgba(110, 240, 197, 0.18), transparent 180deg);
  animation: frameSweep 10s linear infinite;
}

.hero-card {
  position: absolute;
  width: min(78%, 290px);
  padding: 1.2rem 1.25rem;
  border-radius: 1.25rem;
  background: rgba(16, 14, 18, 0.78);
  border: 1px solid rgba(246, 241, 234, 0.1);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
}

.hero-card-main {
  top: 18%;
  left: 4%;
  z-index: 2;
}

.hero-card-side {
  right: 0;
  bottom: 8%;
  z-index: 3;
  width: min(70%, 240px);
  border-color: rgba(110, 240, 197, 0.25);
  animation: floatB 8s ease-in-out infinite;
}

.hero-card-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.7rem;
}

.hero-card-side .hero-card-label {
  color: var(--mint);
}

.hero-card h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
  line-height: 1.25;
}

.hero-card p {
  margin: 0;
  color: var(--mute);
  font-size: 0.92rem;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 107, 69, 0.12);
  color: #ffc2b2;
}

.hero-pill.mint {
  background: rgba(110, 240, 197, 0.12);
  color: var(--mint);
}

.games-section {
  position: relative;
  padding: 5rem 0 5.5rem;
  border-top: 1px solid var(--line);
}

.games-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(255, 107, 69, 0.1), transparent 60%),
    radial-gradient(ellipse 40% 35% at 5% 80%, rgba(110, 240, 197, 0.08), transparent 55%);
}

.games-head {
  position: relative;
  max-width: 40rem;
  margin-bottom: 2.75rem;
}

.games-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
}

.games-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 0.9rem;
}

.games-lead {
  margin: 0;
  color: var(--mute);
  font-size: 1.05rem;
}

.game-tile {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem 0.6rem 1.5rem 0.6rem;
  overflow: hidden;
  background: rgba(22, 18, 28, 0.72);
  border: 1px solid rgba(246, 241, 234, 0.1);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.game-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 69, 0.4);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35);
}

.game-media {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.game-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(16, 14, 18, 0.75) 100%);
  pointer-events: none;
}

.game-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-tile:hover .game-media img {
  transform: scale(1.06);
}

.game-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.25rem 1.3rem 1.4rem;
  flex: 1;
}

.game-type {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
}

.game-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.game-name a:hover,
.game-name a:focus-visible {
  color: var(--mint);
}

.game-copy {
  margin: 0;
  color: var(--mute);
  font-size: 0.94rem;
  flex: 1;
}

.game-play {
  margin-top: 0.55rem;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.15rem;
  background: var(--coral);
  color: #1a0d0a;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 0.85rem;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.game-play:hover,
.game-play:focus-visible {
  color: #1a0d0a;
  background: #ff825f;
  transform: translateY(-2px);
}

.content-section {
  position: relative;
  padding: 5rem 0;
  border-top: 1px solid var(--line);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
}

.section-kicker.coral {
  color: var(--coral);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.section-lead {
  color: var(--mute);
  font-size: 1.08rem;
  margin-bottom: 0;
}

.section-center {
  max-width: 42rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.content-block p {
  color: var(--mute);
  font-size: 1.02rem;
  margin-bottom: 1.1rem;
}

.content-block p:last-of-type {
  margin-bottom: 1.35rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--coral);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--mint);
}

.info-panel {
  height: 100%;
  padding: 1.6rem 1.45rem;
  border-radius: 1.35rem 0.55rem;
  background: rgba(22, 18, 28, 0.72);
  border: 1px solid rgba(246, 241, 234, 0.1);
}

.info-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 0.85rem;
  background: rgba(255, 107, 69, 0.14);
  color: var(--coral);
}

.info-icon.mint {
  background: rgba(110, 240, 197, 0.14);
  color: var(--mint);
}

.info-panel h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.info-panel p {
  margin: 0;
  color: var(--mute);
  font-size: 0.98rem;
}

.disclaimer-shell {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-radius: 1.75rem 0.75rem;
  background:
    linear-gradient(145deg, rgba(255, 107, 69, 0.1), rgba(110, 240, 197, 0.06)),
    rgba(16, 14, 18, 0.65);
  border: 1px solid rgba(255, 107, 69, 0.28);
}

.guidance-box {
  padding: 1.75rem 1.55rem;
  border-radius: 1.5rem;
  background: rgba(22, 18, 28, 0.85);
  border: 1px solid rgba(110, 240, 197, 0.22);
}

.guidance-box h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}

.guidance-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.guidance-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--mute);
  font-size: 0.98rem;
}

.guidance-list i {
  color: var(--mint);
  margin-top: 0.2rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 1.75rem;
  color: var(--mute);
  font-size: 0.92rem;
  background:
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(255, 107, 69, 0.08), transparent 55%),
    rgba(0, 0, 0, 0.35);
}

.footer-brand {
  margin-bottom: 1.1rem;
}

.footer-about {
  margin: 0;
  max-width: 28rem;
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  color: var(--mute);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--mint);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.15rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.55rem;
  border-radius: 0.75rem;
  background: rgba(246, 241, 234, 0.06);
  border: 1px solid rgba(246, 241, 234, 0.1);
}

.footer-badge img {
  width: auto;
  max-height: 40px;
  object-fit: contain;
}

.footer-disclaimers {
  margin-top: 2.25rem;
  padding: 1.35rem 1.4rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 107, 69, 0.22);
  background: rgba(255, 107, 69, 0.06);
  display: grid;
  gap: 0.9rem;
}

.footer-disclaimers p {
  margin: 0;
  color: #d8cfc6;
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-disclaimers i {
  color: var(--coral);
  margin-right: 0.35rem;
}

.footer-bottom {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.2%, -0.8%, 0);
  }
}

@keyframes floatA {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-18px, 22px, 0);
  }
}

@keyframes floatB {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(14px, -16px, 0);
  }
}

@keyframes frameSweep {
  to {
    transform: rotate(360deg);
  }
}

@keyframes markSpin {
  to {
    filter: hue-rotate(360deg);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .main-nav {
    margin-top: 1rem;
    padding: 0.85rem;
    border-radius: 1.1rem;
    background: rgba(22, 18, 28, 0.96);
    border: 1px solid rgba(255, 107, 69, 0.18);
  }

  .main-nav .nav-link {
    display: block;
    padding: 0.85rem 1rem;
  }

  .main-nav .nav-link::after {
    left: 1rem;
    right: auto;
    width: 2rem;
    bottom: 0.55rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 3.25rem 0 4.25rem;
  }

  .hero-title {
    max-width: none;
  }

  .hero-stage {
    min-height: 18rem;
    margin-top: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .hero-stage {
    min-height: 16.5rem;
  }

  .hero-card-main {
    top: 8%;
    left: 0;
    width: 88%;
  }

  .hero-card-side {
    width: 78%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media,
  .hero-orb,
  .hero-frame::before,
  .brand-mark,
  .hero-card-side,
  .hero-brand-chip,
  .hero-title,
  .hero-text,
  .hero-actions,
  .hero-stage {
    animation: none;
  }
}
.scroll-locked {
  overflow: hidden !important;
  height: 100%;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 107, 69, 0.22), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(110, 240, 197, 0.16), transparent 42%),
    rgba(8, 6, 10, 0.86);
  backdrop-filter: blur(10px);
}

.age-gate.is-hidden {
  display: none;
}

.age-gate-card {
  width: min(100%, 460px);
  padding: 2rem 1.6rem 1.7rem;
  border-radius: 1.5rem 0.7rem;
  background: linear-gradient(160deg, rgba(34, 28, 40, 0.98), rgba(16, 14, 18, 0.98));
  border: 1px solid rgba(255, 107, 69, 0.35);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  text-align: left;
}

.age-gate-badge {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 0.9rem;
  margin-bottom: 1rem;
  background: rgba(255, 107, 69, 0.16);
  color: var(--coral);
  font-size: 1.2rem;
}

.age-gate-card h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
  color: var(--paper);
}

.age-gate-card p {
  color: var(--mute);
  font-size: 0.96rem;
  margin-bottom: 0.85rem;
}

.age-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1.2rem 0 1.25rem;
  color: #e6ddd4;
  font-size: 0.92rem;
  cursor: pointer;
}

.age-check input {
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--coral);
  flex-shrink: 0;
}

.age-accept {
  width: 100%;
  border: none;
  border-radius: 0.95rem;
  padding: 0.95rem 1.1rem;
  background: var(--coral);
  color: #1a0d0a;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
}

.age-accept:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.age-accept:not(:disabled):hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3500;
}

.cookie-bar.is-hidden {
  display: none;
}

.cookie-bar-inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 1.1rem;
  background: rgba(22, 18, 28, 0.96);
  border: 1px solid rgba(110, 240, 197, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.cookie-bar-inner p {
  margin: 0;
  flex: 1 1 280px;
  color: var(--mute);
  font-size: 0.92rem;
}

.cookie-bar-inner a {
  color: var(--mint);
  text-decoration: underline;
}

.cookie-accept {
  border: none;
  border-radius: 0.85rem;
  padding: 0.75rem 1.1rem;
  background: var(--mint);
  color: #06251c;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

.cookie-accept:hover {
  filter: brightness(1.05);
}

.page-hero {
  padding: 4rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 1rem;
}

.page-hero p {
  max-width: 46rem;
  color: var(--mute);
  font-size: 1.08rem;
  margin-bottom: 0;
}

.page-content {
  padding: 3rem 0 4.5rem;
}

.page-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 2rem 0 0.9rem;
}

.page-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1.5rem 0 0.7rem;
}

.page-content p,
.page-content li {
  color: var(--mute);
  font-size: 1.02rem;
}

.page-content ul,
.page-content ol {
  padding-left: 1.2rem;
  margin-bottom: 1.2rem;
}

.page-content li + li {
  margin-top: 0.45rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.75rem;
  padding: 0.9rem 1.2rem;
  border-radius: 0.95rem;
  background: rgba(255, 107, 69, 0.12);
  border: 1px solid rgba(255, 107, 69, 0.28);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-email:hover {
  color: var(--mint);
}

.faq-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin-top: 0;
  color: var(--paper);
}

.game-play-section {
  padding: 2.5rem 0 4rem;
}

.game-shell {
  position: relative;
  border-radius: 1.6rem 0.7rem;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 69, 0.28);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 107, 69, 0.18), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(110, 240, 197, 0.14), transparent 42%),
    #141018;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
  padding: 1.4rem;
}

.game-shell-banner {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 40px rgba(255, 107, 69, 0.18);
}

.game-status {
  min-height: 1.5rem;
  margin: 0.85rem 0 0;
  color: var(--mint);
  font-weight: 600;
  text-align: center;
}

.game-disclaimer {
  margin-top: 1.75rem;
  padding: 1.35rem 1.4rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 107, 69, 0.25);
  background: rgba(255, 107, 69, 0.07);
}

.game-disclaimer h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
  color: var(--paper);
}

.game-disclaimer p {
  margin: 0;
  color: var(--mute);
  font-size: 0.95rem;
}

.slot-machine {
  max-width: 520px;
  margin: 0 auto;
}

.slot-reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, #221c28, #100e14);
  border: 1px solid rgba(246, 241, 234, 0.12);
  box-shadow: inset 0 0 40px rgba(255, 107, 69, 0.12);
}

.slot-reel {
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  border-radius: 0.9rem;
  background: radial-gradient(circle at 50% 30%, rgba(110, 240, 197, 0.16), transparent 55%), #0d0b10;
  border: 1px solid rgba(110, 240, 197, 0.25);
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--paper);
  text-shadow: 0 0 18px rgba(110, 240, 197, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.slot-reel.is-spinning {
  animation: reelShake 0.12s linear infinite;
  box-shadow: 0 0 24px rgba(255, 107, 69, 0.35);
}

.slot-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.play-btn {
  border: none;
  border-radius: 0.95rem;
  padding: 0.9rem 1.35rem;
  background: var(--coral);
  color: #1a0d0a;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 28px rgba(255, 107, 69, 0.35);
}

.play-btn:hover:not(:disabled) {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.play-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.play-btn.ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(246, 241, 234, 0.22);
  box-shadow: none;
}

.bj-table {
  max-width: 640px;
  margin: 0 auto;
  padding: 1.2rem;
  border-radius: 1.25rem;
  background: radial-gradient(circle at center, #1e4d3d 0%, #123529 55%, #0c1f1a 100%);
  border: 1px solid rgba(110, 240, 197, 0.28);
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.35), 0 0 40px rgba(110, 240, 197, 0.12);
}

.bj-row {
  min-height: 110px;
  margin-bottom: 1rem;
}

.bj-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 0.55rem;
  font-weight: 700;
}

.bj-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  min-height: 88px;
}

.bj-card {
  width: 58px;
  height: 84px;
  border-radius: 0.55rem;
  background: linear-gradient(160deg, #fff, #f0ebe4);
  color: #1a1210;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  animation: cardIn 0.35s ease both;
}

.bj-card.red {
  color: #d33b2f;
}

.bj-card.back {
  background: linear-gradient(145deg, #ff6b45, #2ec996);
  color: transparent;
}

.bj-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.wheel-wrap {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

.wheel-stage {
  position: relative;
  width: min(100%, 340px);
  margin: 0 auto 1.2rem;
  aspect-ratio: 1;
}

.wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 6px solid rgba(246, 241, 234, 0.2);
  background: conic-gradient(
    #ff6b45 0deg 30deg,
    #1a161f 30deg 60deg,
    #6ef0c5 60deg 90deg,
    #1a161f 90deg 120deg,
    #ff6b45 120deg 150deg,
    #1a161f 150deg 180deg,
    #6ef0c5 180deg 210deg,
    #1a161f 210deg 240deg,
    #ff6b45 240deg 270deg,
    #1a161f 270deg 300deg,
    #6ef0c5 300deg 330deg,
    #1a161f 330deg 360deg
  );
  box-shadow: 0 0 40px rgba(255, 107, 69, 0.35), inset 0 0 30px rgba(0, 0, 0, 0.4);
  transition: transform 4s cubic-bezier(0.12, 0.75, 0.12, 1);
}

.wheel-pointer {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 22px solid var(--paper);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.45));
  z-index: 2;
}

.wheel-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, #ff6b45 70%);
  box-shadow: 0 0 20px rgba(255, 107, 69, 0.55);
  z-index: 2;
}

@keyframes reelShake {
  from { transform: translateY(-2px); }
  to { transform: translateY(2px); }
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(10px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 575.98px) {
  .cookie-bar {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
  }

  .bj-card {
    width: 48px;
    height: 72px;
    font-size: 0.92rem;
  }
}
