:root {
  font-size: 62.5%;
  --g8ac-bg: #1B263B;
  --g8ac-bg-deep: #0b1220;
  --g8ac-panel: #25354f;
  --g8ac-panel-soft: #32445f;
  --g8ac-primary: #0000CD;
  --g8ac-primary-glow: #445cff;
  --g8ac-accent: #95A5A6;
  --g8ac-silver: #BDC3C7;
  --g8ac-muted: #A9A9A9;
  --g8ac-text: #f4f7fb;
  --g8ac-warning: #d9e6ff;
  --g8ac-border: rgba(189, 195, 199, .22);
  --g8ac-shadow: 0 1.4rem 3rem rgba(0, 0, 0, .38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at top left, rgba(0, 0, 205, .22), transparent 32rem), linear-gradient(180deg, var(--g8ac-bg-deep), var(--g8ac-bg));
  color: var(--g8ac-text);
  font-family: Inter, Roboto, Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5rem;
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }

.g8ac-page {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(27,38,59,.96), rgba(11,18,32,.98));
  box-shadow: 0 0 4rem rgba(0,0,0,.45);
}
.g8ac-container { width: min(100%, 430px); margin: 0 auto; padding: 0 1.4rem; }
.g8ac-wrapper { padding-top: 7.8rem; }
.g8ac-section { padding: 1.8rem 0; }
.g8ac-card {
  background: linear-gradient(145deg, rgba(37,53,79,.92), rgba(11,18,32,.84));
  border: .1rem solid var(--g8ac-border);
  border-radius: 1.8rem;
  padding: 1.5rem;
  box-shadow: var(--g8ac-shadow);
}
.g8ac-grid { display: grid; gap: 1rem; }
.g8ac-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g8ac-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g8ac-flex { display: flex; align-items: center; gap: .8rem; }
.g8ac-between { display: flex; align-items: center; justify-content: space-between; gap: .8rem; }
.g8ac-kicker { color: var(--g8ac-accent); font-size: 1.2rem; letter-spacing: .12rem; text-transform: uppercase; font-weight: 800; }
.g8ac-title { margin: .7rem 0 1rem; font-size: 2.4rem; line-height: 2.9rem; color: #fff; }
.g8ac-subtitle { margin: .5rem 0 1rem; font-size: 1.9rem; line-height: 2.4rem; color: var(--g8ac-silver); }
.g8ac-text { color: #e6ebf2; line-height: 2.25rem; }
.g8ac-muted { color: var(--g8ac-muted); }
.g8ac-link { color: #d9e6ff; font-weight: 800; text-decoration: underline; text-decoration-color: var(--g8ac-primary-glow); }
.g8ac-chip { display: inline-flex; align-items: center; min-height: 3rem; padding: .6rem 1rem; border-radius: 999px; background: rgba(149,165,166,.16); color: var(--g8ac-silver); border: .1rem solid var(--g8ac-border); font-size: 1.2rem; font-weight: 700; }

.g8ac-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 1000;
  background: rgba(11,18,32,.94);
  backdrop-filter: blur(1.4rem);
  border-bottom: .1rem solid var(--g8ac-border);
}
.g8ac-nav { min-height: 6.8rem; padding: .8rem 1.2rem; display: flex; align-items: center; gap: .8rem; }
.g8ac-brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; min-width: 0; flex: 1; }
.g8ac-logo { width: 3.2rem; height: 3.2rem; border-radius: .9rem; box-shadow: 0 0 0 .2rem rgba(189,195,199,.18); }
.g8ac-brand-name { font-weight: 900; font-size: 1.8rem; letter-spacing: .04rem; color: #fff; text-transform: uppercase; }
.g8ac-brand-note { display: block; font-size: 1rem; color: var(--g8ac-muted); margin-top: .2rem; }
.g8ac-actions { display: flex; align-items: center; gap: .5rem; }
.g8ac-btn {
  border: 0;
  border-radius: 1.2rem;
  min-height: 4.4rem;
  padding: 0 1.1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--g8ac-primary), var(--g8ac-primary-glow));
  font-weight: 900;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 .8rem 1.6rem rgba(0,0,205,.28);
  transition: transform .18s ease, filter .18s ease;
}
.g8ac-btn-alt { background: linear-gradient(135deg, #696969, #95A5A6); color: #07101f; }
.g8ac-btn-wide { width: 100%; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; margin-top: .8rem; }
.g8ac-menu-btn { width: 4.4rem; min-width: 4.4rem; padding: 0; border-radius: 1.3rem; background: rgba(189,195,199,.14); color: #fff; border: .1rem solid var(--g8ac-border); }
.g8ac-pressed, .g8ac-btn:active, .g8ac-bottom-btn:active { transform: scale(.94); filter: brightness(1.15); }
.g8ac-mobile-menu {
  position: fixed;
  top: 6.8rem;
  right: 1rem;
  width: calc(100% - 2rem);
  max-width: 410px;
  z-index: 9999;
  display: none;
  background: rgba(11,18,32,.98);
  border: .1rem solid var(--g8ac-border);
  border-radius: 1.8rem;
  padding: 1rem;
  box-shadow: var(--g8ac-shadow);
}
.g8ac-menu-open { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; }
.g8ac-menu-link { min-height: 4.4rem; display: flex; align-items: center; gap: .7rem; padding: .8rem 1rem; border-radius: 1.2rem; background: rgba(37,53,79,.82); color: var(--g8ac-text); text-decoration: none; font-weight: 700; }
.g8ac-desktop-links { display: none; }

.g8ac-hero { padding-top: 1.2rem; }
.g8ac-hero-card { position: relative; overflow: hidden; border-radius: 2rem; min-height: 30rem; background: linear-gradient(150deg, rgba(0,0,205,.32), rgba(37,53,79,.96)); }
.g8ac-hero-content { position: relative; z-index: 2; padding: 2rem 1.5rem; }
.g8ac-hero-badges { display: flex; gap: .7rem; flex-wrap: wrap; margin: 1.2rem 0; }
.g8ac-hero-visual { position: absolute; right: -4.2rem; bottom: -1.5rem; width: 18rem; opacity: .28; filter: saturate(1.2); }
.g8ac-cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-top: 1.2rem; }
.g8ac-trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin-top: 1rem; }
.g8ac-trust-item { padding: .9rem; border-radius: 1.3rem; background: rgba(189,195,199,.11); text-align: center; border: .1rem solid var(--g8ac-border); }
.g8ac-trust-num { display: block; font-size: 1.8rem; font-weight: 900; color: #fff; }
.g8ac-trust-label { display: block; font-size: 1.05rem; color: var(--g8ac-muted); }

.g8ac-carousel { position: relative; overflow: hidden; border-radius: 1.8rem; border: .1rem solid var(--g8ac-border); background: #111827; }
.g8ac-slide { display: none; position: relative; cursor: pointer; min-height: 17rem; }
.g8ac-slide-active { display: block; }
.g8ac-slide img { width: 100%; height: 18rem; object-fit: cover; opacity: .84; }
.g8ac-slide-caption { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; padding: 1rem; border-radius: 1.3rem; background: rgba(11,18,32,.76); backdrop-filter: blur(.8rem); }
.g8ac-slide-title { display: block; font-size: 1.6rem; font-weight: 900; }
.g8ac-slide-text { display: block; margin-top: .35rem; color: var(--g8ac-silver); }
.g8ac-carousel-controls { position: absolute; top: 50%; left: .7rem; right: .7rem; transform: translateY(-50%); display: flex; justify-content: space-between; pointer-events: none; }
.g8ac-arrow { pointer-events: auto; width: 3.8rem; height: 3.8rem; border: 0; border-radius: 50%; background: rgba(11,18,32,.72); color: #fff; }
.g8ac-dots { position: absolute; bottom: .7rem; right: 1rem; display: flex; gap: .5rem; }
.g8ac-dot { width: .8rem; height: .8rem; border: 0; border-radius: 50%; background: rgba(255,255,255,.42); padding: 0; }
.g8ac-dot-active { width: 2rem; border-radius: 999px; background: var(--g8ac-primary-glow); }

.g8ac-game-section { margin-top: 1.6rem; }
.g8ac-category-head { margin: 0 0 1rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.g8ac-category-title { margin: 0; font-size: 1.8rem; color: #fff; }
.g8ac-game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
.g8ac-game-link { text-decoration: none; min-height: 9.6rem; border-radius: 1.4rem; background: rgba(37,53,79,.78); border: .1rem solid var(--g8ac-border); padding: .7rem .5rem; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: .55rem; transition: transform .18s ease, border-color .18s ease; }
.g8ac-game-link:hover { transform: translateY(-.2rem); border-color: rgba(68,92,255,.6); }
.g8ac-game-img { width: 5.2rem; height: 5.2rem; border-radius: 1.2rem; object-fit: cover; background: var(--g8ac-bg-deep); }
.g8ac-game-name { font-size: 1.05rem; line-height: 1.3rem; text-align: center; color: #f5f7fb; font-weight: 700; }

.g8ac-feature-list { display: grid; gap: .9rem; }
.g8ac-feature { display: flex; gap: 1rem; padding: 1rem; border-radius: 1.4rem; background: rgba(189,195,199,.1); border: .1rem solid var(--g8ac-border); }
.g8ac-feature-icon { width: 3.8rem; height: 3.8rem; display: grid; place-items: center; flex: 0 0 auto; border-radius: 1.1rem; color: #fff; background: linear-gradient(135deg, var(--g8ac-primary), #696969); }
.g8ac-feature h3 { margin: 0 0 .5rem; font-size: 1.55rem; line-height: 2rem; }
.g8ac-feature p { margin: 0; color: #dce3ec; line-height: 2.15rem; }
.g8ac-stat-card { padding: 1.2rem; border-radius: 1.5rem; background: rgba(149,165,166,.13); border: .1rem solid var(--g8ac-border); }
.g8ac-stat-bar { height: .8rem; border-radius: 999px; background: rgba(255,255,255,.12); overflow: hidden; margin-top: .8rem; }
.g8ac-stat-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--g8ac-primary-glow), var(--g8ac-silver)); }
.g8ac-quote { margin: 0; padding: 1.2rem; border-left: .35rem solid var(--g8ac-primary-glow); background: rgba(189,195,199,.09); border-radius: 1.2rem; }
.g8ac-winner { display: flex; justify-content: space-between; gap: 1rem; padding: .9rem 0; border-bottom: .1rem solid var(--g8ac-border); }
.g8ac-winner:last-child { border-bottom: 0; }
.g8ac-badge { padding: .35rem .7rem; border-radius: 999px; background: rgba(0,0,205,.28); color: #fff; font-size: 1.1rem; font-weight: 800; }
.g8ac-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 1.4rem; font-size: 1.25rem; }
.g8ac-table th, .g8ac-table td { padding: .9rem .7rem; border-bottom: .1rem solid var(--g8ac-border); text-align: left; }
.g8ac-table th { color: #fff; background: rgba(0,0,205,.22); }
.g8ac-payments { display: flex; flex-wrap: wrap; gap: .8rem; }
.g8ac-payment { min-height: 4.4rem; display: inline-flex; align-items: center; gap: .6rem; padding: .8rem 1rem; border-radius: 1.3rem; background: rgba(37,53,79,.95); border: .1rem solid var(--g8ac-border); font-weight: 800; }
.g8ac-internal { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1rem; }
.g8ac-internal a { color: var(--g8ac-silver); text-decoration: underline; font-weight: 700; }

.g8ac-footer { padding: 2rem 1.4rem 8.8rem; background: #080e19; border-top: .1rem solid var(--g8ac-border); }
.g8ac-footer-logo { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.g8ac-footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; margin: 1.2rem 0; }
.g8ac-footer-links a { color: var(--g8ac-silver); text-decoration: none; padding: .8rem; background: rgba(189,195,199,.08); border-radius: 1rem; }
.g8ac-footer-cta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; margin: 1.2rem 0; }
.g8ac-partners { display: flex; gap: .8rem; flex-wrap: wrap; margin: 1.2rem 0; }
.g8ac-partner { padding: .7rem 1rem; border-radius: 1rem; background: rgba(255,255,255,.08); color: var(--g8ac-muted); font-weight: 800; font-size: 1.1rem; }
.g8ac-copy { color: var(--g8ac-muted); font-size: 1.2rem; }

.g8ac-bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 6.2rem;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  background: #0000CD;
  border-top: .1rem solid rgba(255,255,255,.22);
  box-shadow: 0 -1rem 2rem rgba(0,0,0,.35);
}
.g8ac-bottom-btn {
  min-width: 6rem;
  min-height: 6rem;
  flex: 1;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.78);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, color .18s ease, background .18s ease;
}
.g8ac-bottom-btn i, .g8ac-bottom-btn .material-icons, .g8ac-bottom-btn ion-icon { font-size: 2.3rem; line-height: 2.4rem; }
.g8ac-bottom-active { color: #fff; background: rgba(255,255,255,.16); }
.g8ac-bottom-active i, .g8ac-bottom-active .material-icons, .g8ac-bottom-active ion-icon { filter: drop-shadow(0 0 .7rem rgba(255,255,255,.55)); }
.g8ac-nav-badge { position: absolute; margin-left: 2rem; margin-top: -2.2rem; background: #fff; color: var(--g8ac-primary); border-radius: 999px; font-size: .9rem; padding: .1rem .45rem; }

.g8ac-faq details { padding: 1rem; border-radius: 1.3rem; background: rgba(189,195,199,.09); border: .1rem solid var(--g8ac-border); margin-bottom: .8rem; }
.g8ac-faq summary { cursor: pointer; min-height: 4.4rem; display: flex; align-items: center; font-weight: 900; }
.g8ac-faq p { margin: .7rem 0 0; color: #dce3ec; line-height: 2.2rem; }
.g8ac-step { display: grid; grid-template-columns: 3.8rem 1fr; gap: .9rem; padding: 1rem 0; border-bottom: .1rem solid var(--g8ac-border); }
.g8ac-step-num { width: 3.8rem; height: 3.8rem; display: grid; place-items: center; border-radius: 50%; background: var(--g8ac-primary); font-weight: 900; }
.g8ac-alert { padding: 1rem; border-radius: 1.4rem; background: rgba(0,0,205,.18); border: .1rem solid rgba(68,92,255,.5); color: #eef4ff; }

@media (max-width: 768px) {
  main { padding-bottom: 8rem; }
}
@media (min-width: 769px) {
  body { background: #070d17; }
  .g8ac-page { max-width: 1100px; }
  .g8ac-container { max-width: 1100px; width: 100%; padding: 0 2.4rem; }
  .g8ac-header { max-width: 1100px; }
  .g8ac-bottom-nav { display: none; }
  .g8ac-desktop-links { display: flex; gap: 1rem; }
  .g8ac-desktop-links a { color: var(--g8ac-silver); text-decoration: none; font-weight: 800; }
  .g8ac-menu-btn { display: none; }
  .g8ac-wrapper { padding-top: 8.4rem; }
  .g8ac-game-grid { grid-template-columns: repeat(8, 1fr); }
  .g8ac-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .g8ac-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .g8ac-footer { padding-bottom: 2.8rem; }
}
