/* okada.sbs - Global Stylesheet */
/* All custom classes use s1b6- prefix */

:root {
  --s1b6-primary: #1B263B;
  --s1b6-bg: #1B263B;
  --s1b6-text: #C9C9FF;
  --s1b6-accent: #FFA500;
  --s1b6-accent-2: #ff7a00;
  --s1b6-light: #ffffff;
  --s1b6-muted: #8a90a8;
  --s1b6-card: #23304a;
  --s1b6-card-2: #2a3a5c;
  --s1b6-border: #36446b;
  --s1b6-danger: #e74c3c;
  --s1b6-success: #2ecc71;
}

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

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

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--s1b6-bg);
  color: var(--s1b6-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--s1b6-accent); text-decoration: none; }
a:hover { color: var(--s1b6-light); }

.s1b6-container { width: 100%; padding: 0 1.2rem; }

.s1b6-wrapper { max-width: 430px; margin: 0 auto; position: relative; }

/* Header */
.s1b6-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  max-width: 430px;
  margin: 0 auto;
  background: linear-gradient(180deg, #131c2e 0%, #1B263B 100%);
  border-bottom: 1px solid var(--s1b6-border);
  z-index: 1000;
  padding: 0.6rem 1rem;
}
.s1b6-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}
.s1b6-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.s1b6-logo img { width: 28px; height: 28px; border-radius: 6px; }
.s1b6-logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--s1b6-light);
}
.s1b6-logo-text span { color: var(--s1b6-accent); }

.s1b6-header-actions { display: flex; align-items: center; gap: 0.4rem; }
.s1b6-btn {
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 2rem;
  padding: 0.55rem 1.1rem;
  min-height: 36px;
  transition: transform 0.15s ease, background 0.2s ease;
}
.s1b6-btn:active { transform: scale(0.96); }
.s1b6-btn-login {
  background: transparent;
  color: var(--s1b6-text);
  border: 1px solid var(--s1b6-border);
}
.s1b6-btn-register {
  background: linear-gradient(90deg, var(--s1b6-accent), var(--s1b6-accent-2));
  color: #1B263B;
  box-shadow: 0 2px 6px rgba(255,165,0,0.35);
}
.s1b6-menu-btn {
  background: transparent;
  border: 1px solid var(--s1b6-border);
  color: var(--s1b6-text);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Mobile menu */
.s1b6-mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 75%;
  max-width: 320px;
  height: 100vh;
  background: #16203a;
  border-left: 1px solid var(--s1b6-border);
  padding: 6rem 1.2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 9999;
  overflow-y: auto;
}
.s1b6-menu-open { transform: translateX(0); }
.s1b6-mobile-menu a {
  display: block;
  padding: 0.9rem 0.8rem;
  border-bottom: 1px solid var(--s1b6-border);
  color: var(--s1b6-text);
  font-size: 1.35rem;
  font-weight: 600;
}
.s1b6-mobile-menu a:hover { background: rgba(255,165,0,0.1); color: var(--s1b6-accent); }
.s1b6-menu-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: transparent;
  border: none;
  color: var(--s1b6-text);
  font-size: 2rem;
  cursor: pointer;
}

/* Main content */
main { padding-top: 5.4rem; }
@media (max-width: 768px) {
  main { padding-bottom: 80px; }
}

/* Carousel */
.s1b6-carousel {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  margin: 1rem 0;
}
.s1b6-slide {
  display: none;
  width: 100%;
  position: relative;
}
.s1b6-slide img { width: 100%; height: 170px; object-fit: cover; }
.s1b6-slide-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.8rem 1rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}
.s1b6-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(27,38,59,0.6);
  color: var(--s1b6-light);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 2;
}
.s1b6-carousel-arrow.prev { left: 5px; }
.s1b6-carousel-arrow.next { right: 5px; }
.s1b6-dots {
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  text-align: center;
  z-index: 2;
}
.s1b6-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(201,201,255,0.4);
  margin: 0 3px;
  cursor: pointer;
}
.s1b6-dot-active { background: var(--s1b6-accent); width: 20px; border-radius: 4px; }

