/* ll8 visual system - English comments only */
:root {
  font-size: 62.5%;
  --pgb8-bg: #1A1A2E;
  --pgb8-panel: #232442;
  --pgb8-panel-2: #2b2d4d;
  --pgb8-primary: #BDC3C7;
  --pgb8-muted: #95A5A6;
  --pgb8-ink: #f4f7fb;
  --pgb8-accent: #f6c453;
  --pgb8-hot: #ff5f7e;
  --pgb8-safe: #4dd4ac;
  --pgb8-line: rgba(189, 195, 199, .18);
  --pgb8-shadow: 0 1.4rem 3rem rgba(0, 0, 0, .35);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at 12% 0%, rgba(189,195,199,.18), transparent 30%), linear-gradient(180deg, #101022 0%, var(--pgb8-bg) 55%, #090914 100%);
  color: var(--pgb8-ink);
  font-size: 1.55rem;
  line-height: 1.5rem;
  overflow-x: hidden;
}
body.pgb8-lock { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
main { width: 100%; }
.pgb8-page {
  width: 100%;
  max-width: 43rem;
  min-height: 100vh;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(26,26,46,.86), rgba(12,13,26,.98));
  position: relative;
  box-shadow: 0 0 4rem rgba(0,0,0,.38);
}
.pgb8-container { width: min(100%, 43rem); margin: 0 auto; padding: 0 1.4rem; }
.pgb8-wrapper { padding: 7.6rem 0 2.4rem; }
.pgb8-grid { display: grid; gap: 1.2rem; }
.pgb8-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 100%;
  max-width: 43rem;
  min-height: 6.4rem;
  background: rgba(26, 26, 46, .94);
  border-bottom: .1rem solid var(--pgb8-line);
  backdrop-filter: blur(1.2rem);
}
.pgb8-topbar { display: flex; align-items: center; gap: .8rem; padding: .9rem 1rem; }
.pgb8-brand { display: flex; align-items: center; gap: .7rem; min-width: 0; margin-right: auto; }
.pgb8-logo { width: 3.2rem; height: 3.2rem; border-radius: .9rem; box-shadow: 0 0 0 .1rem var(--pgb8-line); }
.pgb8-brand-text { font-size: 1.85rem; font-weight: 900; letter-spacing: .04em; color: var(--pgb8-primary); }
.pgb8-actions { display: flex; align-items: center; gap: .6rem; }
.pgb8-btn {
  border: 0;
  min-height: 4.4rem;
  min-width: 4.4rem;
  border-radius: 1.4rem;
  padding: 0 1.2rem;
  color: #111426;
  background: linear-gradient(135deg, var(--pgb8-primary), #eef3f7);
  font-size: 1.25rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 .8rem 1.8rem rgba(189,195,199,.2);
  transition: transform .18s ease, filter .18s ease, background .18s ease;
}
.pgb8-btn:active, .pgb8-bottom-item:active { transform: scale(.94); }
.pgb8-btn:hover { filter: brightness(1.08); }
.pgb8-btn.pgb8-btn-ghost { background: #495057; color: var(--pgb8-ink); box-shadow: none; }
.pgb8-btn.pgb8-btn-hot { background: linear-gradient(135deg, var(--pgb8-hot), var(--pgb8-accent)); color: #16121d; }
.pgb8-menu-btn { width: 4.4rem; padding: 0; background: var(--pgb8-panel-2); color: var(--pgb8-primary); box-shadow: none; }
.pgb8-menu { position: fixed; top: 0; right: -100%; z-index: 9999; width: min(84vw, 34rem); height: 100vh; padding: 1.4rem; background: #111225; transition: right .25s ease; box-shadow: -1rem 0 3rem rgba(0,0,0,.45); }
.pgb8-menu.pgb8-menu-open { right: 0; }
.pgb8-menu-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.2rem; }
.pgb8-menu-title { font-size: 2rem; font-weight: 900; color: var(--pgb8-primary); }
.pgb8-close { background: transparent; border: .1rem solid var(--pgb8-line); color: var(--pgb8-primary); min-width: 4.4rem; min-height: 4.4rem; border-radius: 1.2rem; }
.pgb8-nav { display: grid; gap: .8rem; }
.pgb8-nav a, .pgb8-text-link { color: var(--pgb8-primary); font-weight: 800; text-decoration: underline; text-decoration-color: rgba(246,196,83,.55); text-underline-offset: .25rem; }
.pgb8-nav a { min-height: 4.4rem; display: flex; align-items: center; gap: .8rem; padding: 1rem; border-radius: 1.2rem; background: rgba(255,255,255,.05); text-decoration: none; }
.pgb8-overlay { display: none; position: fixed; inset: 0; z-index: 9998; background: rgba(0,0,0,.62); }
.pgb8-overlay.pgb8-menu-open { display: block; }
.pgb8-hero { padding: 8.4rem 1.4rem 1.8rem; }
.pgb8-kicker { color: var(--pgb8-accent); text-transform: uppercase; letter-spacing: .16em; font-size: 1.1rem; font-weight: 900; }
.pgb8-title { font-size: clamp(2.7rem, 8vw, 4rem); line-height: 1.02; margin: .8rem 0 1rem; color: #fff; letter-spacing: -.04em; }
.pgb8-subtitle { color: var(--pgb8-muted); line-height: 2.3rem; margin: 0 0 1.4rem; }
.pgb8-hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.3rem; }
.pgb8-carousel { position: relative; overflow: hidden; border-radius: 2.2rem; border: .1rem solid var(--pgb8-line); box-shadow: var(--pgb8-shadow); margin-top: 1.5rem; }
.pgb8-slide { display: none; position: relative; min-height: 17rem; cursor: pointer; }
.pgb8-slide.pgb8-active { display: block; animation: pgb8Fade .45s ease both; }
.pgb8-slide img { width: 100%; height: 18rem; object-fit: cover; }
.pgb8-slide-badge { position: absolute; left: 1.2rem; bottom: 1.2rem; background: rgba(9,9,20,.82); color: #fff; border: .1rem solid var(--pgb8-line); border-radius: 999rem; padding: .8rem 1.1rem; font-weight: 900; }
.pgb8-dots { display: flex; gap: .7rem; justify-content: center; padding: 1rem; background: rgba(0,0,0,.18); }
.pgb8-dot { width: .9rem; height: .9rem; border-radius: 50%; border: 0; background: #495057; }
.pgb8-dot.pgb8-active { background: var(--pgb8-accent); transform: scale(1.35); }
.pgb8-card { background: linear-gradient(160deg, rgba(73,80,87,.44), rgba(35,36,66,.75)); border: .1rem solid var(--pgb8-line); border-radius: 2rem; padding: 1.4rem; box-shadow: 0 1rem 2.5rem rgba(0,0,0,.18); }
.pgb8-card h2, .pgb8-card h3 { line-height: 1.2; margin: 0 0 1rem; color: var(--pgb8-primary); }
.pgb8-card p { color: #d7dde2; line-height: 2.35rem; margin: .8rem 0; }
.pgb8-section { padding: 1.1rem 1.4rem; }
.pgb8-section-title { font-size: 2.25rem; margin: .4rem 0 1rem; line-height: 1.15; color: #fff; }
.pgb8-mini { color: var(--pgb8-muted); font-size: 1.3rem; line-height: 2rem; }
.pgb8-badges { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1rem 0; }
.pgb8-badge { border-radius: 999rem; background: rgba(246,196,83,.12); color: var(--pgb8-accent); padding: .6rem .9rem; font-weight: 800; font-size: 1.2rem; }
.pgb8-game-group { margin-bottom: 1.5rem; }
.pgb8-game-heading { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .8rem; }
.pgb8-game-heading h3 { margin: 0; color: var(--pgb8-primary); }
.pgb8-game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.pgb8-game { display: grid; gap: .45rem; text-align: center; color: #fff; font-size: 1.08rem; line-height: 1.35rem; font-weight: 700; }
.pgb8-game img { width: 100%; aspect-ratio: 1 / 1; border-radius: 1.4rem; object-fit: cover; border: .1rem solid var(--pgb8-line); background: var(--pgb8-panel); }
.pgb8-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.pgb8-stat { padding: 1rem; border-radius: 1.5rem; background: rgba(255,255,255,.06); text-align: center; }
.pgb8-stat strong { display: block; color: var(--pgb8-accent); font-size: 1.9rem; line-height: 2.4rem; }
.pgb8-list { margin: .8rem 0 0; padding-left: 1.8rem; color: #d7dde2; line-height: 2.35rem; }
.pgb8-steps { counter-reset: pgb8Step; display: grid; gap: 1rem; }
.pgb8-step { position: relative; padding: 1.2rem 1.2rem 1.2rem 4.6rem; border-radius: 1.6rem; background: rgba(255,255,255,.055); min-height: 4.8rem; }
.pgb8-step::before { counter-increment: pgb8Step; content: counter(pgb8Step); position: absolute; left: 1rem; top: 1rem; width: 2.7rem; height: 2.7rem; border-radius: 50%; display: grid; place-items: center; background: var(--pgb8-accent); color: #141424; font-weight: 900; }
.pgb8-review { display: grid; gap: .8rem; padding: 1.1rem; border-radius: 1.6rem; background: rgba(149,165,166,.09); }
.pgb8-stars { color: var(--pgb8-accent); letter-spacing: .12em; }
.pgb8-payments { display: flex; flex-wrap: wrap; gap: .8rem; }
.pgb8-payment { min-width: 8.8rem; flex: 1; padding: 1rem; border-radius: 1.4rem; background: rgba(255,255,255,.07); text-align: center; font-weight: 900; color: var(--pgb8-primary); }
.pgb8-footer { padding: 2.2rem 1.4rem 9rem; background: #0e0f20; border-top: .1rem solid var(--pgb8-line); }
.pgb8-footer-logo { display: flex; align-items: center; gap: .8rem; color: var(--pgb8-primary); font-size: 2rem; font-weight: 900; }
.pgb8-footer p { color: var(--pgb8-muted); line-height: 2.25rem; }
.pgb8-footer-links { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1rem 0; }
.pgb8-footer-links a { color: #dfe5ea; background: rgba(255,255,255,.06); padding: .8rem 1rem; border-radius: 999rem; font-weight: 800; }
.pgb8-partners { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin: 1rem 0; }
.pgb8-partner { border: .1rem solid var(--pgb8-line); color: var(--pgb8-primary); border-radius: 1.2rem; padding: .9rem; text-align: center; font-weight: 900; }
.pgb8-copy { font-size: 1.2rem; color: #899596; }
.pgb8-bottom-nav { position: fixed; left: 50%; bottom: 0; transform: translateX(-50%); z-index: 1000; width: 100%; max-width: 43rem; height: 6.2rem; display: flex; justify-content: space-around; align-items: stretch; background: #151528; border-top: .1rem solid var(--pgb8-line); box-shadow: 0 -1rem 2.2rem rgba(0,0,0,.35); }
.pgb8-bottom-item { min-width: 6rem; min-height: 6rem; flex: 1; border: 0; background: transparent; color: var(--pgb8-muted); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .35rem; font-size: 1.05rem; font-weight: 800; transition: color .18s ease, transform .18s ease, background .18s ease; position: relative; }
.pgb8-bottom-item i, .pgb8-bottom-item ion-icon, .pgb8-bottom-item .material-icons, .pgb8-bottom-item svg { font-size: 2.3rem; width: 2.4rem; height: 2.4rem; }
.pgb8-bottom-item.pgb8-active { color: var(--pgb8-accent); background: linear-gradient(180deg, rgba(246,196,83,.14), transparent); }
.pgb8-bottom-item.pgb8-active::before { content: ''; position: absolute; top: 0; width: 3rem; height: .3rem; border-radius: 999rem; background: var(--pgb8-accent); }
.pgb8-badge-dot { position: absolute; top: .6rem; right: calc(50% - 1.6rem); background: var(--pgb8-hot); color: #fff; min-width: 1.6rem; height: 1.6rem; border-radius: 999rem; display: grid; place-items: center; font-size: .9rem; }
.pgb8-two-col { display: grid; gap: 1rem; }
.pgb8-highlight { border-left: .35rem solid var(--pgb8-accent); padding-left: 1rem; }
.pgb8-alert { background: rgba(255,95,126,.1); border: .1rem solid rgba(255,95,126,.35); color: #ffdce3; border-radius: 1.6rem; padding: 1.1rem; }
.pgb8-desktop-nav { display: none; }
@keyframes pgb8Fade { from { opacity: .35; transform: scale(1.02); } to { opacity: 1; transform: scale(1); } }
@media (max-width: 768px) { main { padding-bottom: 8rem; } }
@media (min-width: 769px) {
  body { background: #080812; }
  .pgb8-page, .pgb8-header, .pgb8-bottom-nav { max-width: 100%; }
  .pgb8-container { max-width: 112rem; }
  .pgb8-page { box-shadow: none; }
  .pgb8-bottom-nav { display: none; }
  .pgb8-wrapper { padding-top: 8rem; }
  .pgb8-hero { max-width: 112rem; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
  .pgb8-desktop-nav { display: flex; gap: 1rem; margin-left: 1rem; }
  .pgb8-desktop-nav a { color: var(--pgb8-primary); font-weight: 800; }
  .pgb8-game-grid { grid-template-columns: repeat(8, 1fr); }
  .pgb8-two-col { grid-template-columns: repeat(2, 1fr); }
  .pgb8-footer { padding-bottom: 3rem; }
}
