@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Unbounded:wght@600;700;800&display=swap");

:root {
  --night: #12141a;
  --graphite: #1c1f27;
  --fog: #d7dde8;
  --snow: #f3f5f8;
  --lime: #d6ff4b;
  --lime-deep: #b6e024;
  --ice: #7ad7ff;
  --mute: #9aa3b5;
  --line: rgba(255, 255, 255, 0.1);
  --font-display: "Unbounded", sans-serif;
  --font-body: "Manrope", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--snow);
  background: var(--night);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  background: var(--lime);
  color: #12141a;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.55rem 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #12141a;
  color: var(--lime);
  border-radius: 0.35rem;
  padding: 0.18rem 0.55rem;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.topbar a {
  font-weight: 800;
  border-bottom: 2px solid currentColor;
  transition: opacity 0.25s var(--ease);
}

.topbar a:hover {
  opacity: 0.7;
}

.site-header {
  background: rgba(18, 20, 26, 0.92);
  border-bottom: 1px solid var(--line);
}

.navbar-ppf {
  min-height: 4.75rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--snow);
}

.brand-mark {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: #12141a;
  border: 2px solid transparent;
  box-shadow: 0 0 0 4px rgba(214, 255, 75, 0.15);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.brand:hover .brand-mark {
  transform: rotate(-8deg) scale(1.04);
  box-shadow: 0 0 0 6px rgba(214, 255, 75, 0.22);
}

.brand-mark i {
  font-size: 1rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.brand-text small {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 0.15rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-links a {
  position: relative;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--fog);
  padding: 0.55rem 0.85rem;
  transition: color 0.25s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.2rem;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 0.55rem;
  background: var(--lime) !important;
  color: #12141a !important;
  border-radius: 0.45rem;
  padding: 0.65rem 1.05rem !important;
  box-shadow: 4px 4px 0 rgba(122, 215, 255, 0.35);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  color: #12141a !important;
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 rgba(122, 215, 255, 0.45);
}

.menu-toggle {
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: var(--graphite);
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle:focus {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 1050;
  pointer-events: none;
  visibility: hidden;
}

.mobile-panel.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.mobile-panel.is-open .mobile-backdrop {
  opacity: 1;
}

.mobile-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(90vw, 22rem);
  height: 100%;
  background: linear-gradient(180deg, #171a22 0%, #10131a 100%);
  border-left: 1px solid var(--line);
  transform: translateX(104%);
  transition: transform 0.35s var(--ease);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-panel.is-open .mobile-drawer {
  transform: translateX(0);
}

.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-close {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: transparent;
  color: var(--snow);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1rem;
  border-radius: 0.65rem;
  font-weight: 700;
  color: var(--fog);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: #fff;
  border-color: rgba(214, 255, 75, 0.35);
  background: rgba(214, 255, 75, 0.08);
}

.mobile-nav a i {
  color: var(--lime);
  font-size: 0.8rem;
}

.hero {
  position: relative;
  min-height: calc(100vh - 7.5rem);
  min-height: calc(100svh - 7.5rem);
  display: grid;
  align-items: stretch;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: zoomSoft 20s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(12, 14, 20, 0.92) 0%, rgba(12, 14, 20, 0.72) 38%, rgba(12, 14, 20, 0.35) 68%, rgba(12, 14, 20, 0.55) 100%),
    linear-gradient(0deg, rgba(12, 14, 20, 0.7) 0%, transparent 42%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(214, 255, 75, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 255, 75, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: clamp(3.25rem, 9vw, 7rem) 0;
}

.hero-frame {
  max-width: 40rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(214, 255, 75, 0.28);
  background: rgba(18, 20, 26, 0.42);
  backdrop-filter: blur(10px);
  box-shadow: 12px 12px 0 rgba(122, 215, 255, 0.18);
  animation: slideUp 0.9s var(--ease) both;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1rem;
}

.hero-kicker i {
  color: var(--ice);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 1.1rem;
  color: #fff;
}

.hero h1 span {
  display: inline-block;
  color: var(--lime);
}

.hero-lead {
  margin: 0 0 1.75rem;
  max-width: 32rem;
  color: rgba(243, 245, 248, 0.84);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn-ppf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.1rem;
  padding: 0.7rem 1.25rem;
  font-weight: 800;
  border: 0;
  border-radius: 0.45rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.btn-ppf:hover {
  transform: translate(-2px, -2px);
}

.btn-primary-ppf {
  background: var(--lime);
  color: #12141a;
  box-shadow: 5px 5px 0 rgba(122, 215, 255, 0.4);
}

.btn-primary-ppf:hover {
  color: #12141a;
  background: var(--lime-deep);
}

.btn-ghost-ppf {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost-ppf:hover {
  color: #fff;
  border-color: var(--lime);
  box-shadow: 5px 5px 0 rgba(214, 255, 75, 0.2);
}

.hero-meta {
  position: absolute;
  z-index: 2;
  right: max(1.25rem, 5vw);
  bottom: max(1.5rem, 4vw);
  display: flex;
  gap: 0.65rem;
  animation: slideUp 1s var(--ease) 0.2s both;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(18, 20, 26, 0.55);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--fog);
}

.hero-meta i {
  color: var(--ice);
}

.games-section {
  position: relative;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background:
    radial-gradient(700px 320px at 10% 0%, rgba(214, 255, 75, 0.08), transparent 60%),
    radial-gradient(700px 320px at 90% 100%, rgba(122, 215, 255, 0.08), transparent 60%),
    #151821;
  border-top: 1px solid var(--line);
}

.games-head {
  max-width: 38rem;
  margin-bottom: 2.4rem;
}

.games-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--lime);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.games-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0 0 0.8rem;
  color: #fff;
}

.games-head p {
  margin: 0;
  color: var(--mute);
  font-size: 1.05rem;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.game-card {
  background: rgba(28, 31, 39, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 255, 75, 0.35);
  box-shadow: 8px 8px 0 rgba(122, 215, 255, 0.16);
}

.game-media {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #0f1117;
}

.game-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.game-card:hover .game-media img {
  transform: scale(1.06);
}

.game-body {
  padding: 1.2rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
}

.game-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  color: var(--ice);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.game-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.game-body h3 a {
  color: #fff;
  transition: color 0.25s var(--ease);
}

.game-body h3 a:hover {
  color: var(--lime);
}

.game-body p {
  margin: 0;
  color: var(--mute);
  font-size: 0.95rem;
  flex: 1;
}

.game-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
  min-height: 2.75rem;
  padding: 0.55rem 1rem;
  border-radius: 0.45rem;
  background: var(--lime);
  color: #12141a;
  font-weight: 800;
  box-shadow: 4px 4px 0 rgba(122, 215, 255, 0.28);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.game-play:hover {
  color: #12141a;
  background: var(--lime-deep);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(122, 215, 255, 0.35);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--lime);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.content-section,
.about-section,
.disclaimer-section,
.community-section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  border-top: 1px solid var(--line);
}

.content-section {
  background: #12151d;
}

.content-head {
  max-width: 44rem;
  margin-bottom: 2.4rem;
}

.content-head h2,
.about-copy h2,
.disclaimer-copy h2,
.community-section h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.3vw, 2.55rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0 0 0.9rem;
  color: #fff;
}

.content-head p,
.about-copy p,
.disclaimer-copy p,
.community-section .content-head p {
  margin: 0 0 1rem;
  color: var(--mute);
  font-size: 1.05rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.step-card {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(28, 31, 39, 0.7);
  border-radius: 1rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.step-card:hover {
  border-color: rgba(214, 255, 75, 0.35);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--ice);
  letter-spacing: 0.08em;
  margin-bottom: 0.9rem;
}

.step-card h3,
.community-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.7rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.step-card p,
.community-card p {
  margin: 0;
  color: var(--mute);
  font-size: 0.98rem;
}

.about-section {
  background:
    radial-gradient(700px 320px at 0% 50%, rgba(122, 215, 255, 0.08), transparent 60%),
    #161922;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.about-copy .btn-ppf {
  margin-top: 0.5rem;
}

.about-panel {
  display: grid;
  gap: 0.9rem;
}

.about-stat {
  display: flex;
  gap: 0.9rem;
  padding: 1.15rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 20, 26, 0.72);
}

.about-stat i {
  color: var(--lime);
  font-size: 1.15rem;
  margin-top: 0.2rem;
}

.about-stat strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.about-stat span {
  color: var(--mute);
  font-size: 0.92rem;
}

.disclaimer-section {
  background: #0f1218;
}

.disclaimer-panel {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 1.4rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: 1.15rem;
  border: 1px solid rgba(214, 255, 75, 0.28);
  background:
    linear-gradient(145deg, rgba(28, 31, 39, 0.95) 0%, rgba(18, 20, 26, 0.98) 100%);
  box-shadow: 10px 10px 0 rgba(122, 215, 255, 0.12);
}

.disclaimer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.btn-ghost-dark {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost-dark:hover {
  color: #fff;
  border-color: var(--lime);
  box-shadow: 5px 5px 0 rgba(214, 255, 75, 0.18);
}

.disclaimer-aside {
  display: grid;
  gap: 0.85rem;
}

.aside-item {
  display: flex;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.aside-item i {
  color: var(--ice);
  margin-top: 0.15rem;
}

.aside-item strong {
  display: block;
  color: #fff;
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.aside-item p {
  margin: 0;
  color: var(--mute);
  font-size: 0.9rem;
}

.community-section {
  background:
    radial-gradient(700px 280px at 80% 0%, rgba(214, 255, 75, 0.07), transparent 55%),
    #14171f;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-bottom: 1.5rem;
}

.community-card {
  padding: 1.45rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(28, 31, 39, 0.72);
}

.community-card i {
  color: var(--lime);
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
}

.community-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 20, 26, 0.7);
}

.community-note p {
  margin: 0;
  max-width: 48rem;
  color: var(--mute);
}

.community-note a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--lime);
  font-weight: 800;
  white-space: nowrap;
}

.community-note a:hover {
  color: #fff;
}

.site-footer {
  background: #0b0d12;
  color: rgba(243, 245, 248, 0.78);
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 1.6rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .brand {
  margin-bottom: 1rem;
}

.footer-brand p {
  margin: 0;
  max-width: 26rem;
  color: var(--mute);
  font-size: 0.95rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 0.95rem;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.footer-col a {
  display: block;
  padding: 0.28rem 0;
  color: var(--mute);
  transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
}

.footer-col a:hover {
  color: var(--lime);
  padding-left: 0.2rem;
}

.footer-aware {
  display: inline-block;
  margin-top: 0.85rem;
  padding: 0 !important;
}

.footer-aware:hover {
  padding-left: 0 !important;
}

.footer-aware img {
  width: auto;
  max-width: 10.5rem;
  height: auto;
  display: block;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 0.4rem;
  min-height: 2.5rem;
  object-fit: contain;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  margin-bottom: 1.2rem;
}

.footer-disclaimer p {
  margin: 0 0 0.75rem;
  color: var(--mute);
  font-size: 0.92rem;
}

.footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.footer-disclaimer strong {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--mute);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomSoft {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.09);
  }
}

@media (max-width: 991.98px) {
  .nav-links {
    display: none;
  }

  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .hero-meta {
    display: none;
  }

  .hero {
    min-height: 34rem;
  }

  .games-grid {
    grid-template-columns: 1fr;
    max-width: 26rem;
    margin: 0 auto;
  }

  .steps-grid,
  .about-grid,
  .disclaimer-panel,
  .community-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
  }

  .steps-grid,
  .community-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575.98px) {
  .topbar {
    font-size: 0.78rem;
  }

  .hero-actions .btn-ppf {
    width: 100%;
  }

  .hero-frame {
    box-shadow: 8px 8px 0 rgba(122, 215, 255, 0.18);
  }
}

body.nav-locked,
body.overlay-locked {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.age-gate[hidden] {
  display: none !important;
}

.age-gate-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 14, 20, 0.45);
  backdrop-filter: blur(2.5px);
}

