*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #F1F5F9;
  background: #0F172A;
  background-image: linear-gradient(115deg, #020617 0%, #0F172A 42%, #1E293B 100%);
  background-attachment: fixed;
  min-height: 100vh;
}
a { color: #38bdf8; text-decoration: none; }
a:hover { text-decoration: underline; color: #7dd3fc; }
img { max-width: 100%; height: auto; display: block; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #334155;
}
.header-brand { display: flex; align-items: center; }
.header-brand-logo { display: block; height: 32px; width: auto; max-width: min(200px, 52vw); }
@media (min-width: 420px) {
  .header-brand-logo { height: 36px; max-width: 220px; }
}
@media (min-width: 768px) {
  .header { padding: 14px clamp(28px, 5vw, 96px); }
}
@media (min-width: 1100px) {
  .header { padding: 14px clamp(36px, 5.5vw, 104px); }
}
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn {
  display: inline-block;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}
.btn:active { transform: scale(0.98); }
@keyframes btn-cta-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.55);
  }
  55% {
    box-shadow: 0 0 0 12px rgba(234, 88, 12, 0);
  }
}
.btn-cta {
  background: #ea580c;
  color: #fff;
  text-decoration: none;
  animation: btn-cta-pulse 2.2s ease-out infinite;
}
.btn-cta:hover,
.btn-cta:focus-visible {
  background: #c2410c;
  opacity: 0.95;
  text-decoration: none;
  animation: none;
  box-shadow: 0 4px 22px rgba(234, 88, 12, 0.45);
}
@media (prefers-reduced-motion: reduce) {
  .btn-cta { animation: none; }
}
.header-brand-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  padding: 0;
  flex-shrink: 0;
  max-width: min(220px, 56vw);
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  outline: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.header-brand-link:hover {
  text-decoration: none;
  transform: scale(1.02);
  filter: drop-shadow(0 2px 14px rgba(248, 93, 17, 0.28));
}
.header-brand-link:focus-visible {
  text-decoration: none;
  outline: 2px solid rgba(248, 93, 17, 0.65);
  outline-offset: 4px;
}

