:root {
  font-size: 62.5%;
  --pg8b-primary: #8A2BE2;
  --pg8b-secondary: #9400D3;
  --pg8b-bg: #12051f;
  --pg8b-bg-soft: #1f1230;
  --pg8b-panel: #2C2C2C;
  --pg8b-panel-2: #2b1640;
  --pg8b-text: #fff8ff;
  --pg8b-muted: #DDA0DD;
  --pg8b-accent: #ffcf5c;
  --pg8b-aqua: #62f5ff;
  --pg8b-danger: #ff5e8d;
  --pg8b-line: rgba(221, 160, 221, .24);
  --pg8b-shadow: 0 1.4rem 4rem rgba(0, 0, 0, .4);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--pg8b-text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5rem;
  background:
    radial-gradient(circle at 12% 8%, rgba(138, 43, 226, .36), transparent 28rem),
    radial-gradient(circle at 88% 16%, rgba(98, 245, 255, .18), transparent 24rem),
    linear-gradient(160deg, #08000f 0%, var(--pg8b-bg) 50%, #21112c 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
body.pg8b-lock { overflow: hidden; }
main { padding-top: 7.4rem; }
.pg8b-wrapper {
  width: min(100%, 43rem);
  margin: 0 auto;
  padding: 0 1.4rem;
}
.pg8b-container { width: 100%; max-width: 43rem; margin: 0 auto; }
.pg8b-grid { display: grid; gap: 1.2rem; }
.pg8b-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: linear-gradient(90deg, rgba(18, 5, 31, .95), rgba(44, 44, 44, .9));
  border-bottom: .1rem solid var(--pg8b-line);
  backdrop-filter: blur(1.4rem);
  transition: padding .25s ease, background .25s ease;
}
.pg8b-header-compact { background: rgba(13, 4, 23, .98); }
.pg8b-topbar {
  height: 6.6rem;
  display: flex;
  align-items: center;
  gap: .9rem;
}
.pg8b-brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  min-width: 0;
  text-decoration: none;
}
.pg8b-logo {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  box-shadow: 0 0 0 .2rem rgba(221,160,221,.2), 0 .6rem 1.6rem rgba(148,0,211,.35);
}
.pg8b-brand-text { display: flex; flex-direction: column; min-width: 0; }
.pg8b-brand-name { font-weight: 900; font-size: 1.7rem; letter-spacing: -.03em; white-space: nowrap; }
.pg8b-brand-sub { color: var(--pg8b-muted); font-size: 1.05rem; line-height: 1.2; }
.pg8b-header-actions { margin-left: auto; display: flex; align-items: center; gap: .5rem; }
.pg8b-btn {
  min-height: 4.4rem;
  border: 0;
  border-radius: 999rem;
  padding: 0 1.4rem;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: transform .2s ease, filter .2s ease, border .2s ease;
}
.pg8b-btn:active, .pg8b-bottom-item:active { transform: scale(.94); }
.pg8b-btn-primary { background: linear-gradient(135deg, var(--pg8b-accent), #ff7fd6); color: #17051f; box-shadow: 0 .8rem 2rem rgba(255, 207, 92, .22); }
.pg8b-btn-ghost { background: rgba(221,160,221,.1); color: var(--pg8b-text); border: .1rem solid var(--pg8b-line); }
.pg8b-btn-glow { background: linear-gradient(135deg, var(--pg8b-primary), var(--pg8b-secondary)); color: white; box-shadow: 0 1rem 2.4rem rgba(138,43,226,.38); }
.pg8b-menu-button {
  width: 4.4rem;
  min-width: 4.4rem;
  height: 4.4rem;
  border-radius: 1.4rem;
  border: .1rem solid var(--pg8b-line);
  background: rgba(255,255,255,.07);
  color: var(--pg8b-text);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}
.pg8b-desktop-nav { display: none; }
.pg8b-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 0, 15, .72);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.pg8b-menu-open { opacity: 1; pointer-events: auto; }
.pg8b-menu-panel {
  width: min(36rem, 88vw);
  height: 100%;
  margin-left: auto;
  padding: 2rem;
  background: linear-gradient(180deg, #241139, #13061f);
  border-left: .1rem solid var(--pg8b-line);
  transform: translateX(100%);
  transition: transform .24s ease;
  overflow-y: auto;
}
.pg8b-menu-open .pg8b-menu-panel { transform: translateX(0); }
.pg8b-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.6rem; }
.pg8b-menu-title { font-size: 2rem; font-weight: 900; }
.pg8b-menu-close { width: 4.4rem; height: 4.4rem; border: 0; border-radius: 50%; background: var(--pg8b-secondary); color: white; }
.pg8b-menu-links { display: grid; gap: .8rem; }
.pg8b-menu-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.8rem;
  padding: 1rem 1.2rem;
  border-radius: 1.4rem;
  text-decoration: none;
  background: rgba(255,255,255,.06);
  border: .1rem solid transparent;
}
.pg8b-menu-link.pg8b-current { border-color: var(--pg8b-accent); color: var(--pg8b-accent); }
.pg8b-section { padding: 2rem 0; }
.pg8b-hero { padding: 1.6rem 0 2.4rem; }
.pg8b-kicker { color: var(--pg8b-aqua); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: 1.15rem; }
.pg8b-title { font-size: clamp(2.8rem, 10vw, 4.3rem); line-height: .98; margin: .8rem 0 1rem; letter-spacing: -.07em; }
.pg8b-subtitle { color: #eadbf0; line-height: 1.55; margin: 0 0 1.4rem; }
.pg8b-panel {
  background: linear-gradient(160deg, rgba(44,44,44,.9), rgba(43,22,64,.92));
  border: .1rem solid var(--pg8b-line);
  border-radius: 2.4rem;
  box-shadow: var(--pg8b-shadow);
  overflow: hidden;
}
.pg8b-card {
  border: .1rem solid var(--pg8b-line);
  border-radius: 2rem;
  padding: 1.4rem;
  background: rgba(255,255,255,.055);
}
.pg8b-card h3, .pg8b-card h2 { margin-top: 0; line-height: 1.15; }
.pg8b-card p, .pg8b-copy { color: #eadbf0; line-height: 1.55; }
.pg8b-cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.2rem; }
.pg8b-text-link { color: var(--pg8b-accent); font-weight: 900; cursor: pointer; text-decoration: underline; text-underline-offset: .25rem; }
.pg8b-internal-link { color: var(--pg8b-aqua); font-weight: 800; text-decoration: underline; text-underline-offset: .25rem; }
.pg8b-carousel { position: relative; border-radius: 2.4rem; overflow: hidden; min-height: 18rem; }
.pg8b-slide { display: none; position: relative; cursor: pointer; }
.pg8b-slide-active { display: block; }
.pg8b-slide img { width: 100%; height: 20rem; object-fit: cover; display: block; filter: saturate(1.15) contrast(1.05); }
.pg8b-slide-caption { position: absolute; inset: auto 1.2rem 1.2rem 1.2rem; padding: 1.1rem; border-radius: 1.6rem; background: rgba(18,5,31,.76); border: .1rem solid var(--pg8b-line); }
.pg8b-slide-caption strong { display: block; font-size: 1.8rem; }
.pg8b-dots { position: absolute; top: 1rem; right: 1rem; display: flex; gap: .5rem; }
.pg8b-dot { width: .9rem; height: .9rem; border-radius: 50%; border: 0; background: rgba(255,255,255,.45); }
.pg8b-dot-active { background: var(--pg8b-accent); transform: scale(1.25); }
.pg8b-stat-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: .7rem; margin-top: 1.2rem; }
.pg8b-stat { padding: 1rem .6rem; border-radius: 1.4rem; background: rgba(138,43,226,.18); text-align: center; border: .1rem solid var(--pg8b-line); }
.pg8b-stat strong { display: block; color: var(--pg8b-accent); font-size: 1.7rem; }
.pg8b-stat span { font-size: 1.1rem; color: var(--pg8b-muted); }
.pg8b-section-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.2rem; }
.pg8b-section-head h2 { margin: 0; font-size: 2.4rem; line-height: 1.08; }
.pg8b-badge { display: inline-flex; align-items: center; gap: .4rem; padding: .45rem .8rem; border-radius: 999rem; color: #17051f; background: var(--pg8b-accent); font-weight: 900; font-size: 1.15rem; }
.pg8b-game-category { margin-bottom: 1.6rem; }
.pg8b-category-title { display: flex; align-items: center; gap: .8rem; margin: 0 0 .9rem; font-size: 1.9rem; text-transform: capitalize; }
.pg8b-game-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: .8rem; }
.pg8b-game-tile {
  min-width: 0;
  border-radius: 1.4rem;
  background: rgba(255,255,255,.065);
  border: .1rem solid rgba(221,160,221,.18);
  padding: .6rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}