/* Sections */
.s1b6-section {
  padding: 1.4rem 1.2rem;
  margin: 0;
}
.s1b6-section-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--s1b6-light);
  margin-bottom: 0.4rem;
  position: relative;
  padding-left: 1rem;
}
.s1b6-section-title::before {
  content: "";
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 4px;
  background: var(--s1b6-accent);
  border-radius: 2px;
}
.s1b6-section-sub {
  color: var(--s1b6-muted);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Promo CTA banner */
.s1b6-cta {
  background: linear-gradient(135deg, #3a2a10 0%, #1B263B 100%);
  border: 1px solid var(--s1b6-accent);
  border-radius: 1rem;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem;
}
.s1b6-cta-text { color: var(--s1b6-light); font-weight: 700; font-size: 1.35rem; }
.s1b6-cta-text small { color: var(--s1b6-muted); font-weight: 400; display: block; font-size: 1.1rem; }
.s1b6-cta-btn {
  background: var(--s1b6-accent);
  color: #1B263B;
  padding: 0.7rem 1.2rem;
  border-radius: 2rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
}

/* Game grid */
.s1b6-game-cat {
  margin: 0.6rem 0 0.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.s1b6-game-cat h3 {
  font-size: 1.4rem;
  color: var(--s1b6-accent);
  font-weight: 800;
}
.s1b6-game-cat span { font-size: 1.1rem; color: var(--s1b6-muted); }
.s1b6-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin: 0.6rem 0;
}
.s1b6-game-card {
  background: var(--s1b6-card);
  border-radius: 0.8rem;
  padding: 0.4rem;
  text-align: center;
  border: 1px solid var(--s1b6-border);
  transition: transform 0.15s, border-color 0.2s;
  cursor: pointer;
  overflow: hidden;
}
.s1b6-game-card:active { transform: scale(0.95); border-color: var(--s1b6-accent); }
.s1b6-game-card img {
  width: 100%;
  height: 64px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 0.3rem;
}
.s1b6-game-name {
  font-size: 1rem;
  color: var(--s1b6-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2rem;
}

/* Feature/Info cards */
.s1b6-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin: 0.6rem 0;
}
.s1b6-info-card {
  background: var(--s1b6-card);
  border: 1px solid var(--s1b6-border);
  border-radius: 0.8rem;
  padding: 0.9rem;
}
.s1b6-info-card i { font-size: 2.2rem; color: var(--s1b6-accent); margin-bottom: 0.4rem; }
.s1b6-info-card h3 { font-size: 1.25rem; color: var(--s1b6-light); margin-bottom: 0.3rem; }
.s1b6-info-card p { font-size: 1.15rem; color: var(--s1b6-muted); line-height: 1.4rem; }

/* RTP table */
.s1b6-rtp-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.6rem 0;
  background: var(--s1b6-card);
  border-radius: 0.6rem;
  overflow: hidden;
}
.s1b6-rtp-table th, .s1b6-rtp-table td {
  padding: 0.6rem 0.7rem;
  text-align: left;
  font-size: 1.15rem;
  border-bottom: 1px solid var(--s1b6-border);
}
.s1b6-rtp-table th { background: #2a3a5c; color: var(--s1b6-light); font-weight: 700; }
.s1b6-rtp-table td { color: var(--s1b6-text); }
.s1b6-rtp-high { color: var(--s1b6-success); font-weight: 700; }

/* Testimonial */
.s1b6-testimonials { display: flex; flex-direction: column; gap: 0.7rem; }
.s1b6-testimonial {
  background: var(--s1b6-card);
  border-left: 3px solid var(--s1b6-accent);
  border-radius: 0.6rem;
  padding: 0.8rem;
}
.s1b6-testimonial p { font-size: 1.2rem; color: var(--s1b6-text); margin-bottom: 0.4rem; }
.s1b6-testimonial-name { font-size: 1.1rem; color: var(--s1b6-accent); font-weight: 700; }
.s1b6-stars { color: var(--s1b6-accent); font-size: 1.1rem; letter-spacing: 2px; }

/* Payment methods */
.s1b6-pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.s1b6-pay-item {
  background: var(--s1b6-card);
  border: 1px solid var(--s1b6-border);
  border-radius: 0.6rem;
  padding: 0.8rem 0.4rem;
  text-align: center;
  font-size: 1.05rem;
  color: var(--s1b6-text);
}
.s1b6-pay-item i { font-size: 1.8rem; color: var(--s1b6-accent); display: block; margin-bottom: 0.3rem; }

/* Winners */
.s1b6-winner-list { display: flex; flex-direction: column; gap: 0.5rem; }
.s1b6-winner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--s1b6-card);
  border: 1px solid var(--s1b6-border);
  border-radius: 0.6rem;
  padding: 0.6rem 0.8rem;
}
.s1b6-winner-name { font-size: 1.15rem; color: var(--s1b6-text); font-weight: 600; }
.s1b6-winner-amount { font-size: 1.2rem; color: var(--s1b6-accent); font-weight: 800; }