.age-gate-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 26rem);
  padding: 1.6rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(214, 255, 75, 0.35);
  background: rgba(22, 25, 34, 0.94);
  box-shadow: 10px 10px 0 rgba(122, 215, 255, 0.18);
  text-align: center;
}

.age-gate-dialog h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.7rem;
  color: #fff;
  letter-spacing: -0.03em;
}

.age-gate-dialog p {
  margin: 0 0 1.25rem;
  color: var(--mute);
  font-size: 0.95rem;
}

.age-gate-actions {
  display: grid;
  gap: 0.65rem;
}

.age-gate-actions button {
  min-height: 2.85rem;
  border: 0;
  border-radius: 0.45rem;
  font-weight: 800;
  font-family: var(--font-body);
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.age-gate-actions button:hover {
  transform: translate(-1px, -1px);
}

.age-accept {
  background: var(--lime);
  color: #12141a;
  box-shadow: 4px 4px 0 rgba(122, 215, 255, 0.3);
}

.age-decline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1900;
  max-width: 34rem;
  margin: 0 auto;
  padding: 1.1rem 1.15rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(18, 20, 26, 0.96);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 14rem;
  color: var(--fog);
  font-size: 0.9rem;
}

.cookie-banner p a {
  color: var(--lime);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.cookie-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.cookie-actions button {
  min-height: 2.5rem;
  padding: 0.45rem 1rem;
  border: 0;
  border-radius: 0.4rem;
  background: var(--lime);
  color: #12141a;
  font-weight: 800;
  font-family: var(--font-body);
  cursor: pointer;
}

.page-hero {
  padding: clamp(3rem, 7vw, 4.5rem) 0 2rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(700px 280px at 10% 0%, rgba(214, 255, 75, 0.08), transparent 60%),
    #14171f;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.035em;
  margin: 0 0 0.85rem;
  color: #fff;
}

.page-hero p {
  margin: 0;
  max-width: 44rem;
  color: var(--mute);
  font-size: 1.05rem;
}

.page-wrap {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.page-content {
  max-width: 48rem;
}

.page-content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content p,
.page-content li {
  color: var(--mute);
  font-size: 1.02rem;
}

.page-content p {
  margin: 0 0 1rem;
}

.page-content ul {
  margin: 0 0 1.2rem;
  padding-left: 1.2rem;
  list-style: disc;
}

.page-content a {
  color: var(--lime);
  font-weight: 700;
}

.contact-panel {
  margin-top: 1.5rem;
  padding: 1.4rem;
  border-radius: 1rem;
  border: 1px solid rgba(214, 255, 75, 0.28);
  background: rgba(28, 31, 39, 0.8);
}

.contact-panel strong {
  display: block;
  font-family: var(--font-display);
  color: #fff;
  margin-bottom: 0.35rem;
}

.contact-panel a {
  font-size: 1.15rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
  max-width: 48rem;
}

.faq-item {
  padding: 1.2rem 1.3rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(28, 31, 39, 0.72);
}

.faq-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  color: #fff;
}

.faq-item p {
  margin: 0;
  color: var(--mute);
}

.game-stage-wrap {
  padding: clamp(2rem, 5vw, 3.5rem) 0 4rem;
}

.game-intro {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.35rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(28, 31, 39, 0.7);
}

.game-intro img {
  width: 5.5rem;
  height: 5.5rem;
  object-fit: cover;
  border-radius: 0.85rem;
  border: 1px solid rgba(214, 255, 75, 0.28);
  box-shadow: 0 0 24px rgba(122, 215, 255, 0.2);
}

.game-intro p {
  margin: 0.45rem 0 0;
  color: var(--mute);
  font-size: 0.95rem;
}

.game-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.game-stage {
  position: relative;
  border: 1px solid rgba(214, 255, 75, 0.28);
  border-radius: 1.15rem;
  background:
    radial-gradient(600px 280px at 20% 0%, rgba(214, 255, 75, 0.12), transparent 55%),
    radial-gradient(600px 280px at 90% 100%, rgba(122, 215, 255, 0.12), transparent 55%),
    #171a22;
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: 10px 10px 0 rgba(122, 215, 255, 0.12);
  overflow: hidden;
}

.stage-reels {
  background:
    radial-gradient(500px 240px at 50% 0%, rgba(214, 255, 75, 0.16), transparent 60%),
    radial-gradient(420px 220px at 80% 100%, rgba(255, 143, 107, 0.12), transparent 55%),
    #141820;
}

.stage-table {
  background:
    radial-gradient(520px 260px at 50% 30%, rgba(18, 110, 90, 0.28), transparent 60%),
    linear-gradient(180deg, #13241f 0%, #171a22 100%);
}

.stage-wheel {
  background:
    radial-gradient(480px 280px at 25% 40%, rgba(122, 215, 255, 0.16), transparent 55%),
    radial-gradient(420px 240px at 90% 10%, rgba(214, 255, 75, 0.12), transparent 50%),
    #151821;
}

.game-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.game-meter {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 255, 75, 0.3);
  background: linear-gradient(135deg, rgba(214, 255, 75, 0.12), rgba(122, 215, 255, 0.08));
  font-weight: 700;
  color: var(--fog);
  box-shadow: 0 0 18px rgba(214, 255, 75, 0.12);
}

.game-meter i {
  color: var(--lime);
}

.game-meter strong {
  color: var(--lime);
  font-family: var(--font-display);
}

.game-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--mute);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.game-disclaimer {
  margin-top: 1.5rem;
  padding: 1.2rem 1.3rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 20, 26, 0.75);
}

