@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Sora:wght@400;500;600;700&display=swap');

:root {
  --hp-navy: #07111f;
  --hp-navy-mid: #0d1f35;
  --hp-navy-soft: #152a45;
  --hp-emerald: #0d8a62;
  --hp-emerald-bright: #18c98a;
  --hp-gold: #e0b13a;
  --hp-gold-soft: #f3d078;
  --hp-cream: #f2ece0;
  --hp-muted: #9bb0c7;
  --hp-line: rgba(224, 177, 58, 0.28);
  --hp-glass: rgba(13, 31, 53, 0.72);
  --hp-radius: 1.25rem;
  --hp-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Sora', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--hp-cream);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(13, 138, 98, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(224, 177, 58, 0.12), transparent 50%),
    linear-gradient(180deg, var(--hp-navy) 0%, #050b14 100%);
  min-height: 100vh;
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.topbar {
  background: linear-gradient(90deg, #06101c 0%, #0a1a2e 50%, #06101c 100%);
  border-bottom: 1px solid var(--hp-line);
  padding: 0.65rem 0;
  position: relative;
  z-index: 30;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
}

.topbar-icon {
  color: var(--hp-gold);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.topbar-text {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--hp-muted);
}

.topbar-text strong {
  color: var(--hp-gold-soft);
  font-weight: 600;
}

.site-header {
  position: relative;
  z-index: 40;
  background: rgba(7, 17, 31, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(155, 176, 199, 0.12);
}

.navbar-hps {
  padding: 0.95rem 0;
}

.navbar-hps .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(24, 201, 138, 0.25), rgba(224, 177, 58, 0.18)),
    var(--hp-navy-mid);
  border: 1px solid rgba(24, 201, 138, 0.45);
  box-shadow: 0 0 0 4px rgba(13, 138, 98, 0.12);
  color: var(--hp-gold);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--hp-cream);
  white-space: nowrap;
}

.brand-title span {
  color: var(--hp-emerald-bright);
}

.brand-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hp-muted);
  margin-top: 0.15rem;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop a {
  display: inline-block;
  padding: 0.55rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--hp-muted);
  border-radius: 999px;
  position: relative;
}

.nav-desktop a:hover,
.nav-desktop a:focus-visible,
.nav-desktop a.active {
  color: var(--hp-cream);
  background: rgba(24, 201, 138, 0.1);
  outline: none;
}

.nav-desktop a.active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0.2rem;
  width: 1.1rem;
  height: 2px;
  border-radius: 2px;
  background: var(--hp-gold);
  transform: translateX(-50%);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(155, 176, 199, 0.25);
  background: var(--hp-navy-mid);
  color: var(--hp-cream);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--hp-emerald-bright);
  color: var(--hp-emerald-bright);
  outline: none;
}

.nav-toggle[aria-expanded='true'] {
  border-color: var(--hp-gold);
  color: var(--hp-gold);
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(155, 176, 199, 0.12);
  background: rgba(5, 11, 20, 0.97);
  padding: 0.75rem 0 1.25rem;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--hp-cream);
  border-bottom: 1px solid rgba(155, 176, 199, 0.08);
}

.mobile-nav a i {
  color: var(--hp-gold);
  font-size: 0.85rem;
  opacity: 0.7;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--hp-emerald-bright);
}

.hero {
  position: relative;
  min-height: calc(100vh - 7.5rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('/assets/images/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: heroDrift 22s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(5, 11, 20, 0.92) 0%, rgba(5, 11, 20, 0.72) 42%, rgba(5, 11, 20, 0.45) 100%),
    linear-gradient(0deg, rgba(5, 11, 20, 0.85) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  padding: 4.5rem 0 5.5rem;
  max-width: 40rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hp-gold-soft);
}

.hero-kicker i {
  color: var(--hp-emerald-bright);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
  color: #fff;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--hp-emerald-bright), var(--hp-gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 0 0 2rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--hp-muted);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.btn-hps {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-hps:focus-visible {
  outline: 2px solid var(--hp-gold);
  outline-offset: 3px;
}

.btn-hps-primary {
  background: linear-gradient(135deg, var(--hp-emerald) 0%, #0a6b4d 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(13, 138, 98, 0.35);
}

.btn-hps-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(13, 138, 98, 0.45);
  color: #fff;
}

.btn-hps-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(242, 236, 224, 0.22);
  color: var(--hp-cream);
}

.btn-hps-ghost:hover {
  border-color: var(--hp-gold);
  color: var(--hp-gold-soft);
  transform: translateY(-2px);
}

.hero-glow {
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 201, 138, 0.22), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}