.hero {
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  text-align: center;
  padding: 40px 14px 16px;
  min-height: auto;
  background: url('images/banner.png') center/cover no-repeat;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(2, 6, 23, 0.82) 0%, rgba(15, 23, 42, 0.55) 50%, rgba(30, 41, 59, 0.75) 100%);
  z-index: 0;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: min(640px, 100%);
  width: 100%;
  margin: 0 auto;
  padding: 0 6px 10px;
  flex-shrink: 0;
  text-shadow: 0 1px 2px rgba(2, 6, 23, 0.75), 0 4px 20px rgba(2, 6, 23, 0.5);
}
.hero-visuals {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: clamp(152px, 42vw, 216px);
  align-items: stretch;
  justify-items: stretch;
  gap: 10px;
  width: 100%;
  max-width: min(900px, 100%);
  margin: 0 auto;
  padding: 8px 0 4px;
  flex: 0 0 auto;
}
.hero-girl, .hero-vox {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  pointer-events: none;
  filter: drop-shadow(0 8px 24px rgba(2, 6, 23, 0.45));
}
@media (min-width: 768px) {
  .hero {
    min-height: 72vh;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 72px min(32vw, 340px) 48px;
    box-sizing: border-box;
  }
  .hero-inner {
    z-index: 3;
    max-width: min(580px, 52vw);
    margin-left: auto;
    text-align: left;
    padding-bottom: 0;
    padding-right: clamp(0px, 1.5vw, 20px);
  }
  .hero-title { font-size: clamp(1.75rem, 5vw, 2.5rem); line-height: 1.2; margin-bottom: 12px; }
  .hero-sub { font-size: 1rem; margin-bottom: 24px; line-height: 1.6; }
  .hero-visuals { display: contents; }
  .hero-girl, .hero-vox {
    position: absolute;
    bottom: 0;
    z-index: 2;
    width: auto;
    max-width: none;
    height: min(58vh, 500px);
    max-height: none;
    object-fit: contain;
    pointer-events: none;
  }
  .hero-girl {
    left: max(env(safe-area-inset-left), clamp(40px, 7vw, 140px));
    object-position: bottom left;
  }
  .hero-vox {
    right: max(env(safe-area-inset-right), clamp(40px, 7vw, 140px));
    left: auto;
    object-position: bottom right;
  }
}
@media (min-width: 1100px) {
  .hero { padding-left: min(30vw, 360px); padding-right: min(30vw, 360px); }
  .hero-girl { left: max(env(safe-area-inset-left), clamp(56px, 9vw, 180px)); }
  .hero-vox { right: max(env(safe-area-inset-right), clamp(56px, 9vw, 180px)); }
}
.hero-title {
  font-size: clamp(1.35rem, 4.6vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 10px;
}
.hero-sub {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
  line-height: 1.45;
}
.hero .btn-cta { padding: 14px 28px; font-size: 1rem; }

.wrap { max-width: 720px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) {
  .wrap { max-width: 840px; padding: 0 24px; }
}
@media (min-width: 1100px) {
  .wrap { max-width: 960px; padding: 0 28px; }
}
.section { padding: 40px 0; }
.section h2 { font-size: 1.5rem; font-weight: 700; color: #F1F5F9; margin-bottom: 16px; }
.section h3 { font-size: 1.125rem; font-weight: 600; color: #CBD5E1; margin: 24px 0 8px; }
.section p { margin-bottom: 12px; color: #CBD5E1; }
.section ul { margin: 0 0 16px 1.25rem; color: #CBD5E1; }
.section li { margin-bottom: 6px; }
.game-category-list { margin-top: 8px; }
.game-category-list li { margin-bottom: 10px; }

.game-icons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
  gap: 12px;
  margin: 16px 0 24px;
}
.game-icon-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #334155;
  background: #0F172A;
  text-decoration: none;
  outline: none;
}
.game-icon-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  display: block;
}
.game-icon-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: rgba(15, 23, 42, 0.55);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}
.game-icon-card:hover .game-icon-play,
.game-icon-card:focus-visible .game-icon-play {
  opacity: 1;
}
.game-icon-play-btn {
  display: inline-block;
  padding: 10px 22px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #F8FAFC;
  background: transparent;
  border: 2px solid rgba(248, 250, 252, 0.95);
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.4);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.game-icon-card:hover .game-icon-play-btn,
.game-icon-card:focus-visible .game-icon-play-btn {
  border-color: #F85D11;
  color: #fff;
  background: rgba(248, 93, 17, 0.12);
}
.game-icon-card:focus-visible {
  box-shadow: 0 0 0 2px #0F172A, 0 0 0 4px #F85D11;
}
@media (min-width: 640px) {
  .game-icons { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 14px; }
  .game-icon-card .game-icon-play-btn { font-size: 0.9375rem; padding: 11px 26px; }
}

.vox-app-block {
  margin: 24px 0 28px;
  padding: 20px;
  background: #1E293B;
  border: 1px solid #334155;
  border-radius: 12px;
}
.vox-app-block--inline .vox-app-block__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px 28px;
}
.vox-app-block__visual {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 20px;
  flex-shrink: 0;
}
.vox-app-block__logo {
  flex-shrink: 0;
}
.vox-app-block__preview {
  margin: 0;
  flex-shrink: 0;
  line-height: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #334155;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  background: #0f172a;
}
.vox-app-block__preview-img {
  display: block;
  width: auto;
  height: auto;
  max-height: 118px;
  max-width: min(72px, 22vw);
  object-fit: contain;
}
@media (min-width: 480px) {
  .vox-app-block__preview-img {
    max-height: 132px;
    max-width: 80px;
  }
}
.vox-app-block__logo-link {
  display: block;
  line-height: 0;
  transition: transform 0.22s ease, filter 0.22s ease;
}
.vox-app-block__logo-link:hover,
.vox-app-block__logo-link:focus-visible {
  transform: scale(1.03);
  filter: drop-shadow(0 4px 18px rgba(248, 93, 17, 0.25));
  outline: none;
}
.vox-app-block__logo-svg {
  width: min(200px, 52vw);
  height: auto;
  max-width: 246px;
  display: block;
}
.vox-app-block__right {
  flex: 1;
  min-width: min(100%, 220px);
}
.vox-app-block .vox-app-block__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #F1F5F9;
  margin: 0 0 14px;
  line-height: 1.3;
}
.vox-app-block__stats {
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
}
.vox-app-block__stats-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.vox-app-block__stats-value {
  margin: 0;
  order: 1;
}
.vox-app-block__stats-meta {
  margin: 0;
  order: 2;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #94A3B8;
}
.vox-app-block__stat-main {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #E2E8F0;
}
.vox-app-block__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
}
.vox-app-btn {
  display: inline-block;
  line-height: 0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: #f8fafc;
  padding: 6px 10px;
  border: 1px solid #e2e8f0;
}
.vox-app-btn:hover,
.vox-app-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  outline: none;
}
.vox-app-btn:focus-visible {
  box-shadow: 0 0 0 2px #0F172A, 0 0 0 4px #F85D11;
}
.vox-app-btn img {
  display: block;
  height: auto;
  width: auto;
  max-height: 36px;
  max-width: min(155px, 48vw);
}
@media (min-width: 480px) {
  .vox-app-btn img { max-height: 40px; max-width: min(170px, 44vw); }
}
@media (max-width: 520px) {
  .vox-app-block--inline .vox-app-block__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .vox-app-block__visual {
    flex-direction: column;
    width: 100%;
  }
  .vox-app-block__right {
    width: 100%;
    min-width: 0;
  }
  .vox-app-block__buttons {
    justify-content: center;
  }
}

