/* jl333 mobile-first design system */
:root {
  font-size: 62.5%;
  --v796-primary: #00B8D4;
  --v796-primary-2: #4DB6AC;
  --v796-bg: #071B24;
  --v796-bg-2: #102C38;
  --v796-panel: #173B47;
  --v796-deep: #2C3E50;
  --v796-text: #F0FDFF;
  --v796-muted: #BBBBBB;
  --v796-gold: #FFD166;
  --v796-danger: #FF6B6B;
  --v796-line: rgba(240,253,255,.14);
  --v796-shadow: 0 1.2rem 3.2rem rgba(0,0,0,.35);
  --v796-radius: 1.8rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--v796-text);
  background: radial-gradient(circle at top left, rgba(0,184,212,.22), transparent 30rem), linear-gradient(180deg, #061720 0%, #0A202B 46%, #06171F 100%);
  font-size: 1.5rem;
  line-height: 1.5rem;
  overflow-x: hidden;
}
body.v796-lock { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.v796-page {
  width: 100%;
  max-width: 43rem;
  margin: 0 auto;
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(12,42,53,.96), rgba(5,18,25,.98));
  box-shadow: 0 0 4rem rgba(0,0,0,.35);
}
.v796-container { width: min(100% - 2.4rem, 40.6rem); margin: 0 auto; }
.v796-wrapper { padding: 8.8rem 0 2.4rem; }
.v796-grid { display: grid; gap: 1.2rem; }
.v796-section { padding: 1.8rem 0; }
.v796-section-title { margin: 0 0 1rem; font-size: 2rem; line-height: 2.6rem; color: var(--v796-text); }
.v796-kicker { color: var(--v796-primary); font-weight: 800; font-size: 1.2rem; letter-spacing: .08em; text-transform: uppercase; }
.v796-text { color: var(--v796-muted); line-height: 2.3rem; margin: .8rem 0; }
.v796-strong { color: var(--v796-gold); font-weight: 900; }
.v796-link { color: var(--v796-primary); font-weight: 900; border-bottom: .1rem dashed var(--v796-primary-2); }
.v796-link:hover { color: var(--v796-gold); }

.v796-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 100%;
  max-width: 43rem;
  background: rgba(7,27,36,.94);
  backdrop-filter: blur(1.8rem);
  border-bottom: .1rem solid var(--v796-line);
}
.v796-topbar { height: 6.8rem; display: flex; align-items: center; gap: .8rem; padding: 0 1.2rem; }
.v796-brand { display: flex; align-items: center; gap: .8rem; min-width: 0; margin-right: auto; }
.v796-logo { width: 3.2rem; height: 3.2rem; border-radius: .9rem; box-shadow: 0 0 1.8rem rgba(0,184,212,.55); }
.v796-brand-name { font-size: 1.8rem; font-weight: 950; letter-spacing: .02em; color: var(--v796-text); }
.v796-brand-tag { display: block; color: var(--v796-muted); font-size: 1rem; line-height: 1.1rem; }
.v796-actions { display: flex; gap: .6rem; align-items: center; }
.v796-btn {
  min-height: 4.4rem;
  border: 0;
  border-radius: 999rem;
  padding: 0 1.3rem;
  color: #041319;
  background: linear-gradient(135deg, var(--v796-primary), var(--v796-primary-2));
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 .8rem 1.8rem rgba(0,184,212,.24);
  transition: transform .2s ease, filter .2s ease, background .2s ease;
}
.v796-btn:hover, .v796-btn:focus-visible { transform: translateY(-.1rem); filter: brightness(1.08); outline: none; }
.v796-btn-alt { color: var(--v796-text); background: rgba(240,253,255,.1); border: .1rem solid rgba(240,253,255,.2); }
.v796-menu-btn {
  width: 4.4rem; height: 4.4rem; padding: 0; display: grid; place-items: center; border-radius: 1.2rem;
  color: var(--v796-text); background: rgba(77,182,172,.13); border: .1rem solid var(--v796-line); cursor: pointer;
}
.v796-menu-btn .material-icons { font-size: 2.6rem; }
.v796-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(3,13,18,.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.v796-menu-open { opacity: 1; pointer-events: auto; }
.v796-menu-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(34rem, 88vw);
  min-height: 100vh;
  padding: 2rem 1.6rem;
  background: linear-gradient(180deg, #0E2D3A, #071B24);
  border-left: .1rem solid var(--v796-line);
  transform: translateX(100%);
  transition: transform .22s ease;
  box-shadow: var(--v796-shadow);
}
.v796-menu-open .v796-menu-panel { transform: translateX(0); }
.v796-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.6rem; }
.v796-menu-title { font-size: 2rem; font-weight: 950; }
.v796-menu-close { width: 4.4rem; height: 4.4rem; border: 0; border-radius: 50%; color: var(--v796-text); background: rgba(255,255,255,.1); }
.v796-nav { display: grid; gap: .8rem; }
.v796-nav a { min-height: 4.8rem; display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; border-radius: 1.4rem; background: rgba(240,253,255,.07); color: var(--v796-text); border: .1rem solid transparent; }
.v796-nav a.v796-active, .v796-nav a:hover { border-color: rgba(0,184,212,.5); background: rgba(0,184,212,.13); }
.v796-desktop-nav { display: none; }

