:root {
  --hp-ink: #14171d;
  --hp-slate: #2a303a;
  --hp-stone: #d8d2c8;
  --hp-paper: #efeae3;
  --hp-saffron: #efb12a;
  --hp-cobalt: #3558e8;
  --hp-rose: #e84a7f;
  --hp-ice: #9bb7c9;
  --hp-line: rgba(20, 23, 29, 0.12);
  --hp-font-display: "Unbounded", sans-serif;
  --hp-font-body: "Figtree", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--hp-font-body);
  color: var(--hp-ink);
  background: var(--hp-paper);
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.hp-header {
  position: relative;
  z-index: 20;
  background: #f7f3ec;
  border-bottom: 2px solid var(--hp-ink);
}

.hp-nav-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.hp-navbar {
  padding: 0.95rem 0;
}

.hp-brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
}

.hp-logo {
  height: 50px;
  width: auto;
}

.hp-toggler {
  border: 2px solid var(--hp-ink);
  border-radius: 0;
  padding: 0.55rem 0.7rem;
  background: var(--hp-saffron);
}

.hp-toggler:focus {
  box-shadow: none;
}

.hp-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 16px;
}

.hp-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--hp-ink);
}

.hp-toggler[aria-expanded="true"] .hp-burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hp-toggler[aria-expanded="true"] .hp-burger span:nth-child(2) {
  opacity: 0;
}

.hp-toggler[aria-expanded="true"] .hp-burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hp-nav-links {
  gap: 0.1rem;
  align-items: center;
}

.hp-nav-links .nav-link {
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  color: var(--hp-ink);
  padding: 0.45rem 0.7rem;
  border-radius: 0;
  border-bottom: 2px solid transparent;
}

.hp-nav-links .nav-link:hover,
.hp-nav-links .nav-link:focus,
.hp-nav-links .nav-link.active {
  color: var(--hp-cobalt);
  background: transparent;
  border-bottom-color: var(--hp-saffron);
}

.hp-hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #f7f3ec;
}

.hp-hero-media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hp-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 23, 29, 0.88) 0%, rgba(20, 23, 29, 0.55) 42%, rgba(20, 23, 29, 0.18) 72%, rgba(20, 23, 29, 0.35) 100%),
    linear-gradient(0deg, rgba(20, 23, 29, 0.72) 0%, rgba(20, 23, 29, 0.15) 48%, rgba(20, 23, 29, 0.35) 100%);
}

.hp-hero-frame {
  position: absolute;
  inset: 1.25rem;
  border: 1px solid rgba(247, 243, 236, 0.28);
  pointer-events: none;
  z-index: 2;
}

.hp-hero-frame::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: linear-gradient(180deg, var(--hp-saffron) 0%, var(--hp-rose) 100%);
}

.hp-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.25rem 3.5rem;
}

.hp-hero-copy {
  max-width: 40rem;
}

.hp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  padding: 0;
  color: var(--hp-saffron);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hp-hero-title {
  font-family: var(--hp-font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0 0 1.25rem;
  color: #f7f3ec;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.hp-hero-lead {
  max-width: 32rem;
  font-size: 1.12rem;
  line-height: 1.65;
  color: rgba(247, 243, 236, 0.88);
  margin-bottom: 1.8rem;
}

.hp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
}

.hp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.3rem;
  border-radius: 0;
  font-weight: 700;
  font-size: 0.96rem;
  border: 2px solid transparent;
}

.hp-btn-primary {
  background: var(--hp-saffron);
  color: var(--hp-ink);
  border-color: var(--hp-saffron);
}

.hp-btn-primary:hover {
  background: #ffc44d;
  color: var(--hp-ink);
}

.hp-btn-line {
  background: transparent;
  border-color: rgba(247, 243, 236, 0.55);
  color: #f7f3ec;
}

.hp-btn-line:hover {
  border-color: #f7f3ec;
  background: rgba(247, 243, 236, 0.08);
  color: #f7f3ec;
}