.hero-glow-one {
  top: 12%;
  right: 8%;
}

.hero-glow-two {
  bottom: 8%;
  left: 18%;
  width: 14rem;
  height: 14rem;
  background: radial-gradient(circle, rgba(224, 177, 58, 0.16), transparent 70%);
  animation-delay: 1.5s;
}

.games-section {
  position: relative;
  padding: 5rem 0 5.5rem;
  border-top: 1px solid rgba(155, 176, 199, 0.1);
}

.games-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(13, 138, 98, 0.12), transparent 60%),
    radial-gradient(ellipse 40% 35% at 10% 80%, rgba(224, 177, 58, 0.08), transparent 55%);
  pointer-events: none;
}

.section-head {
  position: relative;
  max-width: 38rem;
  margin-bottom: 2.75rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hp-gold-soft);
}

.section-kicker i {
  color: var(--hp-emerald-bright);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.85rem;
  color: #fff;
}

.section-lead {
  margin: 0;
  color: var(--hp-muted);
  font-size: 1.02rem;
}

.games-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.game-item {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: linear-gradient(165deg, rgba(13, 31, 53, 0.92), rgba(7, 17, 31, 0.96));
  border: 1px solid rgba(155, 176, 199, 0.14);
  border-radius: var(--hp-radius);
  overflow: hidden;
  box-shadow: var(--hp-shadow);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.game-item:hover {
  transform: translateY(-6px);
  border-color: rgba(24, 201, 138, 0.35);
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.4);
}

.game-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--hp-navy-mid);
}

.game-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.game-item:hover .game-media img {
  transform: scale(1.06);
}

.game-media::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(7, 17, 31, 0.88));
  pointer-events: none;
}

.game-body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.35rem 1.35rem 1.5rem;
  flex: 1;
}

.game-type {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hp-emerald-bright);
}

.game-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.game-title a {
  color: var(--hp-cream);
}

.game-title a:hover,
.game-title a:focus-visible {
  color: var(--hp-gold-soft);
  outline: none;
}

.game-text {
  margin: 0;
  flex: 1;
  font-size: 0.92rem;
  color: var(--hp-muted);
}

.game-play {
  margin-top: 0.5rem;
  align-self: flex-start;
}

@media (min-width: 768px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
  }
}

.content-section {
  position: relative;
  padding: 5rem 0;
  border-top: 1px solid rgba(155, 176, 199, 0.1);
}

.section-head-wide {
  max-width: 46rem;
}

.about-grid {
  display: grid;
  gap: 2rem;
}

.about-copy {
  display: grid;
  gap: 1.15rem;
}

.about-copy p {
  margin: 0;
  color: var(--hp-muted);
  font-size: 1.02rem;
}

.about-copy .btn-hps {
  justify-self: start;
  margin-top: 0.5rem;
}

.feature-stack {
  display: grid;
  gap: 1rem;
}

.feature-block {
  padding: 1.35rem 1.4rem;
  border: 1px solid rgba(155, 176, 199, 0.14);
  border-radius: var(--hp-radius);
  background: linear-gradient(160deg, rgba(13, 31, 53, 0.85), rgba(7, 17, 31, 0.95));
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  border-radius: 0.75rem;
  background: rgba(24, 201, 138, 0.12);
  color: var(--hp-emerald-bright);
  border: 1px solid rgba(24, 201, 138, 0.28);
}

.feature-block h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.feature-block p {
  margin: 0;
  color: var(--hp-muted);
  font-size: 0.95rem;
}

.experience-grid {
  display: grid;
  gap: 1.15rem;
}

.experience-item {
  position: relative;
  padding: 1.5rem 1.4rem 1.5rem 1.5rem;
  border-left: 2px solid rgba(224, 177, 58, 0.45);
  background: rgba(13, 31, 53, 0.45);
  border-radius: 0 var(--hp-radius) var(--hp-radius) 0;
}