.pg8b-game-tile img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 1rem; display: block; }
.pg8b-game-name { display: block; color: var(--pg8b-text); font-size: 1.08rem; font-weight: 800; line-height: 1.15; margin-top: .45rem; }
.pg8b-feature-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.pg8b-step-list { counter-reset: pg8b-step; display: grid; gap: 1rem; }
.pg8b-step { position: relative; padding-left: 5.2rem; }
.pg8b-step::before { counter-increment: pg8b-step; content: counter(pg8b-step); position: absolute; left: 0; top: .2rem; width: 3.7rem; height: 3.7rem; display: grid; place-items: center; border-radius: 1.2rem; background: linear-gradient(135deg, var(--pg8b-primary), var(--pg8b-accent)); color: #17051f; font-weight: 900; }
.pg8b-data-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 1.4rem; font-size: 1.3rem; }
.pg8b-data-table th, .pg8b-data-table td { padding: .9rem .7rem; border-bottom: .1rem solid var(--pg8b-line); text-align: left; }
.pg8b-data-table th { color: var(--pg8b-accent); background: rgba(0,0,0,.18); }
.pg8b-review { display: grid; gap: .7rem; }
.pg8b-stars { color: var(--pg8b-accent); letter-spacing: .12em; }
.pg8b-payment-row { display: flex; flex-wrap: wrap; gap: .7rem; }
.pg8b-chip { padding: .7rem 1rem; border-radius: 999rem; background: rgba(98,245,255,.1); border: .1rem solid rgba(98,245,255,.25); font-weight: 800; }
.pg8b-footer { margin-top: 2.2rem; padding: 2.6rem 0 8.8rem; background: linear-gradient(180deg, rgba(31,18,48,.7), rgba(8,0,15,.96)); border-top: .1rem solid var(--pg8b-line); }
.pg8b-footer-logo { display: flex; align-items: center; gap: .8rem; font-weight: 900; font-size: 2rem; margin-bottom: 1rem; }
.pg8b-footer-logo img { width: 3.4rem; height: 3.4rem; border-radius: 1rem; }
.pg8b-footer-links { display: grid; grid-template-columns: repeat(2,1fr); gap: .7rem; margin: 1.2rem 0; }
.pg8b-footer-link { color: var(--pg8b-muted); text-decoration: none; padding: .6rem 0; }
.pg8b-footer-cta { display: grid; grid-template-columns: repeat(2,1fr); gap: .8rem; margin: 1.2rem 0; }
.pg8b-partners { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1rem 0; }
.pg8b-partner { padding: .6rem .9rem; border-radius: .9rem; background: rgba(255,255,255,.07); color: var(--pg8b-muted); font-size: 1.2rem; }
.pg8b-copy-small { color: var(--pg8b-muted); font-size: 1.2rem; line-height: 1.45; }
.pg8b-bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(100%, 43rem);
  height: 6.2rem;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #220b35;
  border-top: .1rem solid rgba(221,160,221,.36);
  box-shadow: 0 -1rem 2.6rem rgba(0,0,0,.38);
}
.pg8b-bottom-item {
  min-width: 6rem;
  min-height: 6rem;
  border: 0;
  background: transparent;
  color: #d8c3e4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, color .18s ease;
  position: relative;
}
.pg8b-bottom-item i, .pg8b-bottom-item ion-icon, .pg8b-bottom-item .material-icons, .pg8b-bottom-item .ti { font-size: 2.2rem; line-height: 1; }
.pg8b-bottom-item.pg8b-current { color: var(--pg8b-accent); }
.pg8b-bottom-item.pg8b-current::before { content: ""; position: absolute; top: .4rem; width: 2.8rem; height: .3rem; border-radius: 1rem; background: var(--pg8b-accent); }
.pg8b-two-tone { position: relative; color: var(--pg8b-accent); text-shadow: .12rem .12rem 0 var(--pg8b-primary); }
.pg8b-faq details { padding: 1.1rem; border-radius: 1.4rem; background: rgba(255,255,255,.055); border: .1rem solid var(--pg8b-line); margin-bottom: .8rem; }
.pg8b-faq summary { cursor: pointer; font-weight: 900; color: var(--pg8b-accent); }
.pg8b-faq p { color: #eadbf0; line-height: 1.55; }
.pg8b-hero-split { display: grid; gap: 1.2rem; }
.pg8b-mini-banner { border-radius: 2rem; overflow: hidden; cursor: pointer; border: .1rem solid var(--pg8b-line); }
.pg8b-mini-banner img { width: 100%; height: 14rem; object-fit: cover; display: block; }
.pg8b-alert { padding: 1rem; border-radius: 1.4rem; background: rgba(255,207,92,.12); border: .1rem solid rgba(255,207,92,.35); color: #ffe7a0; }
.pg8b-ribbon { display: inline-flex; align-items: center; gap: .5rem; color: #17051f; background: linear-gradient(135deg, var(--pg8b-accent), var(--pg8b-aqua)); border-radius: 999rem; padding: .55rem .9rem; font-size: 1.15rem; font-weight: 900; }
@media (min-width: 560px) {
  .pg8b-feature-grid { grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 769px) {
  body { background-attachment: fixed; }
  main { padding-top: 8.2rem; }
  .pg8b-wrapper, .pg8b-container { max-width: 96rem; }
  .pg8b-topbar { height: 7.4rem; }
  .pg8b-desktop-nav { display: flex; align-items: center; gap: 1rem; margin-left: 1rem; }
  .pg8b-desktop-nav a { color: var(--pg8b-muted); text-decoration: none; font-weight: 800; }
  .pg8b-desktop-nav a.pg8b-current { color: var(--pg8b-accent); }
  .pg8b-menu-button { display: none; }
  .pg8b-hero-split { grid-template-columns: 1.05fr .95fr; align-items: center; }
  .pg8b-game-grid { grid-template-columns: repeat(8, minmax(0,1fr)); }
  .pg8b-feature-grid { grid-template-columns: repeat(3,1fr); }
  .pg8b-bottom-nav { display: none; }
  .pg8b-footer { padding-bottom: 3rem; }
}
@media (max-width: 768px) {
  main { padding-bottom: 80px; }
  .pg8b-btn { padding: 0 1rem; }
  .pg8b-header-actions .pg8b-btn { min-height: 4rem; font-size: 1.25rem; }
  .pg8b-title { max-width: 39rem; }
}
@media (max-width: 360px) {
  .pg8b-wrapper { padding: 0 1rem; }
  .pg8b-game-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .pg8b-brand-name { font-size: 1.45rem; }
  .pg8b-header-actions .pg8b-btn { padding: 0 .8rem; }
}
