@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 {
  --pk-teal-950: #061a1c;
  --pk-teal-900: #0a2f33;
  --pk-teal-800: #0f454b;
  --pk-teal-700: #15656e;
  --pk-teal-600: #1a7f8a;
  --pk-teal-500: #2a9aa6;
  --pk-teal-400: #4db8c2;
  --pk-teal-100: #d8f2f4;
  --pk-gold-600: #b8922a;
  --pk-gold-500: #d4a84b;
  --pk-gold-400: #e6c06a;
  --pk-cream: #f3f7f7;
  --pk-ink: #102426;
  --pk-muted: #5a7276;
  --pk-white: #ffffff;
  --pk-radius: 0.75rem;
  --pk-shadow: 0 18px 50px rgba(6, 26, 28, 0.18);
  --pk-font-display: 'Outfit', sans-serif;
  --pk-font-body: 'Sora', sans-serif;
  --pk-transition: 0.28s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--pk-font-body);
  color: var(--pk-ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(42, 154, 166, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(212, 168, 75, 0.08), transparent 50%),
    linear-gradient(180deg, #eef5f5 0%, var(--pk-cream) 40%, #e8f1f1 100%);
  min-height: 100vh;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--pk-teal-700);
  text-decoration: none;
  transition: color var(--pk-transition);
}

a:hover,
a:focus-visible {
  color: var(--pk-gold-600);
}

.topbar {
  background: linear-gradient(90deg, var(--pk-teal-950), var(--pk-teal-800) 55%, var(--pk-teal-900));
  color: var(--pk-teal-100);
  font-size: 0.8125rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(212, 168, 75, 0.25);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-align: center;
}

.topbar i {
  color: var(--pk-gold-400);
  font-size: 0.9rem;
}

.topbar strong {
  color: var(--pk-gold-400);
  font-weight: 600;
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 69, 75, 0.1);
  box-shadow: 0 4px 24px rgba(6, 26, 28, 0.06);
}

.navbar-pk {
  padding: 0.85rem 0;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--pk-teal-900);
}

.brand-link:hover,
.brand-link:focus-visible {
  color: var(--pk-teal-700);
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 0.5rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--pk-font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--pk-teal-900);
}

.brand-tag {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--pk-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(15, 69, 75, 0.18);
  border-radius: 0.65rem;
  background: var(--pk-white);
  color: var(--pk-teal-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: background var(--pk-transition), color var(--pk-transition), border-color var(--pk-transition);
}

.nav-toggle:hover,
.nav-toggle:focus-visible,
.nav-toggle[aria-expanded="true"] {
  background: var(--pk-teal-800);
  color: var(--pk-white);
  border-color: var(--pk-teal-800);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link-pk {
  font-family: var(--pk-font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--pk-teal-900);
  padding: 0.55rem 0.9rem;
  border-radius: 0.55rem;
  transition: background var(--pk-transition), color var(--pk-transition);
}

.nav-link-pk:hover,
.nav-link-pk:focus-visible {
  background: rgba(26, 127, 138, 0.1);
  color: var(--pk-teal-700);
}

.nav-link-pk.active {
  background: linear-gradient(135deg, var(--pk-teal-800), var(--pk-teal-600));
  color: var(--pk-white);
}

.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(6, 26, 28, 0.88) 0%, rgba(10, 47, 51, 0.72) 48%, rgba(6, 26, 28, 0.45) 100%),
    linear-gradient(0deg, rgba(6, 26, 28, 0.55) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  padding: 4.5rem 0 5rem;
  max-width: 680px;
  animation: heroRise 0.9s ease-out both;
}

.hero-brand {
  font-family: var(--pk-font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--pk-white);
  margin: 0 0 1.1rem;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.hero-brand span {
  display: block;
  background: linear-gradient(90deg, var(--pk-gold-400), #f0d9a0 50%, var(--pk-gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: rgba(216, 242, 244, 0.92);
  max-width: 34rem;
  margin: 0 0 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-pk {
  font-family: var(--pk-font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.55rem;
  border-radius: 0.65rem;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: transform var(--pk-transition), background var(--pk-transition), color var(--pk-transition), border-color var(--pk-transition), box-shadow var(--pk-transition);
}

.btn-pk:hover {
  transform: translateY(-2px);
}

.btn-pk-primary {
  background: linear-gradient(135deg, var(--pk-gold-500), var(--pk-gold-600));
  color: var(--pk-teal-950);
  box-shadow: 0 10px 28px rgba(184, 146, 42, 0.35);
}

.btn-pk-primary:hover,
.btn-pk-primary:focus-visible {
  background: linear-gradient(135deg, var(--pk-gold-400), var(--pk-gold-500));
  color: var(--pk-teal-950);
}

.btn-pk-ghost {
  background: transparent;
  color: var(--pk-white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-pk-ghost:hover,
.btn-pk-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--pk-white);
  border-color: var(--pk-gold-400);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  color: rgba(216, 242, 244, 0.75);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  animation: scrollPulse 2.2s ease-in-out infinite;
}

.hero-scroll i {
  font-size: 1rem;
  color: var(--pk-gold-400);
}

.intro-section {
  padding: 4.5rem 0 5rem;
}

.section-title {
  font-family: var(--pk-font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  letter-spacing: -0.02em;
  color: var(--pk-teal-900);
  margin: 0 0 0.85rem;
}

.section-lead {
  color: var(--pk-muted);
  font-size: 1.05rem;
  max-width: 38rem;
  margin: 0 0 2.5rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-item {
  padding: 1.75rem 1.5rem;
  border-radius: var(--pk-radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 69, 75, 0.08);
  transition: transform var(--pk-transition), box-shadow var(--pk-transition);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--pk-shadow);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--pk-teal-700), var(--pk-teal-500));
  color: var(--pk-white);
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
}

.feature-item h3 {
  font-family: var(--pk-font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--pk-teal-900);
  margin: 0 0 0.55rem;
}

.feature-item p {
  margin: 0;
  color: var(--pk-muted);
  font-size: 0.95rem;
}

.content-block {
  max-width: 52rem;
  margin-bottom: 2.25rem;
}

.content-block p {
  color: var(--pk-muted);
  font-size: 1rem;
  margin: 0 0 1rem;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.content-block-narrow {
  max-width: 42rem;
}

.content-block-light p {
  color: rgba(216, 242, 244, 0.88);
}

.content-block-light strong {
  color: var(--pk-gold-400);
  font-weight: 600;
}

.games-section {
  padding: 1rem 0 5rem;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.game-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 69, 75, 0.1);
  border-radius: calc(var(--pk-radius) + 0.15rem);
  overflow: hidden;
  transition: transform var(--pk-transition), box-shadow var(--pk-transition);
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--pk-shadow);
}

.game-media {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--pk-teal-900);
}

.game-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.game-card:hover .game-media img {
  transform: scale(1.05);
}

.game-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.3rem 1.45rem;
}

.game-type {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pk-teal-600);
  margin-bottom: 0.55rem;
}

