/* ===========================================================
   okada.cyou - Core Stylesheet
   All custom classes use the "v96e-" prefix.
   Palette: #5F9EA0 | #F8F9FA | #212F3D | #880E4F | #00E5FF | #00CED1
   Mobile-first. Root font 62.5% for clean rem math.
   =========================================================== */

:root {
  --v96e-primary: #00CED1;
  --v96e-accent: #00E5FF;
  --v96e-deep: #212F3D;
  --v96e-deep-2: #1a2530;
  --v96e-wine: #880E4F;
  --v96e-sage: #5F9EA0;
  --v96e-light: #F8F9FA;
  --v96e-muted: #9fb3c2;
  --v96e-card: #2a3a4a;
  --v96e-border: rgba(0, 229, 255, 0.18);
  --v96e-radius: 14px;
  --v96e-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  --v96e-header-h: 56px;
  --v96e-bottom-h: 60px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 62.5%; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  background: var(--v96e-deep);
  color: var(--v96e-light);
  line-height: 1.5rem;
  font-size: 1.5rem;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--v96e-accent); text-decoration: none; }
a:hover { color: var(--v96e-primary); }

.v96e-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.v96e-wrapper { width: 100%; max-width: 430px; margin: 0 auto; }

/* ===================== Header ===================== */
.v96e-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--v96e-header-h);
  background: linear-gradient(90deg, var(--v96e-deep-2), var(--v96e-deep));
  border-bottom: 1px solid var(--v96e-border);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.v96e-header-inner {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}
.v96e-brand { display: flex; align-items: center; gap: 0.6rem; min-width: 0; }
.v96e-brand img { width: 28px; height: 28px; border-radius: 6px; }
.v96e-brand-name {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  background: linear-gradient(90deg, var(--v96e-accent), var(--v96e-primary));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
.v96e-header-actions { display: flex; align-items: center; gap: 0.4rem; }
.v96e-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-size: 1.3rem; font-weight: 700;
  border: none; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  min-height: 36px; text-align: center;
}
.v96e-btn:active { transform: scale(0.96); }
.v96e-btn-login {
  background: transparent;
  color: var(--v96e-light);
  border: 1px solid var(--v96e-border);
}
.v96e-btn-login:hover { color: var(--v96e-accent); border-color: var(--v96e-accent); }
.v96e-btn-register {
  background: linear-gradient(90deg, var(--v96e-wine), #b3125f);
  color: #fff;
  box-shadow: 0 4px 14px rgba(136, 14, 79, 0.45);
}
.v96e-btn-register:hover { color: #fff; filter: brightness(1.08); }
.v96e-btn-ghost {
  background: transparent;
  color: var(--v96e-accent);
  border: 1px solid var(--v96e-accent);
}
.v96e-menu-btn {
  background: transparent; border: none; color: var(--v96e-light);
  font-size: 1.9rem; cursor: pointer; padding: 0.4rem 0.6rem; min-width: 36px;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ===================== Mobile Slide Menu ===================== */
.v96e-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998; opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease;
}
.v96e-overlay-show { opacity: 1; visibility: visible; }
.v96e-mobile-menu {
  position: fixed; top: 0; right: -80%;
  width: 80%; max-width: 320px; height: 100%;
  background: var(--v96e-deep-2);
  z-index: 9999;
  padding: 2rem 1.6rem;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.v96e-menu-open { right: 0; }
.v96e-mobile-menu h3 {
  font-size: 1.5rem; color: var(--v96e-muted);
  text-transform: uppercase; letter-spacing: 1px;
  margin: 1.4rem 0 0.8rem;
}
.v96e-mobile-menu a {
  display: block;
  padding: 1rem 0.6rem;
  color: var(--v96e-light);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 1.5rem; font-weight: 600;
}
.v96e-mobile-menu a:hover { color: var(--v96e-accent); padding-left: 1rem; }
.v96e-menu-close {
  background: transparent; border: none; color: var(--v96e-light);
  font-size: 2.2rem; cursor: pointer; float: right;
}

/* ===================== Main / Sections ===================== */
main { padding-top: calc(var(--v96e-header-h) + 8px); }
@media (max-width: 768px) {
  main { padding-bottom: calc(var(--v96e-bottom-h) + 20px); }
}

.v96e-section { padding: 2.4rem 0; }
.v96e-section-alt { background: var(--v96e-deep-2); }

.v96e-section-title {
  font-size: 2rem; font-weight: 800;
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--v96e-light);
}
.v96e-section-title i { color: var(--v96e-accent); }
.v96e-section-title span.accent { color: var(--v96e-primary); }
.v96e-section-sub {
  color: var(--v96e-muted); font-size: 1.4rem; margin-bottom: 1.4rem;
}

/* ===================== Hero Carousel ===================== */
.v96e-carousel {
  position: relative;
  border-radius: var(--v96e-radius);
  overflow: hidden;
  box-shadow: var(--v96e-shadow);
  margin-bottom: 1rem;
}
.v96e-slides { position: relative; }
.v96e-slide {
  display: none;
  position: relative;
  cursor: pointer;
}
.v96e-slide-active { display: block; }
.v96e-slide img { width: 100%; height: 200px; object-fit: cover; }
.v96e-slide-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
}
.v96e-slide-cap h2 { font-size: 1.8rem; font-weight: 800; }
.v96e-slide-cap p { font-size: 1.3rem; color: var(--v96e-accent); }
.v96e-carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.45); color: #fff;
  border: none; width: 32px; height: 32px; border-radius: 50%;
  font-size: 1.6rem; cursor: pointer; z-index: 5;
  display: flex; align-items: center; justify-content: center;
}
.v96e-carousel-arrow:hover { background: var(--v96e-wine); }
.v96e-arrow-prev { left: 8px; }
.v96e-arrow-next { right: 8px; }
.v96e-dots {
  position: absolute; bottom: 8px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px; z-index: 5;
}
.v96e-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.5); cursor: pointer;
}
.v96e-dot-active { background: var(--v96e-accent); width: 22px; border-radius: 4px; }