.hp-age-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.88rem;
  color: rgba(247, 243, 236, 0.72);
}

.hp-games {
  padding: 4.5rem 0 5rem;
  background:
    linear-gradient(180deg, #efeae3 0%, #e7e1d7 100%);
  border-top: 2px solid var(--hp-ink);
}

.hp-games-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.hp-games-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.hp-games-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--hp-cobalt);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hp-games-title {
  font-family: var(--hp-font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.9rem;
  color: var(--hp-ink);
}

.hp-games-text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(20, 23, 29, 0.78);
}

.hp-game {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #f7f3ec;
  border: 2px solid var(--hp-ink);
}

.hp-game-media {
  display: block;
  overflow: hidden;
  border-bottom: 2px solid var(--hp-ink);
  background: var(--hp-slate);
}

.hp-game-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hp-game-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.15rem 1.15rem 1.3rem;
  flex: 1;
}

.hp-game-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hp-slate);
}

.hp-game-name {
  font-family: var(--hp-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

.hp-game-name a {
  color: var(--hp-ink);
}

.hp-game-name a:hover {
  color: var(--hp-cobalt);
}

.hp-btn-play {
  margin-top: auto;
  width: fit-content;
  background: var(--hp-ink);
  color: #f7f3ec;
  border-color: var(--hp-ink);
  padding: 0.7rem 1.1rem;
  font-size: 0.9rem;
}

.hp-btn-play:hover {
  background: var(--hp-cobalt);
  border-color: var(--hp-cobalt);
  color: #fff;
}

.hp-section-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.hp-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  color: var(--hp-cobalt);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hp-section-kicker-light {
  color: var(--hp-saffron);
}

.hp-section-title {
  font-family: var(--hp-font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: var(--hp-ink);
  line-height: 1.05;
}

.hp-section-title-light {
  color: #f7f3ec;
}

.hp-section-lead {
  max-width: 46rem;
  margin: 0 0 2.4rem;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(20, 23, 29, 0.78);
}

.hp-prose p {
  margin: 0 0 1.15rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(20, 23, 29, 0.82);
}

.hp-prose p:last-child {
  margin-bottom: 0;
}

.hp-prose a {
  color: var(--hp-cobalt);
  border-bottom: 1px solid rgba(53, 88, 232, 0.35);
}

.hp-prose a:hover {
  border-bottom-color: var(--hp-cobalt);
}

.hp-prose-light p,
.hp-prose-light a {
  color: rgba(247, 243, 236, 0.88);
}

.hp-prose-light a {
  border-bottom-color: rgba(239, 177, 42, 0.55);
}

.hp-prose-light a:hover {
  color: var(--hp-saffron);
  border-bottom-color: var(--hp-saffron);
}

.hp-about {
  padding: 5rem 0;
  background: #f7f3ec;
  border-top: 2px solid var(--hp-ink);
}

.hp-experience {
  padding: 5rem 0;
  background: linear-gradient(180deg, #efeae3 0%, #e5dfd4 100%);
  border-top: 2px solid var(--hp-ink);
}

.hp-feature {
  height: 100%;
  padding: 1.5rem;
  background: #f7f3ec;
  border: 2px solid var(--hp-ink);
}

.hp-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  background: var(--hp-saffron);
  color: var(--hp-ink);
  border: 2px solid var(--hp-ink);
}

.hp-feature h3 {
  font-family: var(--hp-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.hp-feature p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(20, 23, 29, 0.78);
}

.hp-disclaimer {
  padding: 5rem 0;
  background: var(--hp-ink);
  border-top: 2px solid var(--hp-ink);
}

.hp-disclaimer-panel {
  max-width: 56rem;
}

.hp-disclaimer-points {
  margin-top: 2rem;
}

.hp-disclaimer-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1.15rem;
  border: 1px solid rgba(247, 243, 236, 0.2);
  background: rgba(247, 243, 236, 0.04);
  height: 100%;
}

.hp-disclaimer-item i {
  color: var(--hp-saffron);
  margin-top: 0.2rem;
}

.hp-disclaimer-item strong {
  display: block;
  font-family: var(--hp-font-display);
  font-size: 1.05rem;
  color: #f7f3ec;
  margin-bottom: 0.35rem;
}

.hp-disclaimer-item p {
  margin: 0;
  color: rgba(247, 243, 236, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
}

.hp-support {
  padding: 5rem 0;
  background: #f7f3ec;
  border-top: 2px solid var(--hp-ink);
}

.hp-footer {
  background: #1a1e26;
  color: rgba(247, 243, 236, 0.82);
  border-top: 2px solid var(--hp-ink);
  padding: 4rem 0 2rem;
}

.hp-footer-brand {
  display: inline-flex;
  margin-bottom: 1.1rem;
}

.hp-footer-logo {
  height: 42px;
  width: auto;
}

.hp-footer-about {
  margin: 0 0 1.35rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(247, 243, 236, 0.78);
}

.hp-footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hp-footer-badges a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.4rem 0.55rem;
  border: 1px solid rgba(247, 243, 236, 0.22);
  background: rgba(247, 243, 236, 0.06);
}

.hp-footer-badges img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.hp-footer-heading {
  font-family: var(--hp-font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #f7f3ec;
  margin: 0 0 1rem;
}

.hp-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hp-footer-links li {
  margin-bottom: 0.55rem;
}

.hp-footer-links a {
  color: rgba(247, 243, 236, 0.78);
  font-size: 0.95rem;
}

.hp-footer-links a:hover {
  color: var(--hp-saffron);
}

.hp-footer-note {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(247, 243, 236, 0.62);
}

.hp-footer-disclaimer {
  margin-top: 2.5rem;
  padding: 1.4rem 1.35rem;
  border: 1px solid rgba(247, 243, 236, 0.18);
  background: rgba(247, 243, 236, 0.04);
}

.hp-footer-disclaimer p {
  margin: 0 0 0.85rem;
  font-size: 0.94rem;
  line-height: 1.65;
  color: rgba(247, 243, 236, 0.78);
}

.hp-footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.hp-footer-disclaimer strong {
  color: #f7f3ec;
}

.hp-footer-bottom {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(247, 243, 236, 0.12);
}

.hp-footer-bottom p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(247, 243, 236, 0.58);
}

@media (max-width: 991.98px) {
  .hp-logo {
    height: 42px;
  }

  .hp-nav-links {
    padding: 1rem 0 0.25rem;
  }

  .hp-nav-links .nav-link {
    padding: 0.8rem 0.2rem;
    border-bottom-width: 2px;
  }

  .hp-hero {
    min-height: calc(100vh - 76px);
    align-items: flex-end;
  }

  .hp-hero-frame {
    inset: 0.75rem;
  }

  .hp-hero-content {
    padding: 3rem 1rem 2.5rem;
  }
}

body.hp-no-scroll {
  overflow: hidden;
  touch-action: none;
}

.hp-age-overlay {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(10, 12, 16, 0.82);
}

.hp-age-overlay.is-visible {
  display: flex;
}

.hp-age-modal {
  width: min(100%, 520px);
  background: #f7f3ec;
  border: 2px solid var(--hp-ink);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.hp-age-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.7rem;
  background: var(--hp-saffron);
  border: 2px solid var(--hp-ink);
  font-weight: 800;
  font-size: 0.85rem;
}

.hp-age-modal h2 {
  font-family: var(--hp-font-display);
  font-size: 1.7rem;
  margin: 0 0 0.9rem;
}

.hp-age-modal p {
  margin: 0 0 0.85rem;
  line-height: 1.65;
  color: rgba(20, 23, 29, 0.82);
  font-size: 0.98rem;
}

.hp-age-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  margin: 1.1rem 0 1.2rem;
  font-size: 0.95rem;
  line-height: 1.5;
  cursor: pointer;
}

.hp-age-check input {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--hp-cobalt);
}

.hp-age-accept {
  width: 100%;
  justify-content: center;
}

.hp-age-accept:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.hp-cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3500;
  display: none;
  background: #f7f3ec;
  border: 2px solid var(--hp-ink);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.hp-cookie-banner.is-visible {
  display: block;
}

.hp-cookie-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
}

