/* ph sky mobile-first layout */
:root {
  font-size: 62.5%;
  --pg7a-primary: #ff0000;
  --pg7a-accent: #ff5722;
  --pg7a-bg: #1b263b;
  --pg7a-bg-soft: #243553;
  --pg7a-pink: #ff69b4;
  --pg7a-sky: #bae1ff;
  --pg7a-text: #f7fbff;
  --pg7a-muted: #b9c8df;
  --pg7a-card: rgba(255,255,255,.075);
  --pg7a-line: rgba(186,225,255,.22);
  --pg7a-shadow: 0 1.6rem 4rem rgba(0,0,0,.35);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,105,180,.22), transparent 28rem),
    radial-gradient(circle at 90% 18%, rgba(255,87,34,.22), transparent 24rem),
    linear-gradient(180deg, #111a2d 0%, var(--pg7a-bg) 42%, #0d1424 100%);
  color: var(--pg7a-text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5rem;
  overflow-x: hidden;
}
a { color: var(--pg7a-sky); text-decoration: none; }
a:hover { color: #fff; }
img { max-width: 100%; display: block; }
.pg7a-page-shell { width: 100%; max-width: 430px; margin: 0 auto; background: rgba(10,17,31,.72); min-height: 100vh; }
.pg7a-container { width: min(100%, 430px); margin: 0 auto; padding: 0 1.4rem; }
.pg7a-wrapper { padding: 1.4rem; }
.pg7a-grid { display: grid; gap: 1.2rem; }
.pg7a-header {
  position: sticky; top: 0; z-index: 1000; width: 100%;
  background: linear-gradient(135deg, rgba(27,38,59,.96), rgba(255,0,0,.84));
  border-bottom: .1rem solid var(--pg7a-line); box-shadow: var(--pg7a-shadow); backdrop-filter: blur(1.2rem);
}
.pg7a-topbar { min-height: 6.2rem; display: flex; align-items: center; justify-content: space-between; gap: .8rem; }
.pg7a-brand { display: flex; align-items: center; gap: .7rem; min-width: 0; color: #fff; font-weight: 900; letter-spacing: .03em; }
.pg7a-logo { width: 3.2rem; height: 3.2rem; border-radius: 1rem; box-shadow: 0 0 0 .2rem rgba(255,255,255,.14); }
.pg7a-brand-text { font-size: 1.65rem; white-space: nowrap; text-transform: uppercase; }
.pg7a-header-actions { display: flex; align-items: center; gap: .5rem; }
.pg7a-btn { min-height: 4.4rem; border: 0; border-radius: 99rem; padding: 0 1.25rem; font-weight: 900; cursor: pointer; color: #fff; transition: transform .18s ease, filter .18s ease, box-shadow .18s ease; }
.pg7a-btn:hover, .pg7a-btn:focus { transform: translateY(-.1rem) scale(1.02); filter: brightness(1.08); outline: none; }
.pg7a-btn:active { transform: scale(.96); }
.pg7a-btn-main { background: linear-gradient(135deg, var(--pg7a-primary), var(--pg7a-accent)); box-shadow: 0 .7rem 1.6rem rgba(255,0,0,.35); }
.pg7a-btn-ghost { background: rgba(255,255,255,.11); border: .1rem solid rgba(255,255,255,.28); }
.pg7a-menu-toggle { width: 4.4rem; min-width: 4.4rem; padding: 0; display: inline-flex; align-items: center; justify-content: center; font-size: 2.1rem; }
.pg7a-mobile-menu {
  position: fixed; inset: 0 0 auto auto; width: min(86vw, 34rem); min-height: 100vh; z-index: 9999;
  padding: 7rem 1.5rem 2rem; background: linear-gradient(180deg, #192944, #0e1729);
  border-left: .1rem solid var(--pg7a-line); transform: translateX(104%); transition: transform .24s ease; box-shadow: -1rem 0 3rem rgba(0,0,0,.44);
}
.pg7a-mobile-menu.pg7a-menu-open { transform: translateX(0); }
.pg7a-menu-link { display: flex; align-items: center; gap: .9rem; min-height: 4.8rem; padding: .8rem 1rem; border-radius: 1.2rem; margin-bottom: .8rem; background: rgba(255,255,255,.06); font-weight: 800; }
.pg7a-desktop-nav { display: none; }
main { padding-top: 1.2rem; }
.pg7a-hero { padding: 1.6rem 0 1.1rem; }
.pg7a-eyebrow { display: inline-flex; align-items: center; gap: .6rem; color: var(--pg7a-sky); background: rgba(186,225,255,.1); border: .1rem solid var(--pg7a-line); border-radius: 99rem; padding: .55rem 1rem; font-size: 1.2rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.pg7a-title { font-size: clamp(2.7rem, 8.6vw, 4.4rem); line-height: 1.02; margin: 1.1rem 0; color: #fff; text-shadow: 0 .4rem 1.2rem rgba(0,0,0,.45); }
.pg7a-lead { color: var(--pg7a-muted); font-size: 1.58rem; line-height: 2.35rem; margin: 0 0 1.2rem; }
.pg7a-action-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; margin: 1.2rem 0; }
.pg7a-text-link { border: 0; padding: 0; background: none; color: var(--pg7a-sky); font-weight: 900; text-decoration: underline; cursor: pointer; font-size: inherit; }
.pg7a-carousel { position: relative; overflow: hidden; border-radius: 2rem; border: .1rem solid var(--pg7a-line); box-shadow: var(--pg7a-shadow); background: var(--pg7a-bg-soft); }
.pg7a-slide { display: none; position: relative; cursor: pointer; }
.pg7a-slide.pg7a-slide-active { display: block; }
.pg7a-slide img { width: 100%; aspect-ratio: 16/8.3; object-fit: cover; }
.pg7a-slide-caption { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; padding: .8rem 1rem; border-radius: 1.4rem; background: rgba(10,17,31,.7); font-weight: 900; }
.pg7a-dots { position: absolute; right: 1rem; top: 1rem; display: flex; gap: .45rem; }
.pg7a-dot { width: .8rem; height: .8rem; border-radius: 50%; background: rgba(255,255,255,.42); border: 0; }
.pg7a-dot.pg7a-dot-active { background: var(--pg7a-accent); transform: scale(1.2); }
.pg7a-section { margin: 1.5rem 0; padding: 1.4rem; border-radius: 2rem; background: var(--pg7a-card); border: .1rem solid var(--pg7a-line); box-shadow: 0 .8rem 2rem rgba(0,0,0,.18); }
.pg7a-section h2 { font-size: 2.2rem; line-height: 2.7rem; margin: 0 0 .8rem; }
.pg7a-section h3 { font-size: 1.7rem; line-height: 2.2rem; margin: 1rem 0 .5rem; color: var(--pg7a-sky); }
.pg7a-section p, .pg7a-section li { line-height: 2.35rem; color: var(--pg7a-muted); }
.pg7a-card { background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.045)); border: .1rem solid var(--pg7a-line); border-radius: 1.6rem; padding: 1.1rem; }
.pg7a-stat-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; }
.pg7a-stat { min-height: 7.2rem; display: flex; flex-direction: column; justify-content: center; border-radius: 1.5rem; padding: .9rem; background: linear-gradient(135deg, rgba(255,87,34,.22), rgba(186,225,255,.08)); }
.pg7a-stat strong { font-size: 2.1rem; color: #fff; }
.pg7a-stat span { color: var(--pg7a-muted); font-size: 1.2rem; }
.pg7a-game-group { margin: 1.2rem 0 1.7rem; }
.pg7a-game-heading { display: flex; align-items: center; justify-content: space-between; gap: .8rem; margin: .8rem 0; }
.pg7a-game-heading h3 { margin: 0; text-transform: capitalize; color: #fff; }
.pg7a-game-count { font-size: 1.2rem; color: var(--pg7a-sky); font-weight: 900; }
.pg7a-game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .85rem; }
.pg7a-game-card { min-width: 0; border-radius: 1.2rem; padding: .7rem .45rem; background: rgba(255,255,255,.07); border: .1rem solid rgba(255,255,255,.1); text-align: center; cursor: pointer; transition: transform .18s ease, background .18s ease; }
.pg7a-game-card:hover { transform: translateY(-.2rem); background: rgba(255,87,34,.18); }
.pg7a-game-card img { width: 5rem; height: 5rem; object-fit: cover; margin: 0 auto .45rem; border-radius: 1.1rem; }
.pg7a-game-card span { display: block; font-size: 1.05rem; line-height: 1.25rem; font-weight: 800; color: #fff; }
.pg7a-feature-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.pg7a-mini-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .8rem; }
.pg7a-mini-list li { padding: .9rem; border-radius: 1.2rem; background: rgba(255,255,255,.055); }
.pg7a-link-list { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1rem 0; }
.pg7a-chip { display: inline-flex; min-height: 4.4rem; align-items: center; justify-content: center; border-radius: 99rem; padding: .8rem 1rem; background: rgba(186,225,255,.1); border: .1rem solid var(--pg7a-line); font-weight: 800; }
.pg7a-highlight { color: #fff; font-weight: 900; background: linear-gradient(90deg, rgba(255,0,0,.25), rgba(255,105,180,.18)); padding: .1rem .35rem; border-radius: .5rem; }
.pg7a-footer { margin-top: 2rem; padding: 2rem 1.4rem 8.8rem; background: #0a1120; border-top: .1rem solid var(--pg7a-line); }
.pg7a-footer-logo { display: flex; align-items: center; gap: .8rem; font-weight: 900; font-size: 1.8rem; }
.pg7a-footer-logo img { width: 3.2rem; height: 3.2rem; border-radius: .9rem; }
.pg7a-footer-actions { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; margin: 1.1rem 0; }
.pg7a-site-links { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.1rem 0; }
.pg7a-site-links a { font-size: 1.25rem; color: var(--pg7a-muted); text-decoration: underline; }
.pg7a-partners { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin: 1rem 0; }
.pg7a-partner { border-radius: 1.2rem; min-height: 4.8rem; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.06); font-weight: 900; color: var(--pg7a-sky); }
.pg7a-copy { color: #8fa1bd; font-size: 1.2rem; line-height: 1.8rem; }
.pg7a-bottom-nav { position: fixed; bottom: 0; left: 50%; transform: translateX(-50%); width: min(100%, 430px); height: 6.2rem; z-index: 1000; display: flex; justify-content: space-around; align-items: center; background: #111d32; border-top: .1rem solid rgba(186,225,255,.24); box-shadow: 0 -1rem 3rem rgba(0,0,0,.42); }
.pg7a-bottom-item { min-width: 6rem; min-height: 6rem; border: 0; background: transparent; color: var(--pg7a-muted); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .25rem; font-size: 1.05rem; font-weight: 900; cursor: pointer; transition: transform .18s ease, color .18s ease; }
.pg7a-bottom-item i, .pg7a-bottom-item span.pg7a-material, .pg7a-bottom-item ion-icon { font-size: 2.3rem; line-height: 1; }
.pg7a-bottom-item:active { transform: scale(.9); color: var(--pg7a-accent); }
.pg7a-bottom-item.pg7a-current { color: #fff; }
.pg7a-bottom-item.pg7a-current i, .pg7a-bottom-item.pg7a-current span.pg7a-material, .pg7a-bottom-item.pg7a-current ion-icon { color: var(--pg7a-accent); filter: drop-shadow(0 0 .8rem rgba(255,87,34,.72)); }
.pg7a-badge { position: absolute; transform: translate(1.2rem,-1.2rem); min-width: 1.7rem; height: 1.7rem; border-radius: 99rem; background: var(--pg7a-pink); color: #fff; font-size: .95rem; display: inline-flex; align-items: center; justify-content: center; }
.pg7a-faq details { border-radius: 1.2rem; background: rgba(255,255,255,.055); padding: 1rem; margin: .8rem 0; }
.pg7a-faq summary { font-weight: 900; color: #fff; cursor: pointer; min-height: 3.2rem; }
.pg7a-review-row { display: grid; gap: 1rem; }
.pg7a-meter { height: 1rem; border-radius: 99rem; background: rgba(255,255,255,.12); overflow: hidden; }
.pg7a-meter span { display: block; height: 100%; background: linear-gradient(90deg, var(--pg7a-primary), var(--pg7a-pink), var(--pg7a-sky)); }
.pg7a-table { width: 100%; border-collapse: collapse; font-size: 1.25rem; }
.pg7a-table th, .pg7a-table td { padding: .8rem .5rem; border-bottom: .1rem solid var(--pg7a-line); text-align: left; }
.pg7a-table th { color: #fff; }
@media (max-width: 768px) { main { padding-bottom: 8rem; } }
@media (min-width: 769px) {
  body { background: #101827; }
  .pg7a-page-shell { max-width: 1080px; }
  .pg7a-container { max-width: 1080px; }
  .pg7a-desktop-nav { display: flex; gap: .8rem; align-items: center; }
  .pg7a-desktop-nav a { font-weight: 800; font-size: 1.25rem; color: #fff; }
  .pg7a-menu-toggle, .pg7a-bottom-nav { display: none; }
  .pg7a-title { max-width: 82rem; }
  .pg7a-feature-grid { grid-template-columns: repeat(3, 1fr); }
  .pg7a-game-grid { grid-template-columns: repeat(8, 1fr); }
  .pg7a-footer { padding-bottom: 2rem; }
}