.experience-index {
  display: block;
  margin-bottom: 0.55rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: var(--hp-gold);
}

.experience-item h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.experience-item p {
  margin: 0;
  color: var(--hp-muted);
  font-size: 0.98rem;
}

.values-panel {
  padding: 2rem 1.35rem;
  border-radius: calc(var(--hp-radius) + 0.35rem);
  border: 1px solid rgba(155, 176, 199, 0.14);
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(13, 138, 98, 0.16), transparent 55%),
    linear-gradient(165deg, rgba(13, 31, 53, 0.9), rgba(7, 17, 31, 0.98));
}

.values-grid {
  display: grid;
  gap: 1.25rem;
}

.value-item i {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: var(--hp-gold);
  font-size: 1.2rem;
}

.value-item h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.value-item p {
  margin: 0;
  color: var(--hp-muted);
  font-size: 0.96rem;
}

.disclaimer-panel {
  padding: 2rem 1.35rem;
  border-radius: calc(var(--hp-radius) + 0.35rem);
  border: 1px solid rgba(224, 177, 58, 0.22);
  background:
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(224, 177, 58, 0.1), transparent 50%),
    linear-gradient(165deg, rgba(13, 31, 53, 0.95), rgba(5, 11, 20, 0.98));
}

.disclaimer-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.disclaimer-card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--hp-radius);
  background: rgba(7, 17, 31, 0.72);
  border: 1px solid rgba(155, 176, 199, 0.12);
}

.disclaimer-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 0.85rem;
  background: rgba(224, 177, 58, 0.12);
  color: var(--hp-gold-soft);
  border: 1px solid rgba(224, 177, 58, 0.28);
  font-size: 1.1rem;
}

.disclaimer-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.disclaimer-card p {
  margin: 0 0 0.9rem;
  color: var(--hp-muted);
  font-size: 0.98rem;
}

.disclaimer-card p:last-child {
  margin-bottom: 0;
}

.disclaimer-note {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1.15rem 1.2rem;
  border-radius: 0.95rem;
  background: rgba(24, 201, 138, 0.08);
  border: 1px solid rgba(24, 201, 138, 0.22);
}

.disclaimer-note i {
  color: var(--hp-emerald-bright);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.disclaimer-note p {
  margin: 0;
  color: var(--hp-cream);
  font-size: 0.95rem;
}

.site-footer {
  border-top: 1px solid rgba(155, 176, 199, 0.12);
  padding: 3.5rem 0 2rem;
  background: rgba(5, 11, 20, 0.95);
}

.footer-top {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.25rem;
}

.footer-intro {
  margin: 1.15rem 0 0;
  max-width: 28rem;
  color: var(--hp-muted);
  font-size: 0.95rem;
}

.footer-columns {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}

.footer-col h3 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hp-cream);
}

.footer-links {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  font-size: 0.92rem;
  color: var(--hp-muted);
}

.footer-links a:hover {
  color: var(--hp-emerald-bright);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(155, 176, 199, 0.1);
  border-bottom: 1px solid rgba(155, 176, 199, 0.1);
}

.footer-badge-link {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-badge-link:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.footer-badge-link img {
  width: auto;
  max-height: 3.5rem;
  height: auto;
  object-fit: contain;
}

.footer-disclaimers {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.footer-disclaimers p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--hp-muted);
  line-height: 1.7;
}

.footer-disclaimers strong {
  color: var(--hp-gold-soft);
  font-weight: 600;
}

.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(155, 176, 199, 0.1);
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: var(--hp-muted);
}

.footer-copy strong {
  color: var(--hp-cream);
  font-weight: 600;
}