.hp-cookie-copy {
  flex: 1 1 280px;
}

.hp-cookie-copy strong {
  display: block;
  font-family: var(--hp-font-display);
  margin-bottom: 0.35rem;
}

.hp-cookie-copy p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(20, 23, 29, 0.78);
}

.hp-cookie-copy a {
  color: var(--hp-cobalt);
  border-bottom: 1px solid rgba(53, 88, 232, 0.35);
}

.hp-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hp-btn-cookie-link {
  background: transparent;
  border: 2px solid var(--hp-ink);
  color: var(--hp-ink);
}

.hp-btn-cookie-link:hover {
  background: var(--hp-ink);
  color: #f7f3ec;
}

.hp-page-hero {
  padding: 3.5rem 0 2.5rem;
  background:
    linear-gradient(135deg, rgba(53, 88, 232, 0.08), transparent 42%),
    linear-gradient(180deg, #f7f3ec 0%, #efeae3 100%);
  border-bottom: 2px solid var(--hp-ink);
}

.hp-page-hero h1 {
  font-family: var(--hp-font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.9rem;
  line-height: 1.05;
}

.hp-page-hero p {
  max-width: 46rem;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(20, 23, 29, 0.8);
}

.hp-page-content {
  padding: 3.5rem 0 4.5rem;
}

.hp-page-content .hp-prose h2 {
  font-family: var(--hp-font-display);
  font-size: 1.45rem;
  margin: 2rem 0 0.8rem;
}

.hp-page-content .hp-prose h3 {
  font-family: var(--hp-font-display);
  font-size: 1.15rem;
  margin: 1.5rem 0 0.65rem;
}

.hp-page-content .hp-prose ul {
  margin: 0 0 1.15rem;
  padding-left: 1.2rem;
}

.hp-page-content .hp-prose li {
  margin-bottom: 0.45rem;
  line-height: 1.65;
  color: rgba(20, 23, 29, 0.82);
}

.hp-compliance-strip {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  border: 2px solid var(--hp-ink);
  background: rgba(239, 177, 42, 0.18);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hp-contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  padding: 0.9rem 1.15rem;
  border: 2px solid var(--hp-ink);
  background: var(--hp-saffron);
  font-weight: 700;
  color: var(--hp-ink);
}

.hp-contact-email:hover {
  background: #ffc44d;
}

.hp-faq-item {
  margin-bottom: 1rem;
  border: 2px solid var(--hp-ink);
  background: #f7f3ec;
  padding: 1.15rem 1.2rem;
}

.hp-faq-item h3 {
  font-family: var(--hp-font-display);
  font-size: 1.05rem;
  margin: 0 0 0.55rem;
}

.hp-faq-item p {
  margin: 0;
  line-height: 1.65;
  color: rgba(20, 23, 29, 0.8);
}

.hp-game-stage-wrap {
  padding: 2.5rem 0 3rem;
  background: #0f1319;
  border-bottom: 2px solid var(--hp-ink);
}

.hp-game-disclaimer {
  padding: 2.5rem 0 4rem;
  background: #f7f3ec;
}

@media (max-width: 575.98px) {
  .hp-hero-title {
    font-size: clamp(2.3rem, 13vw, 3.1rem);
  }

  .hp-btn {
    width: 100%;
    justify-content: center;
  }

  .hp-hero-frame::before {
    width: 5px;
  }

  .hp-cookie-actions {
    width: 100%;
  }

  .hp-cookie-actions .hp-btn {
    flex: 1;
  }
}