.game-title {
  font-family: var(--pk-font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.55rem;
  line-height: 1.2;
}

.game-title a {
  color: var(--pk-teal-900);
}

.game-title a:hover,
.game-title a:focus-visible {
  color: var(--pk-gold-600);
}

.game-desc {
  margin: 0 0 1.2rem;
  color: var(--pk-muted);
  font-size: 0.92rem;
  flex: 1;
}

.btn-pk-play {
  align-self: flex-start;
  background: linear-gradient(135deg, var(--pk-teal-700), var(--pk-teal-500));
  color: var(--pk-white);
  box-shadow: 0 8px 22px rgba(21, 101, 110, 0.28);
}

.btn-pk-play:hover,
.btn-pk-play:focus-visible {
  background: linear-gradient(135deg, var(--pk-teal-600), var(--pk-teal-400));
  color: var(--pk-white);
}

.btn-pk-secondary {
  background: linear-gradient(135deg, var(--pk-teal-800), var(--pk-teal-600));
  color: var(--pk-white);
  box-shadow: 0 8px 22px rgba(15, 69, 75, 0.22);
}

.btn-pk-secondary:hover,
.btn-pk-secondary:focus-visible {
  background: linear-gradient(135deg, var(--pk-teal-700), var(--pk-teal-500));
  color: var(--pk-white);
}

.btn-pk-outline {
  background: transparent;
  color: var(--pk-teal-800);
  border-color: rgba(15, 69, 75, 0.28);
}

.btn-pk-outline:hover,
.btn-pk-outline:focus-visible {
  background: rgba(26, 127, 138, 0.08);
  color: var(--pk-teal-700);
  border-color: var(--pk-teal-600);
}

.about-section {
  padding: 4.5rem 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(232, 241, 241, 0.9));
  border-top: 1px solid rgba(15, 69, 75, 0.06);
  border-bottom: 1px solid rgba(15, 69, 75, 0.06);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.about-aside {
  display: grid;
  gap: 1.15rem;
}

.aside-panel {
  padding: 1.5rem 1.4rem;
  border-radius: var(--pk-radius);
  background: linear-gradient(160deg, var(--pk-teal-900), var(--pk-teal-800));
  color: var(--pk-teal-100);
}

.aside-panel h3 {
  font-family: var(--pk-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pk-white);
  margin: 0 0 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.aside-panel h3 i {
  color: var(--pk-gold-400);
}

.aside-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.aside-panel li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.65rem;
  font-size: 0.92rem;
  color: rgba(216, 242, 244, 0.88);
}

.aside-panel li:last-child {
  margin-bottom: 0;
}

.aside-panel li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--pk-gold-400);
}