.game-disclaimer h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.6rem;
  color: #fff;
}

.game-disclaimer p {
  margin: 0 0 0.7rem;
  color: var(--mute);
  font-size: 0.95rem;
}

.game-disclaimer p:last-child {
  margin-bottom: 0;
}

.reels-frame {
  position: relative;
  padding: 1.1rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(10, 12, 18, 0.95), rgba(24, 28, 40, 0.9));
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.45);
  margin-bottom: 1.15rem;
}

.reels-lights {
  position: absolute;
  inset: 0.45rem;
  border-radius: 0.9rem;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(214, 255, 75, 0.35), transparent 12%),
    radial-gradient(circle at 88% 18%, rgba(122, 215, 255, 0.35), transparent 12%),
    radial-gradient(circle at 12% 82%, rgba(255, 143, 107, 0.3), transparent 12%),
    radial-gradient(circle at 88% 82%, rgba(214, 255, 75, 0.3), transparent 12%);
  animation: lightsPulse 2.4s ease-in-out infinite;
}

.reels-board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.reel {
  aspect-ratio: 3 / 4;
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%),
    linear-gradient(180deg, #0b0e14 0%, #1a2233 100%);
  box-shadow:
    inset 0 0 28px rgba(122, 215, 255, 0.1),
    0 0 22px rgba(214, 255, 75, 0.08);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.reel::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 46%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(214, 255, 75, 0.55), transparent);
  pointer-events: none;
}

