:root {
  font-size: 62.5%;
  --pge6-primary: #4169e1;
  --pge6-primary-dark: #2749a9;
  --pge6-accent: #a0522d;
  --pge6-accent-light: #d48a5c;
  --pge6-brown: #6f4e37;
  --pge6-bg: #151515;
  --pge6-surface: #262626;
  --pge6-surface-2: #313131;
  --pge6-text: #f0f8ff;
  --pge6-muted: #c0c0c0;
  --pge6-border: rgba(192, 192, 192, .2);
  --pge6-success: #4fd1a1;
  --pge6-header-height: 6.4rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  min-width: 32rem;
  overflow-x: hidden;
  color: var(--pge6-text);
  background: radial-gradient(circle at 50% -20%, #263868 0, var(--pge6-bg) 42rem);
  font-family: Inter, Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5rem;
}
body.pge6-menu-lock { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }

.pge6-container { width: min(100% - 2.4rem, 118rem); margin-inline: auto; }
.pge6-wrapper { padding-block: 2.4rem; }
.pge6-grid { display: grid; gap: 1.2rem; }
.pge6-main { padding-top: calc(var(--pge6-header-height) + 1.2rem); }
.pge6-section { padding: 2.2rem 0; scroll-margin-top: 7.4rem; }
.pge6-section-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.pge6-section-head p { max-width: 52rem; margin: 0; color: var(--pge6-muted); line-height: 2.1rem; }
h1, h2, h3 { margin-top: 0; line-height: 1.18; }
h1 { margin-bottom: 1.3rem; font-size: clamp(2.8rem, 8vw, 5.4rem); }
h2 { margin-bottom: .6rem; font-size: clamp(2.2rem, 6vw, 3.2rem); }
h3 { margin-bottom: .8rem; font-size: 1.8rem; }
p { line-height: 2.35rem; }

.pge6-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  height: var(--pge6-header-height); border-bottom: 1px solid var(--pge6-border);
  background: rgba(21, 21, 21, .94); backdrop-filter: blur(16px);
}
.pge6-header-row { height: 100%; display: flex; align-items: center; gap: .8rem; }
.pge6-brand { min-width: 0; display: flex; align-items: center; gap: .7rem; margin-right: auto; font-weight: 900; font-size: 1.7rem; }
.pge6-brand img { width: 3.2rem; height: 3.2rem; border-radius: .9rem; object-fit: cover; }
.pge6-brand span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pge6-desktop-nav { display: none; align-items: center; gap: 1.8rem; margin-right: 1rem; }
.pge6-desktop-nav a { color: var(--pge6-muted); font-size: 1.4rem; font-weight: 700; }
.pge6-desktop-nav a:hover { color: var(--pge6-text); }
.pge6-actions { display: flex; gap: .5rem; }
.pge6-btn {
  min-height: 4.4rem; border: 1px solid transparent; border-radius: 1.1rem; padding: 0 1.35rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .7rem;
  color: #fff; background: var(--pge6-primary); cursor: pointer; font-weight: 900;
  box-shadow: 0 .6rem 1.8rem rgba(65, 105, 225, .24); transition: transform .2s, filter .2s;
}
.pge6-btn:hover { filter: brightness(1.14); transform: translateY(-1px); }
.pge6-btn:active { transform: scale(.96); }
.pge6-btn-alt { border-color: rgba(240, 248, 255, .32); background: transparent; box-shadow: none; }
.pge6-btn-accent { background: linear-gradient(135deg, var(--pge6-accent-light), var(--pge6-accent)); box-shadow: 0 .6rem 1.8rem rgba(160, 82, 45, .3); }
.pge6-menu-toggle { width: 4.4rem; padding: 0; background: var(--pge6-surface-2); box-shadow: none; }

