:root {
  font-size: 62.5%;
  --vce1-bg: #0b1620;
  --vce1-bg-2: #102638;
  --vce1-panel: #142f46;
  --vce1-primary: #00ff7f;
  --vce1-accent: #87cefa;
  --vce1-muted: #a9bac5;
  --vce1-text: #f0f8ff;
  --vce1-ink: #2e4057;
  --vce1-gold: #d8ff66;
  --vce1-shadow: 0 1.8rem 4rem rgba(0, 0, 0, .34);
  --vce1-radius: 1.8rem;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--vce1-text);
  background: radial-gradient(circle at 20% 0%, rgba(135, 206, 250, .18), transparent 32%), linear-gradient(160deg, #071018 0%, var(--vce1-bg) 48%, #042313 100%);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5rem;
  overflow-x: hidden;
}
body.vce1-body-lock { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }
.vce1-page {
  width: 100%;
  max-width: 430px;
  min-height: 100vh;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(16, 38, 56, .92), rgba(4, 23, 20, .94));
  box-shadow: 0 0 4rem rgba(0, 0, 0, .45);
}
.vce1-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 1000;
  background: rgba(11, 22, 32, .96);
  backdrop-filter: blur(18px);
  border-bottom: .1rem solid rgba(135, 206, 250, .22);
}
.vce1-topbar {
  min-height: 6.4rem;
  padding: .8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.vce1-brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  min-width: 0;
  flex: 1;
  text-decoration: none;
}
.vce1-logo {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: .9rem;
  box-shadow: 0 0 1.8rem rgba(0, 255, 127, .45);
}
.vce1-brand-text {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: .02rem;
  white-space: nowrap;
  color: var(--vce1-text);
}
.vce1-actions {
  display: flex;
  align-items: center;
  gap: .55rem;
}
.vce1-btn {
  min-height: 4.4rem;
  min-width: 4.4rem;
  border: 0;
  border-radius: 999px;
  padding: .9rem 1.15rem;
  color: #06120b;
  background: linear-gradient(135deg, var(--vce1-primary), #d8ff66);
  font-size: 1.2rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 .8rem 2rem rgba(0, 255, 127, .25);
  transition: transform .18s ease, filter .18s ease, background .18s ease;
}
.vce1-btn:hover, .vce1-btn:focus { transform: translateY(-.15rem) scale(1.02); filter: brightness(1.08); }
.vce1-btn-alt { background: linear-gradient(135deg, #87cefa, #f0f8ff); color: #122131; }
.vce1-btn-ghost { background: rgba(240, 248, 255, .08); color: var(--vce1-text); border: .1rem solid rgba(240, 248, 255, .18); box-shadow: none; }
.vce1-menu-btn {
  width: 4.4rem;
  height: 4.4rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--vce1-text);
  background: rgba(135, 206, 250, .12);
  border: .1rem solid rgba(135, 206, 250, .25);
}
.vce1-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(2, 8, 13, .82);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.vce1-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(86vw, 36rem);
  height: 100vh;
  padding: 2rem;
  background: linear-gradient(180deg, #102638, #061a13);
  border-left: .1rem solid rgba(0, 255, 127, .24);
  transform: translateX(100%);
  transition: transform .26s ease;
  overflow-y: auto;
}
.vce1-menu-open { opacity: 1; pointer-events: auto; }
.vce1-menu-open .vce1-menu-panel { transform: translateX(0); }
.vce1-menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; }
.vce1-menu-title { font-size: 2rem; font-weight: 900; color: var(--vce1-primary); }
.vce1-menu-close { color: var(--vce1-text); background: transparent; border: .1rem solid rgba(240, 248, 255, .2); border-radius: 50%; width: 4.4rem; height: 4.4rem; }
.vce1-nav { display: grid; gap: .9rem; }
.vce1-nav a {
  min-height: 4.6rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1rem 1.2rem;
  border-radius: 1.3rem;
  text-decoration: none;
  color: var(--vce1-text);
  background: rgba(240, 248, 255, .07);
  border: .1rem solid rgba(135, 206, 250, .14);
}
.vce1-nav a:hover { background: rgba(0, 255, 127, .12); }
.vce1-desktop-nav { display: none; }
.vce1-main { padding-top: 7.2rem; }
.vce1-container { width: 100%; padding: 1.2rem; }
.vce1-wrapper { display: grid; gap: 1.4rem; }
.vce1-hero { padding: 1rem 0 0; }
.vce1-kicker { color: var(--vce1-primary); font-size: 1.2rem; text-transform: uppercase; letter-spacing: .14rem; font-weight: 900; }
.vce1-title { margin: .7rem 0 1rem; font-size: clamp(2.8rem, 9vw, 4.4rem); line-height: 1.02; font-weight: 950; letter-spacing: -.08rem; }
.vce1-subtitle { color: var(--vce1-muted); font-size: 1.55rem; line-height: 2.35rem; }
.vce1-cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.3rem; }
.vce1-link-strong { color: var(--vce1-primary); font-weight: 900; text-decoration-thickness: .2rem; }
.vce1-carousel { position: relative; height: 19rem; border-radius: 2rem; overflow: hidden; box-shadow: var(--vce1-shadow); background: var(--vce1-panel); }
.vce1-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .55s ease; cursor: pointer; }
.vce1-slide-active { opacity: 1; }
.vce1-slide img { width: 100%; height: 100%; object-fit: cover; }
.vce1-slide-caption { position: absolute; left: 1.2rem; right: 1.2rem; bottom: 1.2rem; padding: 1rem; border-radius: 1.4rem; background: rgba(6, 18, 25, .78); border: .1rem solid rgba(240, 248, 255, .14); }
.vce1-dots { position: absolute; top: 1rem; right: 1rem; display: flex; gap: .5rem; }
.vce1-dot { width: .8rem; height: .8rem; border: 0; border-radius: 50%; background: rgba(240, 248, 255, .44); }
.vce1-dot-active { background: var(--vce1-primary); }
.vce1-section { margin-top: 1.6rem; padding: 1.4rem; border-radius: var(--vce1-radius); background: rgba(20, 47, 70, .72); border: .1rem solid rgba(135, 206, 250, .18); box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, .16); }
.vce1-section h2 { margin: 0 0 1rem; font-size: 2.15rem; line-height: 2.55rem; }
.vce1-section h3 { margin: 1rem 0 .7rem; font-size: 1.7rem; line-height: 2.2rem; color: var(--vce1-accent); }
.vce1-section p { margin: .7rem 0; color: #d8eaf3; line-height: 2.35rem; }
.vce1-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.vce1-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .8rem; }
.vce1-card { padding: 1.1rem; border-radius: 1.5rem; background: rgba(240, 248, 255, .06); border: .1rem solid rgba(240, 248, 255, .12); }
.vce1-card strong { color: var(--vce1-primary); }
.vce1-chip { display: inline-flex; align-items: center; gap: .4rem; margin: .25rem; padding: .55rem .85rem; border-radius: 999px; background: rgba(0, 255, 127, .11); color: var(--vce1-primary); font-size: 1.15rem; font-weight: 800; }
.vce1-game-block { margin-top: 1.6rem; }
.vce1-game-title { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .9rem; }
.vce1-game-title h2 { margin: 0; font-size: 2rem; }
.vce1-game-count { color: var(--vce1-gold); font-size: 1.2rem; font-weight: 900; }
.vce1-game-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .8rem; }
.vce1-game { min-height: 9.8rem; padding: .65rem; border-radius: 1.2rem; text-align: center; background: linear-gradient(180deg, rgba(135, 206, 250, .1), rgba(0, 255, 127, .05)); border: .1rem solid rgba(135, 206, 250, .18); cursor: pointer; transition: transform .18s ease, border-color .18s ease; }
.vce1-game:hover { transform: translateY(-.2rem); border-color: rgba(0, 255, 127, .55); }
.vce1-game img { width: 5.2rem; height: 5.2rem; margin: 0 auto .55rem; border-radius: 1.1rem; object-fit: cover; }
.vce1-game span { display: block; color: var(--vce1-text); font-size: 1.05rem; line-height: 1.3rem; font-weight: 800; }
.vce1-metric { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem 0; border-bottom: .1rem solid rgba(240, 248, 255, .1); }
.vce1-metric:last-child { border-bottom: 0; }
.vce1-metric b { color: var(--vce1-primary); }
.vce1-review { display: grid; gap: .5rem; padding: 1rem; border-left: .35rem solid var(--vce1-primary); background: rgba(240, 248, 255, .06); border-radius: 1rem; }
.vce1-footer { margin-top: 2rem; padding: 2rem 1.2rem 8.6rem; background: #061018; border-top: .1rem solid rgba(135, 206, 250, .2); }
.vce1-footer-brand { display: flex; gap: 1rem; align-items: center; margin-bottom: 1rem; }
.vce1-partners { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1rem 0; }
.vce1-partner { padding: .7rem .9rem; border-radius: 999px; background: rgba(128, 128, 128, .22); color: var(--vce1-accent); font-weight: 800; font-size: 1.15rem; }
.vce1-footer-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem; margin: 1rem 0; }
.vce1-footer-links a { color: #d8eaf3; text-decoration: none; padding: .75rem; border-radius: 1rem; background: rgba(255, 255, 255, .05); }
.vce1-footer-cta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; margin: 1.2rem 0; }
.vce1-copy { color: var(--vce1-muted); font-size: 1.2rem; }
.vce1-bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 1000;
  width: 100%;
  max-width: 430px;
  height: 6.2rem;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  background: #006400;
  border-top: .2rem solid rgba(0, 255, 127, .55);
  box-shadow: 0 -1.2rem 2.4rem rgba(0, 0, 0, .32);
}
.vce1-bottom-item {
  position: relative;
  min-width: 6rem;
  min-height: 6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .25rem;
  color: #f0f8ff;
  background: transparent;
  border: 0;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .16s ease, color .16s ease, background .16s ease;
}
.vce1-bottom-item i, .vce1-bottom-item .material-icons, .vce1-bottom-item ion-icon { font-size: 2.4rem; line-height: 2.4rem; }
.vce1-bottom-item:hover, .vce1-bottom-item:focus, .vce1-bottom-item.vce1-current { color: var(--vce1-gold); background: rgba(0, 0, 0, .18); transform: translateY(-.2rem) scale(1.02); }
.vce1-badge { position: absolute; top: .45rem; right: 1.45rem; min-width: 1.55rem; height: 1.55rem; border-radius: 50%; background: #87cefa; color: #071018; font-size: .95rem; font-weight: 900; }
.vce1-faq details { margin: .9rem 0; padding: 1rem; border-radius: 1.2rem; background: rgba(240, 248, 255, .06); }
.vce1-faq summary { min-height: 4.4rem; cursor: pointer; color: var(--vce1-primary); font-weight: 900; }
.vce1-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 1.2rem; font-size: 1.25rem; }
.vce1-table th, .vce1-table td { padding: .8rem; border-bottom: .1rem solid rgba(240, 248, 255, .1); text-align: left; }
.vce1-table th { color: var(--vce1-primary); background: rgba(0, 0, 0, .2); }
@media (min-width: 769px) {
  body { background: #061018; }
  .vce1-page, .vce1-header, .vce1-bottom-nav { max-width: 1100px; }
  .vce1-page { background: rgba(16, 38, 56, .88); }
  .vce1-container { padding: 1.6rem 2rem; }
  .vce1-menu-btn { display: none; }
  .vce1-desktop-nav { display: flex; gap: .7rem; align-items: center; }
  .vce1-desktop-nav a { color: var(--vce1-text); text-decoration: none; font-size: 1.25rem; font-weight: 800; }
  .vce1-bottom-nav { display: none; }
  .vce1-game-grid { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .vce1-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .vce1-footer { padding-bottom: 2rem; }
}
@media (max-width: 768px) { .vce1-main { padding-bottom: 8rem; } }
