:root {
  font-size: 62.5%;
  --g987-primary: #006400;
  --g987-aqua: #00CED1;
  --g987-bg: #071512;
  --g987-panel: #10211d;
  --g987-card: #16332c;
  --g987-text: #f3fffb;
  --g987-muted: #BBBBBB;
  --g987-mint: #00FA9A;
  --g987-sky: #87CEFA;
  --g987-dark: #2C2C2C;
  --g987-line: rgba(135, 206, 250, .18);
  --g987-shadow: 0 1.4rem 3.8rem rgba(0, 0, 0, .42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--g987-text);
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 206, 209, .22), transparent 28rem),
    linear-gradient(180deg, #071512 0%, #0c1c19 48%, #050b0a 100%);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5rem;
  overflow-x: hidden;
}
body.g987-page { min-height: 100vh; }
a { color: var(--g987-mint); text-decoration: none; }
a:hover { color: var(--g987-sky); }
img { max-width: 100%; height: auto; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }

.g987-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 21, 18, .94);
  border-bottom: .1rem solid var(--g987-line);
  backdrop-filter: blur(1.4rem);
}
.g987-header-inner {
  width: min(100%, 43rem);
  margin: 0 auto;
  min-height: 6.4rem;
  padding: .8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.g987-brand { display: flex; align-items: center; gap: .8rem; min-width: 0; color: var(--g987-text); }
.g987-logo { width: 3.2rem; height: 3.2rem; border-radius: .8rem; box-shadow: 0 0 1.6rem rgba(0, 250, 154, .42); }
.g987-brand-text { font-weight: 900; letter-spacing: -.03em; font-size: 1.7rem; white-space: nowrap; }
.g987-header-actions { margin-left: auto; display: flex; align-items: center; gap: .6rem; }
.g987-btn {
  border: 0;
  border-radius: 999rem;
  min-height: 4.4rem;
  min-width: 4.4rem;
  padding: 1rem 1.4rem;
  cursor: pointer;
  color: #03130f;
  background: linear-gradient(135deg, var(--g987-mint), var(--g987-aqua));
  font-weight: 900;
  box-shadow: 0 .7rem 1.8rem rgba(0, 250, 154, .22);
  transition: transform .18s ease, filter .18s ease, background .18s ease;
}
.g987-btn:hover, .g987-btn:focus { transform: translateY(-.1rem); filter: brightness(1.08); outline: none; }
.g987-btn-alt { color: var(--g987-text); background: rgba(135, 206, 250, .12); border: .1rem solid var(--g987-line); box-shadow: none; }
.g987-btn-wide { display: inline-flex; align-items: center; justify-content: center; gap: .8rem; width: 100%; margin: .6rem 0; }
.g987-menu-btn { color: var(--g987-text); background: rgba(0, 206, 209, .12); border: .1rem solid rgba(0, 206, 209, .4); padding: 1rem; }
.g987-menu {
  position: fixed;
  top: 6.4rem;
  left: 50%;
  width: min(100%, 43rem);
  transform: translate(-50%, -120%);
  z-index: 9999;
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(16,33,29,.98), rgba(7,21,18,.98));
  border: .1rem solid var(--g987-line);
  border-radius: 0 0 2.2rem 2.2rem;
  box-shadow: var(--g987-shadow);
  opacity: 0;
  pointer-events: none;
  transition: transform .25s ease, opacity .25s ease;
}
.g987-menu-open { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
.g987-menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.g987-menu-link { min-height: 4.8rem; padding: 1.1rem; border-radius: 1.4rem; color: var(--g987-text); background: rgba(0, 100, 0, .25); border: .1rem solid var(--g987-line); font-weight: 800; }

.g987-main { width: min(100%, 43rem); margin: 0 auto; padding: 7.4rem 1.2rem 2rem; }
.g987-container, .g987-wrapper { width: 100%; margin: 0 auto; }
.g987-hero { padding: 1.4rem 0 1rem; }
.g987-kicker { display: inline-flex; align-items: center; gap: .6rem; color: var(--g987-mint); font-size: 1.2rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.g987-title { font-size: clamp(2.5rem, 8vw, 3.8rem); line-height: 1.05; margin: 1rem 0; letter-spacing: -.06em; }
.g987-subtitle { color: #d9fff6; font-size: 1.55rem; line-height: 1.55; margin: 0 0 1.2rem; }
.g987-highlight { color: var(--g987-mint); font-weight: 900; }
.g987-text-link { color: var(--g987-mint); font-weight: 900; border-bottom: .1rem dashed rgba(0, 250, 154, .7); }
.g987-cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin: 1.2rem 0; }

.g987-slider { position: relative; overflow: hidden; border-radius: 2.4rem; border: .1rem solid var(--g987-line); box-shadow: var(--g987-shadow); background: var(--g987-panel); }
.g987-slide { display: none; min-height: 14rem; cursor: pointer; position: relative; }
.g987-slide-active { display: block; animation: g987Fade .5s ease; }
.g987-slide img { width: 100%; aspect-ratio: 16/8.5; object-fit: cover; }
.g987-slide-caption { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; padding: .8rem 1rem; border-radius: 1.2rem; background: rgba(0,0,0,.58); font-weight: 900; }
.g987-dots { display: flex; justify-content: center; gap: .6rem; padding: .9rem; }
.g987-dot { width: .8rem; height: .8rem; border-radius: 50%; border: 0; background: rgba(255,255,255,.32); cursor: pointer; }
.g987-dot-active { width: 2.2rem; border-radius: 999rem; background: var(--g987-mint); }
@keyframes g987Fade { from { opacity: .35; transform: scale(1.02); } to { opacity: 1; transform: scale(1); } }

.g987-card, .g987-section {
  margin: 1.4rem 0;
  padding: 1.5rem;
  border-radius: 2.2rem;
  background: linear-gradient(145deg, rgba(22,51,44,.96), rgba(11,28,24,.96));
  border: .1rem solid var(--g987-line);
  box-shadow: 0 .8rem 2rem rgba(0,0,0,.24);
}
.g987-section h2, .g987-card h2 { margin: 0 0 1rem; line-height: 1.15; font-size: 2.2rem; letter-spacing: -.03em; }
.g987-section h3, .g987-card h3 { margin: 1rem 0 .6rem; line-height: 1.2; font-size: 1.7rem; color: var(--g987-sky); }
.g987-section p, .g987-card p { color: #e8fff9; line-height: 1.55; margin: .8rem 0; }
.g987-grid { display: grid; gap: 1rem; }
.g987-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g987-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g987-pill-list { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1rem 0; }
.g987-pill { padding: .7rem .9rem; border-radius: 999rem; background: rgba(0, 206, 209, .12); color: var(--g987-sky); border: .1rem solid rgba(135,206,250,.22); font-weight: 800; font-size: 1.25rem; }
.g987-stat { padding: 1.1rem; border-radius: 1.6rem; background: rgba(0,0,0,.2); border: .1rem solid var(--g987-line); }
.g987-stat strong { display: block; color: var(--g987-mint); font-size: 2rem; line-height: 1.1; }
.g987-list { padding-left: 1.8rem; line-height: 1.55; color: #e8fff9; }
.g987-list li { margin: .6rem 0; }

.g987-game-section { margin: 1.6rem 0; }
.g987-game-title { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin: 1rem 0; }
.g987-game-title h2 { margin: 0; font-size: 2rem; }
.g987-game-count { color: var(--g987-muted); font-size: 1.2rem; }
.g987-game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.g987-game-card { min-width: 0; padding: .6rem; border-radius: 1.3rem; background: rgba(255,255,255,.045); border: .1rem solid rgba(255,255,255,.08); text-align: center; color: var(--g987-text); }
.g987-game-card img { width: 5.8rem; height: 5.8rem; margin: 0 auto .5rem; border-radius: 1.2rem; object-fit: cover; }
.g987-game-card span { display: block; font-size: 1.1rem; line-height: 1.2; min-height: 2.6rem; overflow: hidden; }

.g987-steps { counter-reset: g987step; display: grid; gap: 1rem; }
.g987-step { position: relative; padding: 1.1rem 1.1rem 1.1rem 4.6rem; border-radius: 1.6rem; background: rgba(0, 100, 0, .22); border: .1rem solid var(--g987-line); }
.g987-step::before { counter-increment: g987step; content: counter(g987step); position: absolute; left: 1rem; top: 1rem; width: 2.6rem; height: 2.6rem; display: grid; place-items: center; border-radius: 50%; background: var(--g987-mint); color: #03130f; font-weight: 900; }
.g987-review { padding: 1rem; border-left: .4rem solid var(--g987-aqua); background: rgba(0,206,209,.08); border-radius: 1rem; }
.g987-payment-row { display: flex; flex-wrap: wrap; gap: .7rem; }
.g987-payment { min-height: 4.4rem; padding: .9rem 1rem; border-radius: 1.2rem; background: rgba(255,255,255,.07); color: var(--g987-text); font-weight: 900; }

.g987-footer { width: min(100%, 43rem); margin: 0 auto; padding: 2rem 1.2rem 7.6rem; color: var(--g987-muted); }
.g987-footer-panel { padding: 1.6rem; border-radius: 2.2rem; background: #07110f; border: .1rem solid var(--g987-line); }
.g987-footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; margin: 1.2rem 0; }
.g987-footer-links a { padding: .8rem; border-radius: 1rem; background: rgba(0,250,154,.08); font-weight: 800; }
.g987-partners { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1rem 0; }
.g987-partner { padding: .7rem .9rem; border-radius: .9rem; background: rgba(135,206,250,.12); color: var(--g987-sky); font-size: 1.2rem; }

.g987-bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 1000;
  width: min(100%, 43rem);
  height: 6.2rem;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  background: #006400;
  border-top: .1rem solid rgba(135,206,250,.35);
  box-shadow: 0 -1rem 2.8rem rgba(0,0,0,.35);
}
.g987-bottom-item {
  flex: 1;
  min-width: 6rem;
  min-height: 6rem;
  border: 0;
  background: transparent;
  color: #dfffee;
  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, background .18s ease;
}
.g987-bottom-item i, .g987-bottom-item ion-icon, .g987-bottom-item .material-icons, .g987-bottom-item .ti { font-size: 2.3rem; line-height: 1; }
.g987-bottom-item.g987-active, .g987-bottom-item:hover { color: #061410; background: var(--g987-mint); transform: translateY(-.4rem); border-radius: 1.8rem 1.8rem 0 0; }
.g987-touching { transform: scale(.96); }
.g987-badge { position: absolute; margin-left: 2.2rem; margin-top: -2.4rem; background: #ffdf4d; color: #111; border-radius: 999rem; padding: .1rem .5rem; font-size: .95rem; }

.g987-faq details { padding: 1rem; border-radius: 1.4rem; background: rgba(255,255,255,.05); border: .1rem solid var(--g987-line); margin: .8rem 0; }
.g987-faq summary { cursor: pointer; font-weight: 900; color: var(--g987-mint); }
.g987-mini-hero { padding: 2rem 1.5rem; border-radius: 2.4rem; background: linear-gradient(135deg, rgba(0,100,0,.95), rgba(0,206,209,.28)); border: .1rem solid var(--g987-line); }
.g987-note { font-size: 1.3rem; color: var(--g987-muted); }

@media (min-width: 769px) {
  body { background: #071512; }
  .g987-header-inner, .g987-main, .g987-footer, .g987-bottom-nav, .g987-menu { width: min(100%, 108rem); max-width: 108rem; }
  .g987-main { padding-left: 2rem; padding-right: 2rem; }
  .g987-bottom-nav { display: none; }
  .g987-menu { position: static; transform: none; opacity: 1; pointer-events: auto; width: auto; margin-left: auto; padding: 0; background: transparent; border: 0; box-shadow: none; }
  .g987-menu-grid { display: flex; gap: .6rem; }
  .g987-menu-link { min-height: 4.4rem; white-space: nowrap; }
  .g987-menu-btn { display: none; }
  .g987-game-grid { grid-template-columns: repeat(8, 1fr); }
  .g987-grid-desktop-3 { grid-template-columns: repeat(3, 1fr); }
  .g987-footer { padding-bottom: 2rem; }
}

@media (max-width: 768px) {
  main.g987-main { padding-bottom: 8rem; }
  .g987-desktop-only { display: none !important; }
}

@media (max-width: 360px) {
  .g987-header-inner { padding: .7rem .8rem; gap: .5rem; }
  .g987-brand-text { font-size: 1.45rem; }
  .g987-btn { padding: .9rem 1rem; font-size: 1.25rem; }
  .g987-game-grid { grid-template-columns: repeat(3, 1fr); }
  .g987-bottom-item { font-size: .95rem; }
}
