:root {
  --pt-ink: #12141a;
  --pt-ink-soft: #1a1e28;
  --pt-panel: rgba(22, 26, 36, 0.72);
  --pt-line: rgba(255, 255, 255, 0.1);
  --pt-coral: #ff6b4a;
  --pt-coral-deep: #e24f30;
  --pt-ice: #5ce1e6;
  --pt-sand: #f3ebe1;
  --pt-muted: #a9b3c4;
  --pt-white: #ffffff;
  --pt-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
  --pt-font-display: "Bricolage Grotesque", sans-serif;
  --pt-font-body: "Figtree", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--pt-font-body);
  color: var(--pt-sand);
  background-color: var(--pt-ink);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    radial-gradient(900px 520px at 8% -8%, rgba(255, 107, 74, 0.16), transparent 60%),
    radial-gradient(760px 480px at 92% 4%, rgba(92, 225, 230, 0.12), transparent 55%),
    linear-gradient(165deg, #171b24 0%, var(--pt-ink) 42%, #0d1016 100%);
  background-size: 48px 48px, 48px 48px, auto, auto, auto;
  min-height: 100vh;
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-name,
.hero-title,
.btn-pt-primary,
.btn-pt-ghost {
  font-family: var(--pt-font-display);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, clip-path 0.25s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-glow {
  position: fixed;
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}

.page-glow-a {
  top: -8%;
  left: -6%;
  background: #ff6b4a;
  animation: glowDrift 12s ease-in-out infinite alternate;
}

.page-glow-b {
  right: -8%;
  top: 18%;
  background: #5ce1e6;
  animation: glowDrift 14s ease-in-out infinite alternate-reverse;
}

.topbar {
  position: relative;
  z-index: 30;
  background: linear-gradient(90deg, rgba(255, 107, 74, 0.12), rgba(18, 20, 26, 0.95) 28%, rgba(18, 20, 26, 0.95) 72%, rgba(92, 225, 230, 0.1));
  border-bottom: 1px solid var(--pt-line);
}

.topbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  background: rgba(255, 107, 74, 0.16);
  border: 1px solid rgba(255, 107, 74, 0.45);
  color: #ffb29e;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.topbar-text {
  margin: 0;
  color: var(--pt-muted);
  font-size: 0.9rem;
  text-align: center;
}

.topbar-year {
  font-family: var(--pt-font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: var(--pt-ice);
}

.pt-navbar {
  position: relative;
  z-index: 40;
  background: rgba(16, 18, 24, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--pt-line);
  padding-top: 0.95rem;
  padding-bottom: 0.95rem;
}

.pt-navbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pt-coral) 20%, var(--pt-ice) 80%, transparent);
  opacity: 0.75;
}

.pt-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(160deg, rgba(255, 107, 74, 0.95), rgba(92, 225, 230, 0.75));
  color: #12141a;
  font-size: 1.05rem;
  box-shadow: 0 0 0 5px rgba(255, 107, 74, 0.12);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  color: var(--pt-white);
}

.brand-tag {
  font-size: 0.7rem;
  color: var(--pt-muted);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pt-toggler {
  border: 1px solid var(--pt-line);
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  padding: 0.6rem 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
}

.pt-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(92, 225, 230, 0.25);
}

.toggler-line {
  width: 22px;
  height: 2px;
  background: var(--pt-sand);
  display: block;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.pt-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.pt-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
  opacity: 0;
}

.pt-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.pt-nav-links {
  gap: 0.15rem;
}

.pt-nav-links .nav-link {
  color: var(--pt-muted);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.55rem 0.8rem !important;
  border-radius: 0;
  position: relative;
}

.pt-nav-links .nav-link::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.28rem;
  height: 2px;
  background: linear-gradient(90deg, var(--pt-coral), var(--pt-ice));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.pt-nav-links .nav-link:hover,
.pt-nav-links .nav-link:focus {
  color: var(--pt-white);
  background: transparent;
}

.pt-nav-links .nav-link:hover::after,
.pt-nav-links .nav-link:focus::after,
.pt-nav-links .nav-link.active::after {
  transform: scaleX(1);
}