/* FAQ */
.s1b6-faq-item {
  background: var(--s1b6-card);
  border: 1px solid var(--s1b6-border);
  border-radius: 0.6rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.s1b6-faq-q {
  padding: 0.8rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--s1b6-light);
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
.s1b6-faq-a {
  padding: 0 0.8rem 0.8rem;
  font-size: 1.15rem;
  color: var(--s1b6-muted);
  display: block;
}

/* Play now */
.s1b6-playnow {
  background: linear-gradient(135deg, var(--s1b6-accent), var(--s1b6-accent-2));
  color: #1B263B;
  text-align: center;
  padding: 1.5rem 1.2rem;
  margin: 1rem;
  border-radius: 1rem;
}
.s1b6-playnow h2 { font-size: 1.8rem; margin-bottom: 0.4rem; }
.s1b6-playnow p { font-size: 1.2rem; margin-bottom: 0.8rem; }
.s1b6-playnow-btn {
  background: #1B263B;
  color: var(--s1b6-light);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 2rem;
  font-weight: 800;
  font-size: 1.3rem;
  cursor: pointer;
}

/* App download CTA */
.s1b6-app-cta {
  background: var(--s1b6-card);
  border: 1px solid var(--s1b6-border);
  border-radius: 1rem;
  padding: 1.2rem;
  margin: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.s1b6-app-cta img { width: 80px; height: 80px; border-radius: 1rem; object-fit: cover; flex-shrink: 0; }
.s1b6-app-cta-text h3 { color: var(--s1b6-light); font-size: 1.4rem; margin-bottom: 0.2rem; }
.s1b6-app-cta-text p { color: var(--s1b6-muted); font-size: 1.1rem; margin-bottom: 0.5rem; }
.s1b6-app-store { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.s1b6-app-store span {
  background: rgba(255,165,0,0.15);
  color: var(--s1b6-accent);
  padding: 0.3rem 0.7rem;
  border-radius: 1rem;
  font-size: 1.05rem;
  font-weight: 600;
}

/* Footer */
.s1b6-footer {
  background: #131c2e;
  border-top: 1px solid var(--s1b6-border);
  padding: 1.5rem 1.2rem 1.2rem;
  margin-top: 1rem;
}
.s1b6-footer-brand { color: var(--s1b6-light); font-weight: 800; font-size: 1.5rem; margin-bottom: 0.4rem; }
.s1b6-footer-brand span { color: var(--s1b6-accent); }
.s1b6-footer-desc { color: var(--s1b6-muted); font-size: 1.15rem; margin-bottom: 1rem; line-height: 1.6rem; }
.s1b6-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.s1b6-footer-links a {
  background: var(--s1b6-card);
  padding: 0.4rem 0.8rem;
  border-radius: 1rem;
  font-size: 1.1rem;
  color: var(--s1b6-text);
  border: 1px solid var(--s1b6-border);
}
.s1b6-footer-links a:hover { color: var(--s1b6-accent); }
.s1b6-footer-copy {
  color: var(--s1b6-muted);
  font-size: 1.05rem;
  text-align: center;
  border-top: 1px solid var(--s1b6-border);
  padding-top: 0.8rem;
}

/* Bottom navigation */
.s1b6-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  max-width: 430px;
  margin: 0 auto;
  height: 62px;
  background: linear-gradient(180deg, #1B263B 0%, #131c2e 100%);
  border-top: 1px solid var(--s1b6-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.4);
}
.s1b6-bottom-nav button {
  background: transparent;
  border: none;
  color: var(--s1b6-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  padding: 0.4rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s, transform 0.15s;
  position: relative;
}
.s1b6-bottom-nav button i, .s1b6-bottom-nav button .material-icons {
  font-size: 24px;
  margin-bottom: 2px;
}
.s1b6-bottom-nav button:hover, .s1b6-bottom-nav button.s1b6-nav-active {
  color: var(--s1b6-accent);
  transform: translateY(-2px);
}
.s1b6-bottom-nav button.s1b6-nav-active::after {
  content: "";
  position: absolute;
  bottom: 4px;
  width: 22px;
  height: 3px;
  background: var(--s1b6-accent);
  border-radius: 2px;
}
.s1b6-nav-badge {
  position: absolute;
  top: 4px; right: 10px;
  background: var(--s1b6-danger);
  color: #fff;
  font-size: 0.85rem;
  min-width: 14px;
  height: 14px;
  padding: 0 3px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

@media (min-width: 769px) {
  .s1b6-bottom-nav { display: none; }
}
@media (max-width: 360px) {
  .s1b6-game-grid { grid-template-columns: repeat(3, 1fr); }
  .s1b6-info-grid { grid-template-columns: 1fr; }
}

/* Utilities */
.s1b6-text-accent { color: var(--s1b6-accent); font-weight: 700; }
.s1b6-muted { color: var(--s1b6-muted); }
.s1b6-divider { height: 1px; background: var(--s1b6-border); margin: 1rem 0; border: none; }
.s1b6-prose { color: var(--s1b6-text); font-size: 1.2rem; line-height: 1.7rem; }
.s1b6-prose strong { color: var(--s1b6-accent); }
.s1b6-anchor-link {
  display: inline-block;
  margin: 0.3rem 0.6rem 0.3rem 0;
  color: var(--s1b6-accent);
  font-weight: 600;
  font-size: 1.15rem;
  text-decoration: underline;
}

/* Help page additions */
.s1b6-help-hero { padding-top: 1.4rem; }
.s1b6-help-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border: 1px solid var(--s1b6-border);
  border-radius: 1rem;
  margin-bottom: 1rem;
}
.s1b6-help-kicker {
  color: var(--s1b6-accent);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.14rem;
  margin-bottom: 0.4rem;
}
.s1b6-help-spaced { margin-top: 0.8rem; }
.s1b6-help-steps, .s1b6-help-list {
  margin: 0.8rem 0 0.4rem 1.8rem;
  color: var(--s1b6-text);
  font-size: 1.2rem;
  line-height: 1.8rem;
}
.s1b6-help-steps li, .s1b6-help-list li { margin-bottom: 0.6rem; padding-left: 0.2rem; }
.s1b6-help-steps strong { color: var(--s1b6-light); }
.s1b6-help-note {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  background: rgba(255,165,0,0.1);
  border: 1px solid rgba(255,165,0,0.45);
  border-radius: 0.8rem;
  padding: 0.9rem;
  margin: 0.8rem 0;
}
.s1b6-help-note i { color: var(--s1b6-accent); font-size: 1.8rem; margin-top: 0.1rem; }
.s1b6-help-note p { color: var(--s1b6-text); font-size: 1.15rem; line-height: 1.6rem; }