.v796-hero { padding-top: 1.6rem; }
.v796-hero-card { border-radius: 2.4rem; overflow: hidden; background: linear-gradient(150deg, rgba(0,184,212,.2), rgba(44,62,80,.8)); border: .1rem solid var(--v796-line); box-shadow: var(--v796-shadow); }
.v796-slider { position: relative; height: 18rem; background: #123441; overflow: hidden; }
.v796-slide { position: absolute; inset: 0; opacity: 0; transform: scale(1.04); transition: opacity .5s ease, transform .5s ease; cursor: pointer; }
.v796-slide-active { opacity: 1; transform: scale(1); }
.v796-slide img { width: 100%; height: 100%; object-fit: cover; }
.v796-slider-overlay { position: absolute; inset: auto 0 0; padding: 5rem 1.4rem 1.4rem; background: linear-gradient(transparent, rgba(0,0,0,.75)); }
.v796-slider-title { font-size: 2.2rem; font-weight: 950; line-height: 2.6rem; margin: 0; }
.v796-dots { position: absolute; right: 1.2rem; bottom: 1.2rem; display: flex; gap: .5rem; }
.v796-dot { width: .8rem; height: .8rem; border-radius: 999rem; border: 0; background: rgba(255,255,255,.42); }
.v796-dot-active { width: 2.2rem; background: var(--v796-primary); }
.v796-hero-body { padding: 1.6rem; }
.v796-h1 { margin: 0 0 1rem; font-size: 2.8rem; line-height: 3.3rem; letter-spacing: -.03em; }
.v796-cta-row { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.4rem; }

.v796-card { border-radius: var(--v796-radius); padding: 1.4rem; background: rgba(240,253,255,.07); border: .1rem solid var(--v796-line); box-shadow: 0 .8rem 2rem rgba(0,0,0,.18); }
.v796-card-glow { background: linear-gradient(145deg, rgba(0,184,212,.17), rgba(77,182,172,.09)); border-color: rgba(0,184,212,.35); }
.v796-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.v796-stat { padding: 1.2rem .8rem; border-radius: 1.4rem; text-align: center; background: rgba(0,0,0,.18); }
.v796-stat b { display: block; color: var(--v796-gold); font-size: 1.8rem; line-height: 2.2rem; }
.v796-stat span { color: var(--v796-muted); font-size: 1.1rem; line-height: 1.4rem; }

.v796-game-section { margin: 1.4rem 0; }
.v796-game-title { display: flex; align-items: center; justify-content: space-between; margin: 0 0 1rem; font-size: 1.8rem; }
.v796-game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
.v796-game { min-width: 0; text-align: center; color: var(--v796-text); }
.v796-game img { width: 6.2rem; height: 6.2rem; margin: 0 auto .5rem; object-fit: cover; border-radius: 1.6rem; border: .1rem solid rgba(255,255,255,.14); box-shadow: 0 .8rem 1.4rem rgba(0,0,0,.28); }
.v796-game span { display: block; font-size: 1.05rem; line-height: 1.35rem; min-height: 2.7rem; color: var(--v796-text); overflow-wrap: anywhere; }
.v796-game:hover img { transform: translateY(-.2rem) scale(1.03); box-shadow: 0 0 1.6rem rgba(0,184,212,.3); }

.v796-feature-list { display: grid; gap: 1rem; }
.v796-feature { display: flex; gap: 1rem; align-items: flex-start; }
.v796-feature i, .v796-feature .material-icons, .v796-feature ion-icon { flex: 0 0 2.8rem; width: 2.8rem; height: 2.8rem; display: grid; place-items: center; color: var(--v796-primary); font-size: 2.4rem; }
.v796-feature h3 { margin: 0 0 .4rem; font-size: 1.6rem; line-height: 2rem; }
.v796-feature p { margin: 0; color: var(--v796-muted); line-height: 2.2rem; }
.v796-badges { display: flex; flex-wrap: wrap; gap: .7rem; }
.v796-badge { display: inline-flex; align-items: center; min-height: 3.2rem; padding: .6rem 1rem; border-radius: 999rem; background: rgba(0,184,212,.12); color: var(--v796-text); border: .1rem solid rgba(0,184,212,.28); font-size: 1.2rem; font-weight: 800; }
.v796-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 1.4rem; }
.v796-table th, .v796-table td { padding: 1rem .8rem; border-bottom: .1rem solid var(--v796-line); text-align: left; line-height: 1.8rem; }
.v796-table th { color: var(--v796-primary); font-size: 1.2rem; }
.v796-review { border-left: .3rem solid var(--v796-primary); padding-left: 1.2rem; }
.v796-stars { color: var(--v796-gold); letter-spacing: .12em; }
.v796-steps { counter-reset: step; display: grid; gap: 1rem; }
.v796-step { position: relative; padding-left: 4.6rem; }
.v796-step::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: 0; width: 3.2rem; height: 3.2rem; display: grid; place-items: center; border-radius: 50%; background: var(--v796-primary); color: #021217; font-weight: 950; }
.v796-faq details { padding: 1.2rem; border-radius: 1.4rem; background: rgba(255,255,255,.06); border: .1rem solid var(--v796-line); margin-bottom: .9rem; }
.v796-faq summary { cursor: pointer; font-weight: 900; color: var(--v796-text); }
.v796-faq p { color: var(--v796-muted); line-height: 2.2rem; }