.reel-face {
  display: grid;
  place-items: center;
  gap: 0.45rem;
  text-align: center;
  z-index: 1;
}

.reel-face i {
  font-size: clamp(2rem, 5vw, 3rem);
  filter: drop-shadow(0 0 14px currentColor);
}

.reel-face span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.8);
}

.tint-lime i { color: #d6ff4b; }
.tint-ice i { color: #7ad7ff; }
.tint-coral i { color: #ff8f6b; }
.tint-mint i { color: #5dffc2; }
.tint-violet i { color: #b7a6ff; }
.tint-gold i { color: #ffd76a; }

.reel.is-spinning .reel-face {
  animation: reelShake 0.1s linear infinite;
}

.reel.is-glow {
  border-color: rgba(214, 255, 75, 0.65);
  box-shadow:
    inset 0 0 30px rgba(214, 255, 75, 0.18),
    0 0 28px rgba(214, 255, 75, 0.35);
}

.reel.is-glow .reel-face {
  transform: scale(1.06);
}

.reels-actions,
.table-actions,
.wheel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.game-status {
  min-height: 1.5rem;
  margin: 0.95rem 0 0;
  color: var(--ice);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bj-table {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.15rem;
}

.bj-row {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 40, 34, 0.4);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.18);
}

.bj-row-player {
  background: rgba(214, 255, 75, 0.06);
  border-color: rgba(214, 255, 75, 0.22);
}

.bj-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.bj-row h3 {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.bj-total {
  min-width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: #12141a;
  background: var(--lime);
  box-shadow: 0 0 16px rgba(214, 255, 75, 0.35);
}

.bj-felt {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  color: rgba(214, 255, 75, 0.35);
  font-size: 1rem;
}

.bj-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  min-height: 6.2rem;
  align-items: center;
}

.bj-card {
  width: 4rem;
  height: 5.7rem;
  border-radius: 0.55rem;
  background: linear-gradient(160deg, #ffffff, #e7eef8);
  color: #12141a;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.4rem 0.45rem;
  font-family: var(--font-display);
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.45);
  animation: cardIn 0.35s var(--ease);
}

.bj-card i {
  font-size: 1.15rem;
  align-self: center;
}

.bj-rank {
  font-size: 0.85rem;
  line-height: 1;
}

.bj-rank-flip {
  transform: rotate(180deg);
  align-self: flex-end;
}

.bj-card.red {
  color: #d62828;
}

.bj-card.back {
  background:
    radial-gradient(circle at 50% 40%, rgba(214, 255, 75, 0.18), transparent 45%),
    linear-gradient(145deg, #163d36, #0f2a26);
  color: var(--lime);
  border: 1px solid rgba(214, 255, 75, 0.35);
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.bj-card.back span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.wheel-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.4rem;
  align-items: center;
}

.wheel-shell {
  position: relative;
  width: min(100%, 23rem);
  margin: 0 auto;
  aspect-ratio: 1;
}

.wheel-ring {
  position: absolute;
  inset: -0.35rem;
  border-radius: 50%;
  border: 2px dashed rgba(122, 215, 255, 0.35);
  animation: ringSpin 18s linear infinite;
  pointer-events: none;
}

.wheel-pointer {
  position: absolute;
  top: -0.15rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: var(--lime);
  font-size: 1.8rem;
  filter: drop-shadow(0 0 10px rgba(214, 255, 75, 0.8));
  line-height: 1;
}

.orbit-wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 7px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 0 10px rgba(18, 20, 26, 0.92),
    0 0 48px rgba(122, 215, 255, 0.35),
    inset 0 0 34px rgba(0, 0, 0, 0.45);
  background: conic-gradient(
    #d6ff4b 0 30deg,
    #1c1f27 30deg 60deg,
    #7ad7ff 60deg 90deg,
    #1c1f27 90deg 120deg,
    #ff8f6b 120deg 150deg,
    #1c1f27 150deg 180deg,
    #d6ff4b 180deg 210deg,
    #1c1f27 210deg 240deg,
    #7ad7ff 240deg 270deg,
    #1c1f27 270deg 300deg,
    #ff8f6b 300deg 330deg,
    #1c1f27 330deg 360deg
  );
  transition: transform 4s cubic-bezier(0.12, 0.75, 0.12, 1);
  position: relative;
  display: grid;
  place-items: center;
}

.orbit-wheel.is-spinning {
  filter: saturate(1.2) brightness(1.08);
}

.wheel-hub {
  position: relative;
  z-index: 2;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #12141a;
  border: 3px solid var(--lime);
  color: var(--lime);
  box-shadow: 0 0 24px rgba(214, 255, 75, 0.45);
  font-size: 1.1rem;
}

.wheel-side h3 {
  font-family: var(--font-display);
  color: #fff;
  margin: 0 0 0.55rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wheel-side h3 i {
  color: var(--lime);
}

.wheel-side p {
  color: var(--mute);
  margin: 0 0 1rem;
}

.pick-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.pick-row button {
  min-height: 2.7rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}

.pick-row button:hover {
  transform: translateY(-1px);
}

.pick-row button.is-active.pick-lime {
  background: var(--lime);
  color: #12141a;
  border-color: var(--lime);
  box-shadow: 0 0 18px rgba(214, 255, 75, 0.35);
}

.pick-row button.is-active.pick-ice {
  background: #7ad7ff;
  color: #12141a;
  border-color: #7ad7ff;
  box-shadow: 0 0 18px rgba(122, 215, 255, 0.35);
}

.pick-row button.is-active.pick-coral {
  background: #ff8f6b;
  color: #12141a;
  border-color: #ff8f6b;
  box-shadow: 0 0 18px rgba(255, 143, 107, 0.35);
}

.wheel-result {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.28);
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
}

.wheel-result.tone-lime { color: #d6ff4b; border-color: rgba(214, 255, 75, 0.35); }
.wheel-result.tone-ice { color: #7ad7ff; border-color: rgba(122, 215, 255, 0.35); }
.wheel-result.tone-coral { color: #ff8f6b; border-color: rgba(255, 143, 107, 0.35); }
.wheel-result.tone-night { color: #c9d2e3; border-color: rgba(201, 210, 227, 0.25); }

@keyframes reelShake {
  from { transform: translateY(-5px) scale(0.98); }
  to { transform: translateY(5px) scale(1.02); }
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(12px) rotate(-4deg) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
  }
}

@keyframes lightsPulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

@keyframes ringSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 991.98px) {
  .wheel-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .game-intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .bj-card {
    width: 3.5rem;
    height: 5rem;
  }
}
