/* ju88n mobile-first design system */
:root {
  font-size: 62.5%;
  --s6a5-primary: #A0522D;
  --s6a5-bg: #141414;
  --s6a5-panel: #211711;
  --s6a5-panel-soft: #2c1f17;
  --s6a5-text: #FAF0E6;
  --s6a5-white: #FFFFFF;
  --s6a5-muted: #DEB887;
  --s6a5-accent: #FFB74D;
  --s6a5-shadow: rgba(0, 0, 0, .38);
  --s6a5-radius: 1.8rem;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at top left, rgba(160,82,45,.24), transparent 30rem), var(--s6a5-bg);
  color: var(--s6a5-text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 1.55rem;
  line-height: 1.5rem;
  overflow-x: hidden;
}
a { color: var(--s6a5-accent); text-decoration: none; }
a:hover { color: var(--s6a5-white); }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }
.s6a5-page {
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(20,20,20,.94), rgba(33,23,17,.98));
  box-shadow: 0 0 4rem var(--s6a5-shadow);
}
.s6a5-container { width: min(100% - 2.4rem, 40.6rem); margin: 0 auto; }
.s6a5-wrapper { padding: 1.4rem 0; }
.s6a5-grid { display: grid; gap: 1rem; }
.s6a5-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 430px);
  z-index: 1000;
  background: rgba(20, 20, 20, .94);
  backdrop-filter: blur(16px);
  border-bottom: .1rem solid rgba(222,184,135,.22);
}
.s6a5-topbar { min-height: 6.4rem; display: flex; align-items: center; gap: .8rem; padding: .8rem 1.2rem; }
.s6a5-brand { display: flex; align-items: center; gap: .8rem; color: var(--s6a5-white); font-weight: 900; letter-spacing: .04em; }
.s6a5-logo { width: 3.2rem; height: 3.2rem; border-radius: 50%; border: .2rem solid var(--s6a5-accent); }
.s6a5-brand-text { font-size: 1.9rem; text-transform: uppercase; }
.s6a5-header-actions { margin-left: auto; display: flex; align-items: center; gap: .6rem; }
.s6a5-btn {
  min-height: 4.4rem;
  border: 0;
  border-radius: 999px;
  padding: 1rem 1.35rem;
  background: linear-gradient(135deg, var(--s6a5-accent), var(--s6a5-primary));
  color: #180d07;
  font-weight: 900;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 .8rem 1.8rem rgba(255,183,77,.18);
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.s6a5-btn:hover, .s6a5-btn:focus { transform: translateY(-.1rem) scale(1.02); filter: brightness(1.06); }
.s6a5-btn-secondary { background: transparent; color: var(--s6a5-accent); border: .1rem solid rgba(255,183,77,.55); box-shadow: none; }
.s6a5-menu-btn { width: 4.4rem; height: 4.4rem; padding: 0; display: grid; place-items: center; font-size: 2.2rem; }
.s6a5-mobile-menu {
  position: fixed;
  top: 6.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(-120%);
  width: min(100%, 430px);
  z-index: 9999;
  padding: 1rem 1.2rem 1.4rem;
  background: rgba(33,23,17,.98);
  border-bottom: .1rem solid rgba(255,183,77,.26);
  opacity: 0;
  pointer-events: none;
  transition: transform .25s ease, opacity .25s ease;
}
.s6a5-mobile-menu.s6a5-menu-open { transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: auto; }
.s6a5-menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.s6a5-menu-link { min-height: 4.4rem; display: flex; align-items: center; gap: .6rem; padding: .9rem 1rem; border-radius: 1.2rem; background: rgba(250,240,230,.06); color: var(--s6a5-text); font-weight: 800; }
.s6a5-desktop-nav { display: none; }
main.s6a5-main { padding-top: 7.4rem; }
.s6a5-hero { padding: 1.2rem 0 1rem; }
.s6a5-kicker { color: var(--s6a5-accent); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: 1.15rem; }
.s6a5-title { font-size: 3rem; line-height: 3.5rem; margin: .7rem 0; color: var(--s6a5-white); letter-spacing: -.04em; }
.s6a5-subtitle { color: var(--s6a5-muted); line-height: 2.35rem; margin: 0 0 1.2rem; }
.s6a5-cta-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.s6a5-text-link { font-weight: 900; color: var(--s6a5-accent); text-decoration: underline; text-decoration-thickness: .15rem; }
.s6a5-card {
  background: linear-gradient(160deg, rgba(250,240,230,.08), rgba(160,82,45,.12));
  border: .1rem solid rgba(222,184,135,.18);
  border-radius: var(--s6a5-radius);
  padding: 1.4rem;
  box-shadow: 0 1.6rem 3rem rgba(0,0,0,.18);
}
.s6a5-section { padding: 1.3rem 0; }
.s6a5-section h2 { margin: 0 0 1rem; color: var(--s6a5-white); font-size: 2.2rem; line-height: 2.7rem; }
.s6a5-section h3 { margin: 1rem 0 .6rem; color: var(--s6a5-accent); font-size: 1.7rem; line-height: 2.2rem; }
.s6a5-section p { line-height: 2.35rem; color: var(--s6a5-text); margin: .7rem 0; }
.s6a5-list { display: grid; gap: .8rem; padding: 0; margin: 1rem 0; list-style: none; }
.s6a5-list li { padding: 1rem; border-radius: 1.2rem; background: rgba(255,183,77,.08); line-height: 2.2rem; }
.s6a5-carousel { position: relative; overflow: hidden; border-radius: 2rem; min-height: 16rem; border: .1rem solid rgba(255,183,77,.24); }
.s6a5-slide { display: none; position: relative; cursor: pointer; }
.s6a5-slide.s6a5-slide-active { display: block; animation: s6a5Fade .45s ease both; }
.s6a5-slide img { width: 100%; height: 17.2rem; object-fit: cover; }
.s6a5-slide-caption { position: absolute; left: 1.2rem; right: 1.2rem; bottom: 1rem; padding: .9rem; border-radius: 1.2rem; background: rgba(20,20,20,.72); color: var(--s6a5-white); font-weight: 900; }
.s6a5-dots { display: flex; justify-content: center; gap: .6rem; margin-top: .8rem; }
.s6a5-dot { width: 1rem; height: 1rem; border-radius: 50%; border: 0; background: rgba(222,184,135,.45); cursor: pointer; }
.s6a5-dot.s6a5-dot-active { background: var(--s6a5-accent); transform: scale(1.2); }
.s6a5-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.s6a5-stat { text-align: center; padding: 1rem .5rem; border-radius: 1.4rem; background: rgba(20,20,20,.45); }
.s6a5-stat strong { display: block; color: var(--s6a5-accent); font-size: 1.9rem; line-height: 2.2rem; }
.s6a5-chip-row { display: flex; flex-wrap: wrap; gap: .7rem; }
.s6a5-chip { display: inline-flex; min-height: 3.4rem; align-items: center; border-radius: 999px; padding: .7rem 1rem; background: rgba(222,184,135,.12); color: var(--s6a5-muted); font-weight: 800; }
.s6a5-game-section { padding: 1rem 0; }
.s6a5-game-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: .9rem; }
.s6a5-game-head h2 { margin: 0; font-size: 2rem; line-height: 2.4rem; }
.s6a5-game-count { color: var(--s6a5-accent); font-weight: 900; font-size: 1.2rem; }
.s6a5-game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.s6a5-game-card { min-height: 9.8rem; padding: .7rem .45rem; border-radius: 1.2rem; background: rgba(250,240,230,.07); border: .1rem solid rgba(222,184,135,.13); text-align: center; color: var(--s6a5-text); transition: transform .18s ease, border-color .18s ease; }
.s6a5-game-card:hover { transform: translateY(-.2rem); border-color: rgba(255,183,77,.6); }
.s6a5-game-card img { width: 5.2rem; height: 5.2rem; margin: 0 auto .45rem; object-fit: cover; border-radius: 1.1rem; }
.s6a5-game-card span { display: block; font-size: 1.05rem; line-height: 1.25rem; font-weight: 800; }
.s6a5-two-col { display: grid; gap: 1rem; }
.s6a5-mini-panel { padding: 1rem; border-radius: 1.4rem; background: rgba(20,20,20,.35); border: .1rem dashed rgba(255,183,77,.22); }
.s6a5-review { display: grid; gap: .8rem; }
.s6a5-review blockquote { margin: 0; padding: 1rem; border-left: .4rem solid var(--s6a5-accent); background: rgba(250,240,230,.06); border-radius: 1rem; line-height: 2.2rem; }
.s6a5-payment-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.s6a5-pay { min-height: 6rem; display: grid; place-items: center; border-radius: 1.2rem; background: rgba(222,184,135,.12); font-weight: 900; color: var(--s6a5-white); text-align: center; }
.s6a5-footer { padding: 2rem 0 8rem; background: #0f0f0f; border-top: .1rem solid rgba(222,184,135,.16); }
.s6a5-footer-logo { display: flex; align-items: center; gap: .8rem; font-weight: 900; font-size: 1.8rem; color: var(--s6a5-white); }
.s6a5-footer-links, .s6a5-footer-buttons { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1rem 0; }
.s6a5-footer-links a { color: var(--s6a5-muted); font-weight: 800; }
.s6a5-mini-btn { min-height: 4.4rem; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: .8rem 1.1rem; background: rgba(255,183,77,.14); color: var(--s6a5-accent); font-weight: 900; border: .1rem solid rgba(255,183,77,.26); }
.s6a5-bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(100%, 430px);
  height: 6.2rem;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #A0522D;
  border-top: .2rem solid var(--s6a5-accent);
  box-shadow: 0 -1rem 2rem rgba(0,0,0,.32);
}
.s6a5-bottom-item { min-width: 6rem; min-height: 6rem; border: 0; background: transparent; color: #FAF0E6; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .2rem; font-size: 1.05rem; font-weight: 900; cursor: pointer; transition: transform .18s ease, color .18s ease, background .18s ease; }
.s6a5-bottom-item i, .s6a5-bottom-item .material-icons, .s6a5-bottom-item ion-icon { font-size: 2.4rem; line-height: 2.4rem; }
.s6a5-bottom-item:hover, .s6a5-bottom-item:focus, .s6a5-bottom-item.s6a5-bottom-active { color: #141414; background: var(--s6a5-accent); transform: translateY(-.25rem) scale(1.03); border-radius: 1.4rem; }
.s6a5-badge { position: absolute; margin-left: 2.8rem; margin-top: -2rem; min-width: 1.7rem; height: 1.7rem; border-radius: 999px; background: var(--s6a5-white); color: var(--s6a5-primary); font-size: 1rem; display: grid; place-items: center; }
.s6a5-toast { position: fixed; left: 50%; bottom: 7.4rem; transform: translateX(-50%) translateY(2rem); width: min(92%, 390px); z-index: 10000; padding: 1rem 1.2rem; border-radius: 1.2rem; background: var(--s6a5-accent); color: #141414; font-weight: 900; opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; text-align: center; }
.s6a5-toast.s6a5-toast-show { opacity: 1; transform: translateX(-50%) translateY(0); }
.s6a5-reveal { opacity: 0; transform: translateY(1.6rem); transition: opacity .45s ease, transform .45s ease; }
.s6a5-reveal.s6a5-revealed { opacity: 1; transform: translateY(0); }
.s6a5-legal { font-size: 1.25rem; color: var(--s6a5-muted); line-height: 2rem; }
@keyframes s6a5Fade { from { opacity: .45; transform: scale(1.01); } to { opacity: 1; transform: scale(1); } }
@media (max-width: 768px) { main.s6a5-main { padding-bottom: 8rem; } }
@media (min-width: 431px) { body { background-color: #090909; } }
@media (min-width: 769px) {
  .s6a5-page, .s6a5-header, .s6a5-bottom-nav, .s6a5-mobile-menu { width: min(100%, 1080px); max-width: 1080px; }
  .s6a5-page { width: min(100%, 1080px); }
  .s6a5-container { width: min(100% - 4rem, 100rem); }
  .s6a5-menu-btn { display: none; }
  .s6a5-desktop-nav { display: flex; gap: 1.2rem; margin-left: 2rem; }
  .s6a5-desktop-nav a { color: var(--s6a5-muted); font-weight: 800; }
  .s6a5-bottom-nav { display: none; }
  .s6a5-mobile-menu { display: none; }
  .s6a5-title { font-size: 4.2rem; line-height: 4.8rem; }
  .s6a5-game-grid { grid-template-columns: repeat(8, 1fr); }
  .s6a5-two-col { grid-template-columns: repeat(2, 1fr); }
  .s6a5-slide img { height: 28rem; }
  .s6a5-footer { padding-bottom: 2rem; }
}