.table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  background: #1E293B;
  border: 1px solid #334155;
  border-radius: 12px;
}
table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
th, td { padding: 12px 16px; text-align: left; border-bottom: 1px solid #334155; color: #CBD5E1; }
th { background: #0F172A; font-weight: 600; color: #F1F5F9; }
thead th { border-bottom: 1px solid #334155; }
tbody tr:last-child td { border-bottom: 0; }

.pay-method-logo {
  height: 24px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
@media (min-width: 480px) {
  .pay-method-logo { height: 28px; max-width: 110px; }
}
.pay-extra-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin: 20px 0 12px;
  padding: 16px;
  background: #1E293B;
  border: 1px solid #334155;
  border-radius: 12px;
}

.faq-list {
  margin: 0;
}
.accordion-item {
  background: #1E293B;
  border: 1px solid #334155;
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}
.accordion-term {
  margin: 0;
  padding: 0;
  font-weight: inherit;
}
.faq-list dd.accordion-body {
  margin: 0;
  margin-inline-start: 0;
}
.accordion-trigger {
  width: 100%;
  padding: 16px 20px;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #F1F5F9;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-trigger::after { content: '+'; color: #ea580c; font-size: 1.25rem; }
.accordion-item.open .accordion-trigger::after { content: '−'; }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.accordion-body-inner { padding: 0 20px 16px; font-size: 0.9375rem; color: #94A3B8; }

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 12px 20px;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid #334155;
  display: none;
}
.sticky-cta.visible { display: block; }
.sticky-cta .btn-cta { width: 100%; text-align: center; }

.footer {
  position: relative;
  z-index: 45;
  margin-top: 48px;
  padding: 32px 20px;
  padding-bottom: max(24px, calc(24px + env(safe-area-inset-bottom, 0px)));
  background: #020617;
  border-top: 1px solid #334155;
  text-align: center;
  font-size: 0.875rem;
  color: #94A3B8;
}
/* Fixed sticky CTA otherwise covers the last lines of the footer on scroll */
body:has(.sticky-cta.visible) .footer {
  padding-bottom: max(
    calc(28px + env(safe-area-inset-bottom, 0px)),
    calc(88px + env(safe-area-inset-bottom, 0px))
  );
}
.footer-responsible {
  max-width: 42rem;
  margin: 0 auto 14px;
  line-height: 1.55;
  color: #CBD5E1;
}
.footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: #94A3B8;
}
.footer-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 16px;
  margin-bottom: 24px;
}
.footer-nav {
  margin: 0 0 22px;
  padding: 0 8px;
}
.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 10px;
  font-size: 0.8125rem;
  font-weight: 500;
}
.footer-nav-list li {
  display: inline-flex;
  align-items: center;
}
.footer-nav-list li:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 0.85em;
  margin-left: 10px;
  background: #475569;
  align-self: center;
}
.footer-nav-list a {
  color: #CBD5E1;
  text-decoration: none;
  border-radius: 4px;
  padding: 4px 2px;
}
.footer-nav-list a:hover {
  color: #F1F5F9;
  text-decoration: underline;
}
.footer-nav-list a:focus-visible {
  outline: 2px solid rgba(248, 93, 17, 0.75);
  outline-offset: 2px;
}
@media (min-width: 640px) {
  .footer-nav-list {
    gap: 10px 14px;
    font-size: 0.875rem;
  }
  .footer-nav-list li:not(:last-child)::after {
    margin-left: 14px;
  }
}
.footer-partner-card {
  position: relative;
  display: block;
  border: none;
  background: transparent;
  padding: 6px 10px;
  text-decoration: none;
  outline: none;
  overflow: visible;
}
.footer-partner-card img {
  height: clamp(22px, 4.5vw, 32px);
  width: auto;
  max-width: min(128px, 32vw);
  margin: 0 auto;
  object-fit: contain;
  display: block;
  transition: transform 0.28s ease, filter 0.28s ease;
  transform-origin: center center;
  filter: none;
}
.footer-partner-card:hover img,
.footer-partner-card:focus-visible img {
  transform: scale(1.08);
  filter:
    drop-shadow(0 0 6px rgba(248, 250, 252, 0.2))
    drop-shadow(0 0 14px rgba(248, 93, 17, 0.45))
    drop-shadow(0 0 28px rgba(248, 93, 17, 0.2))
    brightness(1.06);
}
.footer-partner-card:focus-visible img {
  outline: 2px solid rgba(248, 93, 17, 0.65);
  outline-offset: 4px;
  border-radius: 4px;
}
@media (min-width: 480px) {
  .footer-partner-card img {
    height: clamp(24px, 4vw, 34px);
    max-width: min(148px, 28vw);
  }
}