.v796-footer { padding: 2.4rem 1.2rem 9rem; background: #06171F; border-top: .1rem solid var(--v796-line); }
.v796-footer-logo { display: flex; align-items: center; gap: .8rem; font-weight: 950; font-size: 2rem; }
.v796-footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; margin: 1.4rem 0; }
.v796-footer-links a { padding: 1rem; border-radius: 1.2rem; background: rgba(255,255,255,.06); color: var(--v796-muted); }
.v796-footer-promos { display: flex; gap: .8rem; flex-wrap: wrap; margin: 1.2rem 0; }
.v796-partners { display: flex; gap: .8rem; flex-wrap: wrap; margin: 1rem 0; }
.v796-partner { padding: .6rem .9rem; border-radius: .9rem; background: rgba(240,253,255,.08); color: var(--v796-muted); font-size: 1.1rem; }
.v796-copy { color: var(--v796-muted); font-size: 1.2rem; }

.v796-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: center;
  background: #082331;
  border-top: .1rem solid rgba(0,184,212,.28);
  box-shadow: 0 -1rem 2.4rem rgba(0,0,0,.35);
}
.v796-bottom-nav button, .v796-bottom-nav a {
  min-width: 6rem; min-height: 6rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .3rem; border: 0; background: transparent; color: var(--v796-muted); font-size: 1.05rem; cursor: pointer; transition: transform .18s ease, color .18s ease;
}
.v796-bottom-nav i, .v796-bottom-nav .material-icons, .v796-bottom-nav ion-icon { font-size: 2.4rem; line-height: 2.4rem; }
.v796-bottom-nav .v796-active, .v796-bottom-nav button:hover, .v796-bottom-nav a:hover { color: var(--v796-primary); transform: translateY(-.2rem); }
.v796-bottom-nav .v796-active::before { content: ""; position: absolute; top: .4rem; width: 2.8rem; height: .3rem; border-radius: 999rem; background: var(--v796-gold); }
.v796-pulse { transform: scale(.96) !important; }

@media (max-width: 768px) { main { padding-bottom: 8rem; } }
@media (min-width: 769px) {
  body { background: #06171F; }
  .v796-page, .v796-header, .v796-bottom-nav { max-width: 118rem; }
  .v796-container { width: min(100% - 4rem, 112rem); }
  .v796-wrapper { padding-top: 9rem; }
  .v796-menu-btn { display: none; }
  .v796-desktop-nav { display: flex; gap: .8rem; margin-left: 1rem; }
  .v796-desktop-nav a { min-height: 4.4rem; display: flex; align-items: center; padding: 0 1rem; border-radius: 999rem; color: var(--v796-muted); }
  .v796-desktop-nav a:hover, .v796-desktop-nav a.v796-active { color: var(--v796-text); background: rgba(0,184,212,.14); }
  .v796-bottom-nav { display: none; }
  .v796-hero-card { display: grid; grid-template-columns: 1.1fr .9fr; }
  .v796-slider { height: 32rem; }
  .v796-game-grid { grid-template-columns: repeat(8, 1fr); }
  .v796-footer { padding-bottom: 3rem; }
}