/* ===================== Game grid ===================== */
.v96e-game-group { margin-bottom: 2rem; }
.v96e-game-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}
.v96e-game-head h2 {
  font-size: 1.7rem; font-weight: 800;
  display: flex; align-items: center; gap: 0.5rem;
}
.v96e-game-head h2 i { color: var(--v96e-primary); }
.v96e-game-head a { font-size: 1.3rem; font-weight: 600; }

.v96e-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.v96e-grid-4 { grid-template-columns: repeat(4, 1fr); }
.v96e-card {
  background: var(--v96e-card);
  border: 1px solid var(--v96e-border);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
}
.v96e-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 229, 255, 0.18);
  border-color: var(--v96e-accent);
}
.v96e-card img {
  width: 100%; height: 88px; object-fit: cover;
  background: #0f1822;
}
.v96e-card-name {
  font-size: 1.2rem; font-weight: 600;
  padding: 0.5rem 0.3rem;
  color: var(--v96e-light);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.v96e-card-hot {
  position: relative;
}
.v96e-card-hot::before {
  content: "HOT";
  position: absolute; top: 4px; left: 4px;
  background: var(--v96e-wine); color: #fff;
  font-size: 0.95rem; font-weight: 800;
  padding: 1px 6px; border-radius: 4px; z-index: 2;
}

/* ===================== Filter chips ===================== */
.v96e-chips {
  display: flex; gap: 0.6rem; overflow-x: auto;
  padding: 0.5rem 0 1rem; -webkit-overflow-scrolling: touch;
}
.v96e-chip {
  flex: 0 0 auto;
  background: var(--v96e-card);
  color: var(--v96e-light);
  border: 1px solid var(--v96e-border);
  padding: 0.5rem 1.1rem; border-radius: 999px;
  font-size: 1.3rem; font-weight: 600; cursor: pointer;
  white-space: nowrap;
}
.v96e-chip-active {
  background: linear-gradient(90deg, var(--v96e-accent), var(--v96e-primary));
  color: var(--v96e-deep); border-color: transparent;
}

/* ===================== Info / Feature blocks ===================== */
.v96e-card-info {
  background: var(--v96e-card);
  border: 1px solid var(--v96e-border);
  border-radius: var(--v96e-radius);
  padding: 1.4rem;
  margin-bottom: 1.2rem;
  box-shadow: var(--v96e-shadow);
}
.v96e-card-info h3 {
  font-size: 1.6rem; font-weight: 800;
  color: var(--v96e-accent); margin-bottom: 0.6rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.v96e-card-info p { color: var(--v96e-light); font-size: 1.35rem; line-height: 1.7rem; margin-bottom: 0.6rem; }
.v96e-card-info ul { list-style: none; padding-left: 0; }
.v96e-card-info li {
  padding: 0.4rem 0 0.4rem 1.8rem;
  position: relative; font-size: 1.35rem; color: var(--v96e-light);
}
.v96e-card-info li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  color: var(--v96e-primary);
  position: absolute; left: 0; top: 0.4rem;
}

.v96e-features {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem;
}
.v96e-feature {
  background: var(--v96e-card);
  border: 1px solid var(--v96e-border);
  border-radius: 12px; padding: 1.2rem;
  text-align: center;
}
.v96e-feature i { font-size: 2.4rem; color: var(--v96e-accent); margin-bottom: 0.6rem; }
.v96e-feature h4 { font-size: 1.35rem; font-weight: 700; margin-bottom: 0.3rem; }
.v96e-feature p { font-size: 1.2rem; color: var(--v96e-muted); line-height: 1.5rem; }

/* ===================== RTP stats ===================== */
.v96e-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem;
}
.v96e-stat {
  background: linear-gradient(135deg, var(--v96e-wine), #560a32);
  border-radius: 12px; padding: 1rem; text-align: center;
}
.v96e-stat .num { font-size: 2.2rem; font-weight: 800; color: #fff; }
.v96e-stat .lbl { font-size: 1.15rem; color: #f1c6da; }

/* ===================== Testimonials ===================== */
.v96e-testi {
  background: var(--v96e-card);
  border-left: 3px solid var(--v96e-primary);
  border-radius: 10px; padding: 1rem 1.2rem;
  margin-bottom: 0.9rem;
}
.v96e-testi p { font-size: 1.3rem; color: var(--v96e-light); font-style: italic; }
.v96e-testi .who { font-size: 1.2rem; color: var(--v96e-accent); margin-top: 0.4rem; font-weight: 700; }

/* ===================== Payment ===================== */
.v96e-pay {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
}
.v96e-pay span {
  background: var(--v96e-card); border: 1px solid var(--v96e-border);
  padding: 0.6rem 1rem; border-radius: 8px;
  font-size: 1.25rem; font-weight: 600; color: var(--v96e-light);
}

/* ===================== Winners ===================== */
.v96e-winner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem 1rem; background: var(--v96e-card);
  border-radius: 8px; margin-bottom: 0.5rem;
  border: 1px solid var(--v96e-border);
}
.v96e-winner .name { font-weight: 700; color: var(--v96e-light); font-size: 1.3rem; }
.v96e-winner .amt { color: var(--v96e-primary); font-weight: 800; font-size: 1.4rem; }

/* ===================== CTA ===================== */
.v96e-cta {
  background: linear-gradient(135deg, var(--v96e-wine), #4a0828);
  border-radius: var(--v96e-radius);
  padding: 1.8rem 1.4rem;
  text-align: center;
  margin: 1.6rem 0;
  box-shadow: var(--v96e-shadow);
}
.v96e-cta h3 { font-size: 1.9rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.v96e-cta p { color: #f6c9da; font-size: 1.35rem; margin-bottom: 1rem; }
.v96e-cta .v96e-btn { padding: 1rem 2.4rem; font-size: 1.5rem; background: linear-gradient(90deg, var(--v96e-accent), var(--v96e-primary)); color: var(--v96e-deep); }

/* ===================== App download ===================== */
.v96e-app {
  display: flex; align-items: center; gap: 1rem;
  background: var(--v96e-card); padding: 1.2rem;
  border-radius: var(--v96e-radius); border: 1px solid var(--v96e-border);
  margin-bottom: 1rem;
}
.v96e-app i { font-size: 3rem; color: var(--v96e-accent); }
.v96e-app h4 { font-size: 1.5rem; font-weight: 800; }
.v96e-app p { font-size: 1.25rem; color: var(--v96e-muted); }

/* ===================== FAQ ===================== */
.v96e-faq { margin-bottom: 0.8rem; }
.v96e-faq summary {
  background: var(--v96e-card); padding: 1rem 1.2rem;
  border-radius: 10px; cursor: pointer;
  font-weight: 700; font-size: 1.4rem;
  border: 1px solid var(--v96e-border);
  list-style: none;
}
.v96e-faq summary::-webkit-details-marker { display: none; }
.v96e-faq[open] summary { color: var(--v96e-accent); }
.v96e-faq-body {
  padding: 1rem 1.2rem; color: var(--v96e-light); font-size: 1.3rem;
  line-height: 1.7rem;
}

/* ===================== SEO long text ===================== */
.v96e-prose { color: var(--v96e-light); font-size: 1.4rem; line-height: 1.8rem; }
.v96e-prose h2 { font-size: 1.8rem; font-weight: 800; margin: 1.4rem 0 0.6rem; color: var(--v96e-accent); }
.v96e-prose h3 { font-size: 1.55rem; font-weight: 700; margin: 1.1rem 0 0.5rem; color: var(--v96e-primary); }
.v96e-prose p { margin-bottom: 0.8rem; }
.v96e-prose a { color: var(--v96e-accent); font-weight: 600; text-decoration: underline; }
.v96e-prose strong { color: #fff; }
.v96e-prose ul { padding-left: 1.6rem; margin-bottom: 0.8rem; }
.v96e-prose li { margin-bottom: 0.3rem; }

/* ===================== Footer ===================== */
.v96e-footer {
  background: var(--v96e-deep-2);
  border-top: 1px solid var(--v96e-border);
  padding: 2rem 0 1rem;
  margin-top: 1.5rem;
}
.v96e-footer-brand { font-size: 1.5rem; font-weight: 800; color: var(--v96e-accent); margin-bottom: 0.5rem; }
.v96e-footer p { color: var(--v96e-muted); font-size: 1.25rem; line-height: 1.6rem; margin-bottom: 1rem; }
.v96e-footer-links {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.v96e-footer-links a { color: var(--v96e-light); font-size: 1.25rem; }
.v96e-footer-links a:hover { color: var(--v96e-accent); }
.v96e-footer-promos {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem;
}
.v96e-footer-promos button {
  background: linear-gradient(90deg, var(--v96e-wine), #b3125f);
  border: none; color: #fff; font-weight: 700;
  padding: 0.6rem 1rem; border-radius: 999px;
  font-size: 1.2rem; cursor: pointer;
}
.v96e-footer-promos button:hover { filter: brightness(1.1); }
.v96e-copy { text-align: center; color: var(--v96e-muted); font-size: 1.15rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.05); }

/* ===================== Mobile bottom nav ===================== */
.v96e-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: var(--v96e-bottom-h);
  background: linear-gradient(180deg, var(--v96e-deep), var(--v96e-deep-2));
  border-top: 1px solid var(--v96e-border);
  display: flex; justify-content: space-around; align-items: stretch;
  z-index: 1000;
  box-shadow: 0 -4px 14px rgba(0,0,0,0.4);
}
.v96e-bottom-nav a,
.v96e-bottom-nav button {
  flex: 1; min-width: 60px;
  background: none; border: none;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; color: var(--v96e-muted);
  font-size: 1.05rem; font-weight: 600;
  cursor: pointer; padding: 6px 2px;
  transition: color 0.15s ease, transform 0.15s ease;
  text-decoration: none;
}
.v96e-bottom-nav a:active,
.v96e-bottom-nav button:active { transform: scale(0.92); }
.v96e-bottom-nav .material-icons-outlined,
.v96e-bottom-nav .material-icons { font-size: 24px; }
.v96e-bottom-nav i { font-size: 24px; }
.v96e-bottom-nav a:hover,
.v96e-bottom-nav button:hover { color: var(--v96e-accent); }
.v96e-bottom-nav .v96e-nav-current { color: var(--v96e-primary); }
.v96e-bottom-nav .v96e-badge {
  position: absolute; top: 6px; right: 22%;
  background: var(--v96e-wine); color: #fff;
  font-size: 0.9rem; font-weight: 700;
  border-radius: 999px; padding: 0 5px; min-width: 16px; height: 16px;
  line-height: 16px; text-align: center;
}
.v96e-nav-item { position: relative; }

@media (min-width: 769px) {
  .v96e-bottom-nav { display: none; }
  .v96e-container, .v96e-wrapper, .v96e-header-inner { max-width: 760px; }
}

/* ===================== Back to top ===================== */
.v96e-to-top {
  position: fixed; right: 14px; bottom: calc(var(--v96e-bottom-h) + 14px);
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--v96e-wine), #b3125f);
  color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; z-index: 900;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease;
  box-shadow: var(--v96e-shadow);
}
.v96e-to-top-show { opacity: 1; visibility: visible; }
@media (min-width: 769px) {
  .v96e-to-top { bottom: 24px; }
}

/* ===================== Tags row ===================== */
.v96e-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.8rem; }
.v96e-tags span {
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid var(--v96e-border);
  color: var(--v96e-accent);
  font-size: 1.15rem; font-weight: 600;
  padding: 0.3rem 0.8rem; border-radius: 6px;
}

/* ===================== Steps ===================== */
.v96e-steps { counter-reset: step; }
.v96e-step {
  position: relative; padding: 0.8rem 0.8rem 0.8rem 3.4rem;
  background: var(--v96e-card); border-radius: 10px;
  margin-bottom: 0.7rem; border: 1px solid var(--v96e-border);
}
.v96e-step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0.8rem; top: 50%; transform: translateY(-50%);
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--v96e-accent), var(--v96e-primary));
  color: var(--v96e-deep); font-weight: 800; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
}
.v96e-step h4 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.2rem; }
.v96e-step p { font-size: 1.25rem; color: var(--v96e-muted); }

/* ===================== Inline link ===================== */
.v96e-link-inline {
  color: var(--v96e-accent); font-weight: 700; cursor: pointer;
  text-decoration: underline;
}
.v96e-link-inline:hover { color: var(--v96e-primary); }

.v96e-text-center { text-align: center; }
.v96e-mt-1 { margin-top: 0.8rem; }
.v96e-mt-2 { margin-top: 1.6rem; }
.v96e-hide-mobile { display: none; }
@media (min-width: 769px) {
  .v96e-hide-mobile { display: block; }
}