.experience-section {
  padding: 4.5rem 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-item {
  padding: 1.75rem 1.5rem;
  border-radius: var(--pk-radius);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 69, 75, 0.08);
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pk-font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--pk-teal-950);
  background: linear-gradient(135deg, var(--pk-gold-400), var(--pk-gold-600));
  margin-bottom: 1rem;
}

.step-item h3 {
  font-family: var(--pk-font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--pk-teal-900);
  margin: 0 0 0.55rem;
}

.step-item p {
  margin: 0;
  color: var(--pk-muted);
  font-size: 0.95rem;
}

.disclaimer-section {
  padding: 4.5rem 0;
}

.disclaimer-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.75rem;
  align-items: start;
  padding: 2.25rem 2rem;
  border-radius: calc(var(--pk-radius) + 0.25rem);
  background: linear-gradient(135deg, var(--pk-teal-950), var(--pk-teal-800) 55%, #13484f);
  box-shadow: var(--pk-shadow);
}

.disclaimer-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 192, 106, 0.15);
  color: var(--pk-gold-400);
  font-size: 1.6rem;
  border: 1px solid rgba(230, 192, 106, 0.3);
}

.section-title-light {
  color: var(--pk-white);
}

.section-lead-light {
  color: rgba(216, 242, 244, 0.78);
}

.disclaimer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.badge-pk {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(216, 242, 244, 0.18);
  color: var(--pk-teal-100);
  font-size: 0.85rem;
  font-weight: 600;
}

.badge-pk i {
  color: var(--pk-gold-400);
}

.community-section {
  padding: 1rem 0 5rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.site-footer {
  background: linear-gradient(160deg, var(--pk-teal-950), var(--pk-teal-900));
  color: var(--pk-teal-100);
  padding: 3.5rem 0 1.75rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.9fr 1fr;
  gap: 2rem 1.75rem;
  margin-bottom: 2.25rem;
}

.footer-brand {
  font-family: var(--pk-font-display);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--pk-white);
  margin-bottom: 0.75rem;
}

.footer-brand span {
  color: var(--pk-gold-400);
}

.footer-copy {
  color: rgba(216, 242, 244, 0.72);
  font-size: 0.92rem;
  margin-bottom: 1.15rem;
  line-height: 1.7;
}

.footer-disclaimer {
  padding: 1rem 1.1rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(216, 242, 244, 0.12);
}

.footer-disclaimer p {
  margin: 0 0 0.7rem;
  font-size: 0.84rem;
  color: rgba(216, 242, 244, 0.78);
  line-height: 1.6;
}

.footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.footer-disclaimer strong {
  color: var(--pk-gold-400);
}