@media (min-width: 768px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-panel,
  .disclaimer-panel {
    padding: 2.5rem;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .disclaimer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.75rem;
    align-items: start;
  }

  .footer-top {
    grid-template-columns: 1.1fr 1.4fr;
    gap: 3rem;
    align-items: start;
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@media (min-width: 992px) {
  .nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav,
  .mobile-nav.is-open {
    display: none;
  }

  .hero {
    min-height: calc(100vh - 8rem);
  }
}

@media (max-width: 575.98px) {
  .brand-tag {
    display: none;
  }

  .topbar-text {
    font-size: 0.7rem;
  }

  .hero-content {
    padding: 3.25rem 0 4rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn-hps {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-bg,
  .hero-glow {
    animation: none;
  }
}

body.hps-scroll-lock {
  overflow: hidden;
  touch-action: none;
}

.hps-age-gate {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background:
    radial-gradient(ellipse 60% 50% at 50% 20%, rgba(13, 138, 98, 0.18), transparent 55%),
    rgba(3, 8, 16, 0.88);
  backdrop-filter: blur(10px);
  transition: opacity 0.28s ease;
}

.hps-age-gate.is-hiding {
  opacity: 0;
}

.hps-age-card {
  width: min(100%, 34rem);
  max-height: calc(100vh - 2.5rem);
  overflow: auto;
  padding: 2rem 1.6rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(224, 177, 58, 0.28);
  background:
    linear-gradient(165deg, rgba(13, 31, 53, 0.98), rgba(7, 17, 31, 0.99));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.hps-age-badge {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: rgba(224, 177, 58, 0.12);
  border: 1px solid rgba(224, 177, 58, 0.35);
  color: var(--hp-gold);
  font-size: 1.25rem;
}

.hps-age-kicker {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hp-gold-soft);
}

.hps-age-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2;
}

.hps-age-content {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.hps-age-content p {
  margin: 0;
  color: var(--hp-muted);
  font-size: 0.95rem;
}

.hps-age-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding: 0.95rem 1rem;
  border-radius: 0.9rem;
  background: rgba(24, 201, 138, 0.08);
  border: 1px solid rgba(24, 201, 138, 0.2);
  cursor: pointer;
  color: var(--hp-cream);
  font-size: 0.9rem;
}

.hps-age-check input {
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--hp-emerald);
  flex-shrink: 0;
}

.hps-age-accept {
  width: 100%;
}

.hps-age-accept:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.hps-cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1900;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.hps-cookie.is-hiding {
  opacity: 0;
  transform: translateY(12px);
}

.hps-cookie-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.25rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(155, 176, 199, 0.2);
  background: rgba(7, 17, 31, 0.96);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}

.hps-cookie-title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hps-cookie-title i {
  color: var(--hp-gold);
}

.hps-cookie-text {
  margin: 0;
  max-width: 46rem;
  color: var(--hp-muted);
  font-size: 0.88rem;
}

.hps-cookie-text a {
  color: var(--hp-emerald-bright);
  text-decoration: underline;
}

.hps-cookie-accept {
  flex-shrink: 0;
}

.page-hero {
  position: relative;
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(155, 176, 199, 0.1);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 90% 20%, rgba(13, 138, 98, 0.16), transparent 55%),
    radial-gradient(ellipse 40% 60% at 0% 80%, rgba(224, 177, 58, 0.1), transparent 50%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  max-width: 44rem;
}

.page-content {
  padding: 3.5rem 0 4.5rem;
}

.prose {
  display: grid;
  gap: 1.1rem;
  max-width: 48rem;
}

.prose h2 {
  margin: 1.25rem 0 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 750;
  color: #fff;
}

.prose h3 {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--hp-gold-soft);
}

.prose p,
.prose li {
  color: var(--hp-muted);
  font-size: 1.02rem;
}

.prose p {
  margin: 0;
}

.prose ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.prose a {
  color: var(--hp-emerald-bright);
  text-decoration: underline;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.5rem;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(24, 201, 138, 0.3);
  background: rgba(24, 201, 138, 0.1);
  color: var(--hp-cream);
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
}

.contact-email:hover {
  color: var(--hp-gold-soft);
  border-color: rgba(224, 177, 58, 0.45);
}

.notice-box {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--hp-radius);
  border: 1px solid rgba(224, 177, 58, 0.25);
  background: rgba(13, 31, 53, 0.7);
}

.notice-box p {
  margin: 0;
  color: var(--hp-muted);
  font-size: 0.95rem;
}

.notice-box strong {
  color: var(--hp-gold-soft);
}

@media (min-width: 768px) {
  .hps-age-card {
    padding: 2.35rem;
  }

  .hps-cookie {
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
  }

  .hps-cookie-inner {
    flex-wrap: nowrap;
    padding: 1.35rem 1.5rem;
  }
}