.pt-nav-links .nav-link.active {
  color: var(--pt-white);
  background: transparent;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 136px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.05);
  filter: saturate(0.85) contrast(1.05);
  animation: heroDrift 18s ease-in-out infinite alternate;
  z-index: -3;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(18, 20, 26, 0.94) 0%, rgba(18, 20, 26, 0.78) 38%, rgba(18, 20, 26, 0.35) 72%, rgba(18, 20, 26, 0.55) 100%),
    linear-gradient(0deg, rgba(12, 14, 18, 0.88) 0%, transparent 48%);
  z-index: -2;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(92, 225, 230, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 74, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.75), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.hero-slash {
  position: absolute;
  top: -10%;
  right: 8%;
  width: 2px;
  height: 120%;
  background: linear-gradient(180deg, transparent, rgba(255, 107, 74, 0.65), rgba(92, 225, 230, 0.55), transparent);
  transform: rotate(18deg);
  transform-origin: center;
  z-index: 0;
  pointer-events: none;
  animation: slashGlow 5s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 4.2rem;
  padding-bottom: 5rem;
}

.hero-panel {
  max-width: 680px;
  animation: heroRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
  padding: 0.4rem 0.85rem;
  background: rgba(92, 225, 230, 0.08);
  border-left: 3px solid var(--pt-ice);
  color: var(--pt-ice);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-title {
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin-bottom: 1.25rem;
  color: var(--pt-white);
  max-width: 11ch;
  text-wrap: balance;
  background: linear-gradient(120deg, #ffffff 20%, #ffd2c5 55%, #bff7f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.08rem;
  color: var(--pt-muted);
  max-width: 36rem;
  margin-bottom: 2.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn-pt-primary,
.btn-pt-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  letter-spacing: -0.01em;
}

.btn-pt-primary {
  background: linear-gradient(135deg, var(--pt-coral) 0%, var(--pt-coral-deep) 100%);
  color: #1a0d0a;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  box-shadow: 0 16px 36px rgba(255, 107, 74, 0.28);
}

.btn-pt-primary:hover {
  color: #120805;
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(255, 107, 74, 0.38);
}

.btn-pt-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--pt-sand);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

.btn-pt-ghost:hover {
  background: rgba(92, 225, 230, 0.08);
  border-color: rgba(92, 225, 230, 0.45);
  color: var(--pt-white);
  transform: translateY(-3px);
}

.hero-float {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-float-a {
  width: 180px;
  height: 180px;
  right: 6%;
  top: 14%;
  border-radius: 28px;
  transform: rotate(18deg);
  border-color: rgba(255, 107, 74, 0.28);
  animation: frameSpin 16s linear infinite;
}

.hero-float-b {
  width: 110px;
  height: 110px;
  right: 22%;
  bottom: 12%;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  border: none;
  background: rgba(92, 225, 230, 0.08);
  animation: chipFloat 9s ease-in-out infinite;
}

.games-section {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 6rem;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.75rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  color: var(--pt-ice);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--pt-font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 0.9rem;
  color: var(--pt-white);
}

.section-lead {
  margin: 0;
  color: var(--pt-muted);
  font-size: 1.05rem;
}

.game-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, rgba(28, 32, 42, 0.92), rgba(16, 18, 24, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.1);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(92, 225, 230, 0.35);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.game-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #0d1016;
}

.game-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.game-card:hover .game-media img {
  transform: scale(1.06);
}

.game-type {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  background: rgba(18, 20, 26, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--pt-sand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.game-type i {
  color: var(--pt-coral);
}

.game-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.35rem 1.3rem 1.5rem;
  flex: 1;
}

.game-name {
  margin: 0;
  font-family: var(--pt-font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.game-name a {
  color: var(--pt-white);
}

.game-name a:hover {
  color: var(--pt-ice);
}

.game-desc {
  margin: 0;
  color: var(--pt-muted);
  font-size: 0.95rem;
  flex: 1;
}

.btn-pt-play {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.35rem;
  padding: 0.7rem 1.15rem;
  font-family: var(--pt-font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: #10141c;
  background: linear-gradient(135deg, var(--pt-ice), #3bb8c4);
  border: none;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-pt-play:hover {
  color: #0a0d12;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(92, 225, 230, 0.28);
}

.about-section,
.experience-section,
.values-section {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.about-section {
  border-top: 1px solid var(--pt-line);
  background: linear-gradient(180deg, rgba(255, 107, 74, 0.04), transparent 40%);
}

.section-head-tight {
  margin-bottom: 1.5rem;
}

.content-block p {
  color: var(--pt-muted);
  font-size: 1.05rem;
  margin-bottom: 1.15rem;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.feature-panel {
  height: 100%;
  padding: 1.6rem 1.4rem;
  background: rgba(22, 26, 36, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  background: rgba(255, 107, 74, 0.12);
  border: 1px solid rgba(255, 107, 74, 0.28);
  color: var(--pt-coral);
  font-size: 1.1rem;
}

.feature-title {
  font-family: var(--pt-font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  color: var(--pt-white);
}

.feature-text {
  margin: 0;
  color: var(--pt-muted);
  font-size: 0.98rem;
}

.disclaimer-section {
  position: relative;
  z-index: 1;
  padding: 1rem 0 5rem;
}

.disclaimer-shell {
  padding: 2.4rem;
  background:
    linear-gradient(135deg, rgba(255, 107, 74, 0.1), rgba(92, 225, 230, 0.08)),
    rgba(16, 18, 24, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
}

.disclaimer-panel p {
  color: var(--pt-muted);
  font-size: 1.02rem;
  margin-bottom: 1rem;
}

.disclaimer-panel p:last-child {
  margin-bottom: 0;
}

.section-title-sm {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  margin-bottom: 1rem;
}

.disclaimer-panel-alt {
  padding-left: 0;
}

@media (min-width: 992px) {
  .disclaimer-panel-alt {
    padding-left: 1.25rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.values-list {
  display: grid;
  gap: 1.25rem;
}

.value-item {
  padding: 1.25rem 1.35rem;
  border-left: 3px solid var(--pt-coral);
  background: rgba(255, 255, 255, 0.02);
}

.value-item h3 {
  font-family: var(--pt-font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem;
  color: var(--pt-white);
}

.value-item p {
  margin: 0;
  color: var(--pt-muted);
  font-size: 1rem;
}

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  padding: 4.5rem 0 2rem;
  background: linear-gradient(180deg, rgba(10, 12, 16, 0.2), rgba(10, 12, 16, 0.96));
  border-top: 1px solid var(--pt-line);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.25rem;
}

.footer-about {
  color: var(--pt-muted);
  font-size: 0.98rem;
  margin-bottom: 1rem;
}

.footer-title {
  font-family: var(--pt-font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--pt-white);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--pt-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--pt-ice);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.footer-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.45rem 0.55rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-badge-link img {
  width: auto;
  height: 42px;
  max-width: 150px;
  object-fit: contain;
}

.footer-disclaimer {
  margin-top: 2.75rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 107, 74, 0.05);
}

.footer-disclaimer p {
  margin: 0 0 0.85rem;
  color: var(--pt-muted);
  font-size: 0.95rem;
}

.footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.footer-disclaimer strong {
  color: var(--pt-sand);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--pt-line);
}

.footer-bottom p {
  margin: 0;
  color: var(--pt-muted);
  font-size: 0.88rem;
}

body.pt-lock {
  overflow: hidden;
  height: 100vh;
}

.pt-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(6, 8, 12, 0.84);
  backdrop-filter: blur(10px);
}

.pt-overlay[hidden],
.pt-cookie[hidden] {
  display: none !important;
}

.pt-modal {
  position: relative;
  width: min(100%, 560px);
  padding: 2rem 1.75rem;
  background: linear-gradient(165deg, rgba(28, 32, 42, 0.98), rgba(14, 16, 22, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.pt-modal-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -60px;
  top: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.28), transparent 70%);
  pointer-events: none;
}

.pt-modal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  color: var(--pt-coral);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pt-modal h2 {
  font-family: var(--pt-font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.9rem;
  color: var(--pt-white);
}

.pt-modal p {
  color: var(--pt-muted);
  font-size: 0.98rem;
  margin-bottom: 0.85rem;
}

.pt-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1.2rem 0 1.35rem;
  color: var(--pt-sand);
  font-size: 0.92rem;
  cursor: pointer;
}

.pt-check input {
  margin-top: 0.2rem;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--pt-coral);
  flex-shrink: 0;
}

.pt-modal .btn-pt-primary {
  width: 100%;
  justify-content: center;
}

.pt-modal .btn-pt-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.pt-cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9990;
}

.pt-cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1.15rem 1.35rem;
  background: rgba(16, 18, 24, 0.96);
  border: 1px solid rgba(92, 225, 230, 0.28);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}

.pt-cookie-copy {
  flex: 1 1 280px;
}

.pt-cookie-copy strong {
  display: block;
  font-family: var(--pt-font-display);
  color: var(--pt-white);
  margin-bottom: 0.35rem;
}

.pt-cookie-copy p {
  margin: 0;
  color: var(--pt-muted);
  font-size: 0.92rem;
}

.pt-cookie-copy a {
  color: var(--pt-ice);
  text-decoration: underline;
}

.pt-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.page-hero {
  position: relative;
  z-index: 1;
  padding: 4rem 0 2.5rem;
  border-bottom: 1px solid var(--pt-line);
  background:
    radial-gradient(700px 280px at 10% 0%, rgba(255, 107, 74, 0.12), transparent 60%),
    radial-gradient(600px 240px at 90% 20%, rgba(92, 225, 230, 0.1), transparent 55%);
}

.page-hero .section-title {
  margin-bottom: 0.85rem;
}

.page-hero .section-lead {
  max-width: 46rem;
}

.page-section {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 4.5rem;
}

.policy-content h2,
.page-prose h2 {
  font-family: var(--pt-font-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--pt-white);
  margin: 2rem 0 0.85rem;
}

.policy-content h3,
.page-prose h3 {
  font-family: var(--pt-font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--pt-sand);
  margin: 1.5rem 0 0.65rem;
}

.policy-content p,
.page-prose p,
.faq-item p {
  color: var(--pt-muted);
  font-size: 1.02rem;
  margin-bottom: 1rem;
}

.policy-content ul,
.page-prose ul {
  color: var(--pt-muted);
  padding-left: 1.2rem;
  margin-bottom: 1.2rem;
}

.policy-content li,
.page-prose li {
  margin-bottom: 0.45rem;
}

.faq-item {
  padding: 1.35rem 1.4rem;
  margin-bottom: 1rem;
  background: rgba(22, 26, 36, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--pt-ice);
}

.faq-item h3 {
  font-family: var(--pt-font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--pt-white);
  margin-bottom: 0.55rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.5rem;
  padding: 0.95rem 1.25rem;
  background: rgba(92, 225, 230, 0.08);
  border: 1px solid rgba(92, 225, 230, 0.28);
  color: var(--pt-ice);
  font-family: var(--pt-font-display);
  font-weight: 700;
  font-size: 1.15rem;
}

.contact-email:hover {
  color: var(--pt-white);
  border-color: rgba(255, 107, 74, 0.45);
}

.game-stage-section {
  position: relative;
  z-index: 1;
  padding: 2rem 0 3rem;
}

.game-stage {
  position: relative;
  padding: 1.5rem;
  background:
    radial-gradient(500px 280px at 20% 10%, rgba(255, 107, 74, 0.14), transparent 60%),
    radial-gradient(480px 260px at 80% 80%, rgba(92, 225, 230, 0.12), transparent 55%),
    linear-gradient(165deg, rgba(24, 28, 38, 0.96), rgba(12, 14, 20, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.game-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: 0.5;
}

.game-toolbar {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.game-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--pt-sand);
  font-weight: 600;
}

.game-stat strong {
  color: var(--pt-ice);
  font-family: var(--pt-font-display);
}

.game-canvas-wrap {
  position: relative;
  z-index: 1;
}

.game-note {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  color: var(--pt-muted);
  font-size: 0.92rem;
}

.game-disclaimer-box {
  margin-top: 1.5rem;
  padding: 1.35rem 1.4rem;
  border: 1px solid rgba(255, 107, 74, 0.28);
  background: rgba(255, 107, 74, 0.06);
}

.game-disclaimer-box h3 {
  font-family: var(--pt-font-display);
  font-size: 1.15rem;
  color: var(--pt-white);
  margin-bottom: 0.7rem;
}

.game-disclaimer-box p {
  margin: 0 0 0.75rem;
  color: var(--pt-muted);
}

.game-disclaimer-box p:last-child {
  margin-bottom: 0;
}

.slot-machine {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 1.35rem;
  background: linear-gradient(180deg, rgba(36, 20, 18, 0.9), rgba(12, 14, 20, 0.95));
  border: 1px solid rgba(255, 107, 74, 0.35);
  box-shadow: 0 0 40px rgba(255, 107, 74, 0.15), inset 0 0 40px rgba(92, 225, 230, 0.05);
}

.slot-reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.slot-reel {
  height: 180px;
  overflow: hidden;
  border: 1px solid rgba(92, 225, 230, 0.35);
  background: linear-gradient(180deg, #0a0d14, #151a24);
  box-shadow: inset 0 0 24px rgba(92, 225, 230, 0.12);
  position: relative;
}

.slot-reel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 58px;
  transform: translateY(-50%);
  border-top: 1px solid rgba(255, 107, 74, 0.45);
  border-bottom: 1px solid rgba(255, 107, 74, 0.45);
  pointer-events: none;
  box-shadow: 0 0 20px rgba(255, 107, 74, 0.15);
}

.slot-strip {
  display: flex;
  flex-direction: column;
  transition: transform 0.1s linear;
}

.slot-symbol {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--pt-ice);
  text-shadow: 0 0 12px rgba(92, 225, 230, 0.55);
}

.slot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.slot-message {
  min-height: 1.5rem;
  margin-top: 0.9rem;
  text-align: center;
  color: var(--pt-sand);
  font-weight: 600;
}

.bj-table {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 1.5rem;
  border-radius: 40% 40% 12px 12px / 18% 18% 12px 12px;
  background:
    radial-gradient(circle at 50% 30%, rgba(20, 80, 70, 0.45), transparent 55%),
    linear-gradient(180deg, #12352f, #0b1c1a);
  border: 2px solid rgba(232, 184, 74, 0.35);
  box-shadow: 0 0 50px rgba(46, 196, 182, 0.12);
}

.bj-row {
  margin-bottom: 1.25rem;
}

.bj-label {
  color: var(--pt-muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.bj-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  min-height: 96px;
}

.bj-card {
  width: 68px;
  height: 96px;
  border-radius: 8px;
  background: linear-gradient(160deg, #f7f2ea, #dfe7f2);
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--pt-font-display);
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  animation: cardIn 0.35s ease both;
}

.bj-card.red {
  color: #c62828;
}

.bj-card.back {
  background: linear-gradient(145deg, #1d3348, #0f1b28);
  color: var(--pt-ice);
  border: 1px solid rgba(92, 225, 230, 0.35);
}

.bj-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.bj-message {
  text-align: center;
  margin-top: 0.9rem;
  min-height: 1.5rem;
  font-weight: 600;
  color: var(--pt-sand);
}

.roulette-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: center;
}

.roulette-wheel-wrap {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1;
  margin: 0 auto;
}

.roulette-wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 6px solid rgba(255, 107, 74, 0.55);
  box-shadow:
    0 0 30px rgba(255, 107, 74, 0.25),
    inset 0 0 30px rgba(0, 0, 0, 0.45);
  background: conic-gradient(
    #12141a 0 10deg,
    #ff6b4a 10deg 20deg,
    #12141a 20deg 30deg,
    #5ce1e6 30deg 40deg,
    #12141a 40deg 50deg,
    #ff6b4a 50deg 60deg,
    #12141a 60deg 70deg,
    #5ce1e6 70deg 80deg,
    #12141a 80deg 90deg,
    #ff6b4a 90deg 100deg,
    #12141a 100deg 110deg,
    #5ce1e6 110deg 120deg,
    #12141a 120deg 130deg,
    #ff6b4a 130deg 140deg,
    #12141a 140deg 150deg,
    #5ce1e6 150deg 160deg,
    #12141a 160deg 170deg,
    #ff6b4a 170deg 180deg,
    #12141a 180deg 190deg,
    #5ce1e6 190deg 200deg,
    #12141a 200deg 210deg,
    #ff6b4a 210deg 220deg,
    #12141a 220deg 230deg,
    #5ce1e6 230deg 240deg,
    #12141a 240deg 250deg,
    #ff6b4a 250deg 260deg,
    #12141a 260deg 270deg,
    #5ce1e6 270deg 280deg,
    #12141a 280deg 290deg,
    #ff6b4a 290deg 300deg,
    #12141a 300deg 310deg,
    #5ce1e6 310deg 320deg,
    #12141a 320deg 330deg,
    #ff6b4a 330deg 340deg,
    #12141a 340deg 350deg,
    #5ce1e6 350deg 360deg
  );
  transition: transform 4s cubic-bezier(0.12, 0.75, 0.12, 1);
}

.roulette-pointer {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 18px solid var(--pt-coral);
  filter: drop-shadow(0 0 8px rgba(255, 107, 74, 0.7));
  z-index: 2;
}

.roulette-center {
  position: absolute;
  inset: 38%;
  border-radius: 50%;
  background: radial-gradient(circle, #2a303c, #10141a);
  border: 2px solid rgba(92, 225, 230, 0.45);
  box-shadow: 0 0 20px rgba(92, 225, 230, 0.25);
  z-index: 1;
}

.roulette-controls {
  display: grid;
  gap: 0.85rem;
}

.roulette-picks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.roulette-pick {
  padding: 0.7rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--pt-sand);
  font-weight: 700;
  cursor: pointer;
}

.roulette-pick.active {
  border-color: rgba(92, 225, 230, 0.55);
  background: rgba(92, 225, 230, 0.12);
  color: var(--pt-white);
  box-shadow: 0 0 16px rgba(92, 225, 230, 0.2);
}

.roulette-message {
  min-height: 1.5rem;
  font-weight: 600;
  color: var(--pt-sand);
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.8%, -1.2%, 0);
  }
}

@keyframes glowDrift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(4%, 6%, 0);
  }
}

@keyframes slashGlow {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.9;
  }
}

@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes frameSpin {
  from {
    transform: rotate(18deg);
  }
  to {
    transform: rotate(378deg);
  }
}

@media (max-width: 991.98px) {
  .topbar-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 0.45rem;
  }

  .topbar-year {
    display: none;
  }

  .pt-nav-links {
    padding: 1rem 0 0.4rem;
  }

  .pt-nav-links .nav-link {
    padding: 0.8rem 0.9rem !important;
  }

  .pt-nav-links .nav-link::after {
    left: 0.9rem;
    right: auto;
    width: 28px;
    bottom: 0.45rem;
  }

  .hero {
    min-height: calc(100vh - 170px);
  }

  .hero-title {
    max-width: none;
  }

  .hero-slash {
    right: 2%;
  }

  .hero-float-a {
    width: 120px;
    height: 120px;
    opacity: 0.5;
  }
}

@media (max-width: 575.98px) {
  .brand-tag {
    display: none;
  }

  .hero-content {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-pt-primary,
  .btn-pt-ghost {
    justify-content: center;
  }

  .hero-float-b {
    display: none;
  }

  .disclaimer-shell {
    padding: 1.5rem 1.15rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .roulette-layout {
    grid-template-columns: 1fr;
  }

  .pt-cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .pt-cookie-actions {
    width: 100%;
  }

  .pt-cookie-actions .btn {
    flex: 1;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media,
  .hero-panel,
  .hero-float,
  .hero-slash,
  .page-glow {
    animation: none !important;
  }
}