.footer-heading {
  font-family: var(--pk-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--pk-white);
  margin: 0 0 1rem;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links-col a {
  color: rgba(216, 242, 244, 0.82);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-links-col a:hover,
.footer-links-col a:focus-visible {
  color: var(--pk-gold-400);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.footer-badge-link,
.footer-badge-img {
  display: inline-flex;
  align-items: center;
}

.footer-badge-link img,
.footer-badge-img {
  height: 48px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  border-radius: 0.4rem;
  padding: 0.35rem 0.5rem;
}

.footer-meta {
  border-top: 1px solid rgba(216, 242, 244, 0.12);
  padding-top: 1.25rem;
  font-size: 0.8rem;
  color: rgba(216, 242, 244, 0.55);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.55; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 991.98px) {
  .nav-panel {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 1rem;
    background: var(--pk-white);
    border-bottom: 1px solid rgba(15, 69, 75, 0.1);
    box-shadow: 0 16px 32px rgba(6, 26, 28, 0.12);
    z-index: 1050;
  }

  .nav-panel.is-open {
    display: flex;
    animation: heroRise 0.28s ease-out both;
  }

  .nav-link-pk {
    padding: 0.85rem 1rem;
  }

  .site-header {
    position: relative;
  }

  .feature-grid,
  .games-grid,
  .steps-grid,
  .about-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .disclaimer-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: min(78vh, 640px);
  }

  .hero-content {
    padding: 3.5rem 0 4.5rem;
  }
}

@media (max-width: 1199.98px) and (min-width: 992px) {
  .games-grid,
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr;
  }

  .about-layout {
    grid-template-columns: 1.2fr 0.9fr;
  }
}

@media (max-width: 575.98px) {
  .topbar {
    font-size: 0.75rem;
    padding: 0.65rem 0;
  }

  .btn-pk-play {
    width: 100%;
    justify-content: center;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .brand-tag {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-pk {
    justify-content: center;
    width: 100%;
  }

  .footer-meta {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-bg,
  .hero-content,
  .hero-scroll,
  .nav-panel.is-open {
    animation: none;
  }
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(6, 26, 28, 0.82);
  backdrop-filter: blur(8px);
}

.age-gate.is-open {
  display: flex;
}

.age-gate-dialog {
  width: min(100%, 520px);
  background: linear-gradient(165deg, #0c3438, #0a2a2e 55%, #123f45);
  border: 1px solid rgba(230, 192, 106, 0.28);
  border-radius: 1rem;
  padding: 1.75rem 1.6rem 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  color: var(--pk-teal-100);
}

.age-gate-dialog h2 {
  font-family: var(--pk-font-display);
  font-weight: 800;
  font-size: 1.55rem;
  color: var(--pk-white);
  margin: 0 0 0.85rem;
}

.age-gate-dialog p {
  margin: 0 0 0.85rem;
  color: rgba(216, 242, 244, 0.88);
  font-size: 0.95rem;
  line-height: 1.65;
}

.age-check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 1.15rem 0 1.25rem;
  padding: 0.85rem 0.95rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(216, 242, 244, 0.14);
}

.age-check input {
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--pk-gold-500);
  flex-shrink: 0;
}

.age-check label {
  font-size: 0.9rem;
  color: rgba(216, 242, 244, 0.92);
  cursor: pointer;
}

.age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.age-actions .btn-pk {
  flex: 1 1 140px;
  justify-content: center;
}

.btn-pk:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3500;
  display: none;
  max-width: 720px;
  margin: 0 auto;
  padding: 1.15rem 1.25rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 69, 75, 0.12);
  box-shadow: 0 18px 40px rgba(6, 26, 28, 0.18);
}

.cookie-banner.is-open {
  display: block;
}

.cookie-banner h2 {
  font-family: var(--pk-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pk-teal-900);
  margin: 0 0 0.45rem;
}

.cookie-banner p {
  margin: 0 0 0.95rem;
  color: var(--pk-muted);
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.cookie-actions .btn-pk {
  padding: 0.65rem 1.1rem;
  font-size: 0.88rem;
}

.page-hero {
  padding: 3.25rem 0 2rem;
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(42, 154, 166, 0.14), transparent 55%),
    linear-gradient(180deg, rgba(15, 69, 75, 0.06), transparent);
}

.page-hero h1 {
  font-family: var(--pk-font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  color: var(--pk-teal-900);
  margin: 0 0 0.85rem;
}

.page-hero .lead {
  max-width: 46rem;
  color: var(--pk-muted);
  font-size: 1.05rem;
  margin: 0;
}

.page-section {
  padding: 1.5rem 0 4.5rem;
}

.page-section .content-block {
  max-width: 48rem;
}

.page-section h2 {
  font-family: var(--pk-font-display);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--pk-teal-900);
  margin: 2rem 0 0.85rem;
}

.page-section h2:first-child {
  margin-top: 0;
}

.page-section ul,
.page-section ol {
  color: var(--pk-muted);
  padding-left: 1.2rem;
  margin: 0 0 1rem;
}

.page-section li {
  margin-bottom: 0.45rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 48rem;
}

.faq-item {
  padding: 1.2rem 1.25rem;
  border-radius: var(--pk-radius);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 69, 75, 0.08);
}

.faq-item h2 {
  font-family: var(--pk-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pk-teal-900);
  margin: 0 0 0.5rem;
}

.faq-item p {
  margin: 0;
  color: var(--pk-muted);
  font-size: 0.95rem;
}

.contact-card {
  max-width: 36rem;
  padding: 1.6rem 1.5rem;
  border-radius: var(--pk-radius);
  background: linear-gradient(160deg, var(--pk-teal-900), var(--pk-teal-800));
  color: var(--pk-teal-100);
}

.contact-card h2 {
  font-family: var(--pk-font-display);
  font-size: 1.2rem;
  color: var(--pk-white);
  margin: 0 0 0.65rem;
}

.contact-card p {
  margin: 0 0 1rem;
  color: rgba(216, 242, 244, 0.85);
}

.contact-card a {
  color: var(--pk-gold-400);
  font-weight: 700;
  font-size: 1.1rem;
}

.game-play-wrap {
  padding: 0 0 3rem;
}

.game-disclaimer-box {
  margin-top: 1.75rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--pk-radius);
  background: rgba(15, 69, 75, 0.06);
  border: 1px solid rgba(15, 69, 75, 0.1);
}

.game-disclaimer-box h2 {
  font-family: var(--pk-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pk-teal-900);
  margin: 0 0 0.65rem;
}

.game-disclaimer-box p {
  margin: 0 0 0.75rem;
  color: var(--pk-muted);
  font-size: 0.92rem;
}

.game-disclaimer-box p:last-child {
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .cookie-banner {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
  }

  .age-actions .btn-pk {
    flex: 1 1 100%;
  }
}
