/**
 * super ph apk - theme.css
 * Mobile-first gaming website styles using s203- prefix.
 * Color palette: deep blue #0000CD, charcoal #333333, light blue #ADD8E6.
 * Root font-size is 62.5% so 1rem = 10px.
 */

:root {
  --s203-primary: #0000CD; --s203-primary-dark: #000080; --s203-primary-light: #2940e0;
  --s203-bg: #0b0b2e; --s203-bg-alt: #13135a; --s203-charcoal: #333333;
  --s203-light: #ADD8E6; --s203-light-soft: #d6ecf5;
  --s203-text: #f4f7ff; --s203-text-muted: #b6c0e0;
  --s203-gold: #ffc94d; --s203-success: #2ecc71; --s203-danger: #ff5a6e;
  --s203-radius: 1.2rem; --s203-radius-sm: 0.8rem;
  --s203-shadow: 0 1rem 2.4rem rgba(0, 0, 60, 0.45);
  --s203-shadow-glow: 0 0 1.6rem rgba(0, 0, 205, 0.55);
  --s203-gradient: linear-gradient(135deg, #0000CD 0%, #1d2ee0 60%, #2940e0 100%);
  --s203-gradient-dark: linear-gradient(160deg, #06061f 0%, #11124a 55%, #1c1c70 100%);
  --s203-transition: 0.25s ease;
}

/* Base reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: "Segoe UI", "Helvetica Neue", Roboto, system-ui, -apple-system, sans-serif;
  background: var(--s203-gradient-dark);
  color: var(--s203-text); line-height: 1.5rem; font-size: 1.5rem;
  min-height: 100vh; overflow-x: hidden;
}
a { color: var(--s203-light); text-decoration: none; transition: color var(--s203-transition); }
a:hover { color: var(--s203-gold); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* Layout helpers */
.s203-wrapper { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.s203-container { width: 100%; padding-bottom: 2rem; }
.s203-center { text-align: center; }
.s203-mt-1 { margin-top: 0.6rem; } .s203-mt-2 { margin-top: 1.2rem; }
.s203-mb-1 { margin-bottom: 0.6rem; } .s203-hidden { display: none !important; }
.s203-hero-spacer { height: 5.6rem; }

/* Header */
.s203-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(135deg, rgba(0, 0, 90, 0.96), rgba(0, 0, 205, 0.94));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(173, 216, 230, 0.15);
  transition: background var(--s203-transition), box-shadow var(--s203-transition);
}
.s203-header--scrolled {
  background: linear-gradient(135deg, rgba(0, 0, 50, 0.98), rgba(0, 0, 150, 0.98));
  box-shadow: 0 0.4rem 1.4rem rgba(0, 0, 0, 0.45);
}
.s203-header__inner {
  max-width: 430px; margin: 0 auto; padding: 0.8rem 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 0.6rem;
}
.s203-logo { display: flex; align-items: center; gap: 0.6rem; flex: 1; min-width: 0; }
.s203-logo__img { width: 2.8rem; height: 2.8rem; border-radius: 0.6rem; background: var(--s203-light); padding: 0.2rem; }
.s203-logo__text { font-size: 1.55rem; font-weight: 700; color: var(--s203-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.s203-logo__text span { color: var(--s203-gold); }
.s203-header__actions { display: flex; align-items: center; gap: 0.5rem; }

/* Buttons */
.s203-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  border: none; border-radius: 999px; font-weight: 700; font-size: 1.25rem;
  padding: 0.7rem 1.2rem; cursor: pointer; text-decoration: none;
  min-height: 3.6rem; line-height: 1;
  transition: transform var(--s203-transition), box-shadow var(--s203-transition), background var(--s203-transition);
}
.s203-btn--primary { background: linear-gradient(135deg, #ffc94d, #ff8e3c); color: #3b1d00; box-shadow: 0 0.4rem 1.2rem rgba(255, 200, 77, 0.35); }
.s203-btn--primary:hover { transform: translateY(-2px); color: #3b1d00; }
.s203-btn--secondary { background: linear-gradient(135deg, var(--s203-light), #7fb6e8); color: #082b4a; box-shadow: 0 0.4rem 1.2rem rgba(173, 216, 230, 0.35); }
.s203-btn--secondary:hover { transform: translateY(-2px); color: #082b4a; }
.s203-btn--ghost { background: rgba(173, 216, 230, 0.1); color: var(--s203-light); border: 1px solid rgba(173, 216, 230, 0.45); }
.s203-btn--ghost:hover { background: rgba(173, 216, 230, 0.2); }
.s203-btn--block { width: 100%; }

/* Mobile menu toggle */
.s203-menu-toggle { background: transparent; border: 0; color: var(--s203-light); font-size: 2rem; width: 3.6rem; height: 3.6rem; border-radius: 0.8rem; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
.s203-menu-toggle:hover { background: rgba(255, 255, 255, 0.08); }

/* Mobile menu */
.s203-mobile-menu {
  position: fixed; top: 0; left: 0; right: 0;
  background: var(--s203-gradient-dark);
  padding: 6rem 1.2rem 2rem; z-index: 9999;
  transform: translateY(-100%); transition: transform 0.35s ease;
  border-bottom: 1px solid rgba(173, 216, 230, 0.2);
  max-height: 100vh; overflow-y: auto;
}
.s203-mobile-menu--open { transform: translateY(0); }
.s203-mobile-menu__close { position: absolute; top: 1rem; right: 1rem; background: rgba(255, 255, 255, 0.08); color: var(--s203-light); border: 0; width: 3.2rem; height: 3.2rem; border-radius: 50%; font-size: 1.8rem; cursor: pointer; }
.s203-mobile-menu__title { font-size: 1.6rem; color: var(--s203-gold); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.1rem; }
.s203-mobile-menu ul { display: grid; gap: 0.5rem; }
.s203-mobile-menu a { display: flex; align-items: center; gap: 0.8rem; padding: 1rem 1.2rem; background: rgba(173, 216, 230, 0.06); border-radius: 0.8rem; color: var(--s203-text); font-size: 1.4rem; border: 1px solid rgba(173, 216, 230, 0.1); }
.s203-mobile-menu a:hover { background: rgba(173, 216, 230, 0.18); }
.s203-mobile-menu a i { color: var(--s203-gold); font-size: 1.5rem; }

/* Carousel */
.s203-carousel { position: relative; overflow: hidden; border-radius: var(--s203-radius); margin: 1rem 0; box-shadow: var(--s203-shadow); }
.s203-carousel-slide { position: relative; display: none; cursor: pointer; }
.s203-carousel-slide--active { display: block; }
.s203-carousel-slide img { width: 100%; height: 18rem; object-fit: cover; border-radius: var(--s203-radius); }
.s203-carousel-caption { position: absolute; left: 1rem; bottom: 1rem; right: 1rem; background: linear-gradient(transparent, rgba(0, 0, 0, 0.85)); color: #fff; padding: 2rem 1rem 0.8rem; border-radius: 0 0 var(--s203-radius) var(--s203-radius); font-size: 1.35rem; font-weight: 600; }
.s203-carousel-dots { position: absolute; bottom: 0.6rem; left: 0; right: 0; display: flex; justify-content: center; gap: 0.4rem; z-index: 2; }
.s203-carousel-dot { width: 0.8rem; height: 0.8rem; background: rgba(255,255,255,0.4); border: 0; border-radius: 50%; cursor: pointer; }
.s203-carousel-dot--active { background: var(--s203-gold); }

/* Sections */
.s203-section { margin: 2.2rem 0; }
.s203-section__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.s203-section__title { font-size: 1.8rem; color: var(--s203-text); font-weight: 700; display: flex; align-items: center; gap: 0.6rem; }
.s203-section__title i { color: var(--s203-gold); }
.s203-section__more { color: var(--s203-light); font-size: 1.2rem; }

/* Promo text link */
.s203-promo-link { color: var(--s203-gold); font-weight: 700; cursor: pointer; }
.s203-promo-link:hover { text-decoration: underline; color: var(--s203-light); }

/* Game grid */
.s203-game-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
.s203-game-card { background: linear-gradient(180deg, rgba(173,216,230,0.1), rgba(0,0,205,0.18)); border: 1px solid rgba(173,216,230,0.16); border-radius: var(--s203-radius-sm); padding: 0.6rem; text-align: center; cursor: pointer; transition: transform var(--s203-transition), box-shadow var(--s203-transition); }
.s203-game-card:hover { transform: translateY(-3px); box-shadow: var(--s203-shadow-glow); }
.s203-game-card__img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 0.6rem; background: #050816; }
.s203-game-card__name { display: block; margin-top: 0.4rem; font-size: 1.1rem; color: var(--s203-text); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Feature cards */
.s203-cards { display: grid; gap: 0.8rem; }
.s203-card { background: linear-gradient(135deg, rgba(0,0,205,0.25), rgba(173,216,230,0.08)); border: 1px solid rgba(173,216,230,0.2); border-radius: var(--s203-radius); padding: 1.2rem; }
.s203-card__title { font-size: 1.5rem; font-weight: 700; color: var(--s203-gold); margin-bottom: 0.4rem; display: flex; align-items: center; gap: 0.5rem; }
.s203-card__text { font-size: 1.3rem; color: var(--s203-text); line-height: 1.7rem; }
.s203-card--alt { background: linear-gradient(135deg, rgba(51,51,51,0.6), rgba(0,0,205,0.18)); }

.s203-step-list { counter-reset: step; display: grid; gap: 0.6rem; }
.s203-step-list li { position: relative; padding-left: 3rem; font-size: 1.3rem; color: var(--s203-text); }
.s203-step-list li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: 0; width: 2.2rem; height: 2.2rem; border-radius: 50%; background: var(--s203-gradient); color: #fff; text-align: center; line-height: 2.2rem; font-weight: 700; font-size: 1.2rem; }

/* FAQ */
.s203-faq { display: grid; gap: 0.6rem; }
.s203-faq__item { background: rgba(173,216,230,0.06); border-radius: var(--s203-radius-sm); border: 1px solid rgba(173,216,230,0.18); padding: 0.8rem 1rem; }
.s203-faq__q { font-weight: 700; color: var(--s203-gold); font-size: 1.3rem; }
.s203-faq__a { color: var(--s203-text); font-size: 1.25rem; margin-top: 0.3rem; }

/* Winners */
.s203-winners { display: grid; gap: 0.5rem; }
.s203-winner { display: flex; align-items: center; justify-content: space-between; background: linear-gradient(90deg, rgba(255,201,77,0.12), rgba(173,216,230,0.06)); border: 1px solid rgba(255,201,77,0.25); border-radius: 1rem; padding: 0.6rem 0.9rem; font-size: 1.2rem; }
.s203-winner__name { color: var(--s203-light); font-weight: 600; }
.s203-winner__amount { color: var(--s203-gold); font-weight: 700; }

/* Payment grid */
.s203-payment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.s203-payment { background: rgba(255,255,255,0.06); border-radius: 0.6rem; padding: 0.6rem; text-align: center; font-size: 1.1rem; color: var(--s203-light); border: 1px solid rgba(173,216,230,0.15); }
.s203-payment i { font-size: 1.6rem; color: var(--s203-gold); display: block; margin-bottom: 0.2rem; }

/* Achievements / stats */
.s203-stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
.s203-stat { background: linear-gradient(135deg, rgba(0,0,205,0.3), rgba(173,216,230,0.08)); border-radius: 0.8rem; padding: 0.9rem; text-align: center; border: 1px solid rgba(173,216,230,0.2); }
.s203-stat__num { font-size: 1.8rem; font-weight: 800; color: var(--s203-gold); }
.s203-stat__label { font-size: 1.1rem; color: var(--s203-text-muted); }

/* CTA block */
.s203-cta { background: linear-gradient(135deg, #ff8e3c, #ffc94d); border-radius: var(--s203-radius); padding: 1.4rem; text-align: center; color: #3b1d00; margin: 1.5rem 0; box-shadow: 0 1rem 2rem rgba(255, 142, 60, 0.3); }
.s203-cta h3 { font-size: 1.6rem; margin-bottom: 0.4rem; }
.s203-cta p { font-size: 1.3rem; margin-bottom: 0.8rem; color: #4a2a00; }

/* Footer */
.s203-footer { background: linear-gradient(180deg, #06061f, #020210); border-top: 1px solid rgba(173,216,230,0.18); padding: 2rem 1.2rem 9rem; margin-top: 2rem; color: var(--s203-text-muted); }
.s203-footer__brand { color: var(--s203-text); font-size: 1.3rem; margin-bottom: 0.6rem; line-height: 1.7rem; }
.s203-footer__brand strong { color: var(--s203-gold); }
.s203-footer__links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; margin: 1rem 0; }
.s203-footer__links a { font-size: 1.2rem; color: var(--s203-light); }
.s203-footer__promo-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; margin: 1rem 0; }
.s203-footer__copy { border-top: 1px solid rgba(173,216,230,0.15); padding-top: 0.8rem; font-size: 1.1rem; color: var(--s203-text-muted); }

/* Bottom nav */
.s203-bottom-nav { position: fixed; bottom: 0; left: 0; right: 0; background: linear-gradient(180deg, rgba(0,0,40,0.95), rgba(0,0,15,0.98)); border-top: 1px solid rgba(173,216,230,0.25); height: 6.2rem; display: flex; justify-content: space-around; align-items: center; z-index: 1000; padding-bottom: env(safe-area-inset-bottom); }
.s203-bottom-nav__btn { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 6rem; min-height: 6rem; color: var(--s203-text-muted); background: transparent; border: 0; font-size: 1.05rem; text-decoration: none; cursor: pointer; transition: color var(--s203-transition), transform var(--s203-transition); position: relative; }
.s203-bottom-nav__btn:active { transform: scale(0.94); }
.s203-bottom-nav__btn i, .s203-bottom-nav__btn .material-icons-outlined, .s203-bottom-nav__btn ion-icon { font-size: 2.2rem; margin-bottom: 0.2rem; transition: color var(--s203-transition); }
.s203-bottom-nav__btn ion-icon { display: block; width: 2.2rem; height: 2.2rem; }
.s203-bottom-nav__btn--active, .s203-bottom-nav__btn:hover { color: var(--s203-gold); }
.s203-bottom-nav__btn--promo { color: var(--s203-gold); }
.s203-bottom-nav__badge { position: absolute; top: 0.6rem; right: 1.2rem; background: var(--s203-danger); color: #fff; font-size: 0.9rem; border-radius: 999px; padding: 0 0.4rem; min-width: 1.4rem; height: 1.4rem; line-height: 1.4rem; text-align: center; }

/* Responsive */
@media (min-width: 769px) {
  .s203-bottom-nav { display: none; }
  body { background: #06061f; }
  .s203-wrapper { max-width: 760px; padding: 0 2rem; }
  .s203-header__inner { max-width: 760px; }
  .s203-carousel-slide img { height: 28rem; }
  .s203-game-grid { grid-template-columns: repeat(6, 1fr); }
  .s203-footer__links, .s203-footer__promo-row { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .s203-wrapper { max-width: 1000px; }
  .s203-header__inner { max-width: 1000px; }
  .s203-game-grid { grid-template-columns: repeat(8, 1fr); }
}
@media (max-width: 768px) {
  main, .s203-main { padding-bottom: 8rem; }
  .s203-header__inner { gap: 0.4rem; }
  .s203-btn { padding: 0.55rem 0.9rem; font-size: 1.15rem; }
  .s203-logo__text { font-size: 1.35rem; }
}
@media (max-width: 360px) {
  .s203-game-grid { grid-template-columns: repeat(2, 1fr); }
  .s203-payment-grid { grid-template-columns: repeat(2, 1fr); }
}