.pge6-menu {
  position: fixed; inset: 0; z-index: 9999; display: flex; justify-content: flex-end;
  visibility: hidden; opacity: 0; background: rgba(0, 0, 0, .72); transition: .25s;
}
.pge6-menu-open { visibility: visible; opacity: 1; }
.pge6-menu-panel {
  width: min(86%, 34rem); height: 100%; padding: 2rem; overflow-y: auto;
  background: var(--pge6-surface); transform: translateX(100%); transition: transform .25s;
}
.pge6-menu-open .pge6-menu-panel { transform: translateX(0); }
.pge6-menu-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.6rem; }
.pge6-menu-title strong { font-size: 2rem; }
.pge6-menu-close { width: 4.4rem; min-height: 4.4rem; border: 0; border-radius: 50%; color: var(--pge6-text); background: var(--pge6-surface-2); cursor: pointer; }
.pge6-menu-list { display: grid; gap: .8rem; }
.pge6-menu-list a, .pge6-menu-list button { min-height: 4.8rem; border: 1px solid var(--pge6-border); border-radius: 1rem; padding: 1.2rem; color: var(--pge6-text); background: #202020; text-align: left; cursor: pointer; font-weight: 750; }

.pge6-carousel { position: relative; overflow: hidden; min-height: 36rem; border: 1px solid var(--pge6-border); border-radius: 2rem; background: var(--pge6-surface); box-shadow: 0 2rem 5rem rgba(0, 0, 0, .35); }
.pge6-slide { position: absolute; inset: 0; visibility: hidden; opacity: 0; transition: opacity .5s; cursor: pointer; }
.pge6-slide-active { visibility: visible; opacity: 1; }
.pge6-slide img { width: 100%; height: 100%; object-fit: cover; }
.pge6-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11, 11, 11, .92), rgba(11, 11, 11, .25)); }
.pge6-hero-copy { position: absolute; inset: auto 2rem 2.8rem; z-index: 2; max-width: 60rem; }
.pge6-hero-copy p { max-width: 52rem; color: #e0e8f0; }
.pge6-kicker { display: inline-flex; margin-bottom: 1rem; border: 1px solid rgba(255, 255, 255, .25); border-radius: 99rem; padding: .7rem 1rem; background: rgba(65, 105, 225, .55); font-size: 1.2rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.pge6-carousel-control { position: absolute; z-index: 3; top: 50%; width: 4.4rem; min-height: 4.4rem; border: 0; border-radius: 50%; color: #fff; background: rgba(0, 0, 0, .55); cursor: pointer; transform: translateY(-50%); }
.pge6-carousel-prev { left: .8rem; }
.pge6-carousel-next { right: .8rem; }
.pge6-carousel-dots { position: absolute; z-index: 3; bottom: 1rem; right: 1.2rem; display: flex; gap: .6rem; }
.pge6-dot { width: 1rem; height: 1rem; border: 0; border-radius: 50%; padding: 0; background: var(--pge6-muted); cursor: pointer; }
.pge6-dot-active { width: 2.5rem; border-radius: 1rem; background: var(--pge6-primary); }

.pge6-category-bar { position: sticky; top: var(--pge6-header-height); z-index: 20; display: flex; gap: .8rem; overflow-x: auto; padding: 1rem 0; scrollbar-width: none; background: rgba(21, 21, 21, .94); }
.pge6-category-bar::-webkit-scrollbar { display: none; }
.pge6-category-link { flex: 0 0 auto; min-height: 4.4rem; border: 1px solid var(--pge6-border); border-radius: 99rem; padding: 0 1.4rem; color: var(--pge6-muted); background: var(--pge6-surface); cursor: pointer; font-weight: 800; }
.pge6-category-active, .pge6-category-link:hover { color: #fff; border-color: var(--pge6-primary); background: var(--pge6-primary-dark); }
.pge6-game-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pge6-card { border: 1px solid var(--pge6-border); border-radius: 1.2rem; background: linear-gradient(155deg, #303030, #202020); box-shadow: 0 .8rem 2rem rgba(0, 0, 0, .2); }
.pge6-game-card { overflow: hidden; cursor: pointer; transition: transform .2s, border-color .2s; }
.pge6-game-card:hover { border-color: var(--pge6-primary); transform: translateY(-.3rem); }
.pge6-game-card:focus-visible { outline: .3rem solid var(--pge6-primary); outline-offset: .2rem; }
.pge6-game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: #1c1c1c; }
.pge6-game-card strong { min-height: 4.8rem; padding: .8rem .6rem; display: flex; align-items: center; justify-content: center; text-align: center; font-size: 1.2rem; line-height: 1.5rem; }
.pge6-count { border-radius: 99rem; padding: .5rem .9rem; color: #fff; background: var(--pge6-accent); font-size: 1.2rem; font-weight: 900; white-space: nowrap; }

.pge6-content-grid { grid-template-columns: 1fr; }
.pge6-info-card { padding: 1.8rem; }
.pge6-info-card p:last-child { margin-bottom: 0; }
.pge6-icon-wrap { width: 4.6rem; height: 4.6rem; margin-bottom: 1.2rem; border-radius: 1.3rem; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--pge6-primary), var(--pge6-accent)); font-size: 2.4rem; }
.pge6-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pge6-stat { padding: 1.6rem; text-align: center; }
.pge6-stat strong { display: block; margin-bottom: .7rem; color: var(--pge6-success); font-size: 2.4rem; line-height: 1; }
.pge6-stat span { color: var(--pge6-muted); font-size: 1.2rem; line-height: 1.6rem; }
.pge6-steps { counter-reset: pge6-step; }
.pge6-step { position: relative; padding: 1.8rem 1.8rem 1.8rem 6rem; }
.pge6-step::before { counter-increment: pge6-step; content: counter(pge6-step); position: absolute; left: 1.6rem; top: 1.6rem; width: 3.2rem; height: 3.2rem; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--pge6-primary); font-weight: 900; }
.pge6-promo-banner { padding: 2.2rem; border: 1px solid rgba(212, 138, 92, .45); border-radius: 1.6rem; background: linear-gradient(135deg, rgba(160, 82, 45, .32), rgba(65, 105, 225, .24)); text-align: center; }
.pge6-text-link { color: #9fb7ff; font-weight: 900; text-decoration: underline; text-underline-offset: .3rem; cursor: pointer; }

.pge6-footer { margin-top: 2rem; border-top: 1px solid var(--pge6-border); padding: 3rem 0 8.6rem; background: #101010; }
.pge6-footer-grid { grid-template-columns: 1fr; }
.pge6-footer-links, .pge6-footer-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.pge6-footer-links a { min-height: 4.4rem; display: inline-flex; align-items: center; color: var(--pge6-muted); font-weight: 700; }
.pge6-footer-note { border-top: 1px solid var(--pge6-border); margin-top: 2rem; padding-top: 1.6rem; color: var(--pge6-muted); font-size: 1.2rem; line-height: 1.8rem; }

.pge6-bottom-nav {
  position: fixed; inset: auto 0 0; z-index: 1000; height: 6.2rem;
  display: flex; justify-content: space-around; border-top: 1px solid rgba(192, 192, 192, .25);
  background: #202020; box-shadow: 0 -1rem 2.6rem rgba(0, 0, 0, .35);
}
.pge6-bottom-item { position: relative; min-width: 6rem; min-height: 6rem; border: 0; padding: .6rem .4rem .4rem; display: flex; flex: 1; flex-direction: column; align-items: center; justify-content: center; gap: .3rem; color: var(--pge6-muted); background: transparent; cursor: pointer; font-size: 1rem; font-weight: 800; transition: .2s; }
.pge6-bottom-item i, .pge6-bottom-item ion-icon, .pge6-bottom-item .material-icons-two-tone { font-size: 2.3rem; }
.pge6-bottom-item:hover, .pge6-bottom-item:active { color: #fff; transform: scale(.96); }
.pge6-bottom-active { color: #fff; }
.pge6-bottom-active::before { content: ''; position: absolute; top: 0; width: 3rem; height: .3rem; border-radius: 0 0 1rem 1rem; background: var(--pge6-primary); }
.pge6-badge { position: absolute; top: .4rem; margin-left: 2.4rem; min-width: 1.7rem; height: 1.7rem; border-radius: 1rem; display: grid; place-items: center; color: #fff; background: var(--pge6-accent); font-size: .9rem; }

@media (max-width: 430px) {
  .pge6-container { width: min(100% - 1.6rem, 43rem); }
  .pge6-header-row { gap: .45rem; }
  .pge6-brand { max-width: 10.5rem; font-size: 1.35rem; }
  .pge6-brand img { width: 2.8rem; height: 2.8rem; }
  .pge6-actions .pge6-btn { min-height: 4.4rem; padding: 0 .85rem; font-size: 1.18rem; }
  .pge6-menu-toggle { width: 4.4rem !important; padding: 0 !important; }
  .pge6-carousel { min-height: 40rem; border-radius: 1.5rem; }
  .pge6-hero-copy { inset: auto 1.4rem 3.2rem; }
  .pge6-carousel-control { top: 4.8rem; transform: none; }
  .pge6-game-grid { gap: .8rem; }
  .pge6-game-card strong { min-height: 4.6rem; padding: .6rem .4rem; font-size: 1.05rem; line-height: 1.35rem; }
  .pge6-section-head { align-items: start; }
}

@media (max-width: 768px) {
  main.pge6-main { padding-bottom: 8rem; }
}

@media (min-width: 600px) {
  .pge6-game-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .pge6-content-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pge6-stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 769px) {
  .pge6-bottom-nav { display: none; }
  .pge6-menu-toggle { display: none; }
  .pge6-desktop-nav { display: flex; }
  .pge6-game-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .pge6-footer { padding-bottom: 3rem; }
  .pge6-footer-grid { grid-template-columns: 1.2fr .8fr; }
}

@media (min-width: 1000px) {
  .pge6-game-grid { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .pge6-content-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
