/*!
 * ga67.click - design-702b.css
 * Mobile-first casino/gaming styles. Class prefix: s702-
 * Palette: #7B68EE | #1A1A2E | #DDA0DD | #7FFF00 | #F08080
 * Dark backgrounds, light text. Root font 62.5%.
 */

:root {
  --s702-primary: #7B68EE;
  --s702-bg: #1A1A2E;
  --s702-bg2: #22223a;
  --s702-pink: #DDA0DD;
  --s702-green: #7FFF00;
  --s702-coral: #F08080;
  --s702-text: #f3f3fb;
  --s702-muted: #b9b9d6;
  --s702-card: #26263f;
  --s702-border: #3a3a5c;
  --s702-radius: 14px;
  --s702-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, Arial, sans-serif;
  background: var(--s702-bg);
  color: var(--s702-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  overflow-x: hidden;
}

a { color: var(--s702-primary); text-decoration: none; }
img { max-width: 100%; display: block; }

/* Layout containers */
.s702-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.s702-wrapper { width: 100%; max-width: 430px; margin: 0 auto; }

/* ===== Header ===== */
.s702-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #1A1A2E 0%, #2a2a4a 100%);
  border-bottom: 1px solid var(--s702-border);
  box-shadow: var(--s702-shadow);
}
.s702-header-inner {
  max-width: 430px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 1rem; min-height: 5rem;
}
.s702-logo { display: flex; align-items: center; gap: 0.6rem; color: var(--s702-text); }
.s702-logo img { width: 28px; height: 28px; border-radius: 6px; }
.s702-logo-text { font-weight: 800; font-size: 1.7rem; letter-spacing: 0.5px; color: var(--s702-primary); }
.s702-logo-text span { color: var(--s702-pink); }

.s702-header-actions { display: flex; align-items: center; gap: 0.5rem; }
.s702-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem; padding: 0.7rem 1.2rem;
  font-size: 1.3rem; font-weight: 700;
  border: none; border-radius: 22px;
  cursor: pointer; min-height: 38px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.s702-btn:active { transform: scale(0.96); }
.s702-btn-login { background: transparent; color: var(--s702-text); border: 1px solid var(--s702-primary); }
.s702-btn-register { background: linear-gradient(90deg, var(--s702-primary), var(--s702-pink)); color: #fff; }
.s702-btn-promo { background: linear-gradient(90deg, var(--s702-green), var(--s702-primary)); color: #0e0e1c; }
.s702-btn-block { display: flex; width: 100%; padding: 1.1rem; font-size: 1.5rem; border-radius: 12px; }

.s702-menu-btn {
  background: transparent; border: none; color: var(--s702-text);
  font-size: 2rem; cursor: pointer; padding: 0.4rem 0.6rem; min-width: 40px;
}

/* Mobile dropdown menu */
.s702-mobile-menu {
  display: none; position: fixed; top: 5rem; left: 0; right: 0;
  background: var(--s702-bg2);
  border-bottom: 1px solid var(--s702-border);
  z-index: 9999; padding: 0.8rem 1rem;
  flex-direction: column; gap: 0.4rem;
}
.s702-mobile-menu.s702-menu-open { display: flex; }
.s702-mobile-menu a {
  color: var(--s702-text); padding: 1rem 0.8rem;
  border-radius: 8px; font-size: 1.4rem; font-weight: 600;
  border-bottom: 1px solid rgba(123, 104, 238, 0.12);
}
.s702-mobile-menu a:active { background: rgba(123, 104, 238, 0.15); }

/* ===== Main ===== */
.s702-main { padding-top: 6rem; padding-bottom: 8rem; }

/* Hero carousel */
.s702-carousel { position: relative; width: 100%; max-width: 430px; margin: 0 auto; overflow: hidden; border-radius: var(--s702-radius); }
.s702-carousel-viewport { overflow: hidden; border-radius: var(--s702-radius); }
.s702-carousel-track { display: flex; transition: transform 0.42s ease; will-change: transform; }
.s702-slide { min-width: 100%; position: relative; }
.s702-slide img { width: 100%; height: 180px; object-fit: cover; }
.s702-slide-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1rem 1.2rem; background: linear-gradient(transparent, rgba(26,26,46,0.92));
}
.s702-slide-title { font-size: 1.6rem; font-weight: 800; color: #fff; margin: 0; }
.s702-slide-sub { font-size: 1.2rem; color: var(--s702-pink); margin: 0.2rem 0 0; }
.s702-carousel-dots { display: flex; justify-content: center; gap: 0.5rem; padding: 0.6rem 0; }
.s702-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--s702-border); border: none; cursor: pointer; }
.s702-dot-active { background: var(--s702-primary); }

/* Section titles */
.s702-section { margin: 2rem 0; }
.s702-section-title {
  font-size: 1.8rem; font-weight: 800; margin: 0 0 1rem;
  color: var(--s702-text); display: flex; align-items: center; gap: 0.5rem;
}
.s702-section-title i, .s702-section-title .material-icons-outlined { color: var(--s702-green); font-size: 2rem; }
.s702-section-sub { color: var(--s702-muted); font-size: 1.3rem; margin: 0 0 1rem; }

/* H1 hero */
.s702-h1 {
  font-size: 2.1rem; font-weight: 800; line-height: 1.35;
  color: var(--s702-text); margin: 1.4rem 0 0.8rem;
  padding: 0 1.2rem; max-width: 430px; margin-left: auto; margin-right: auto;
}
.s702-h1 span { color: var(--s702-primary); }
.s702-h1 em { color: var(--s702-pink); font-style: normal; }

/* Filter chips */
.s702-filters { display: flex; gap: 0.5rem; overflow-x: auto; padding: 0.5rem 1.2rem; max-width: 430px; margin: 0 auto; scrollbar-width: none; }
.s702-filters::-webkit-scrollbar { display: none; }
.s702-filter-btn {
  flex: 0 0 auto; padding: 0.6rem 1.2rem; border-radius: 20px;
  background: var(--s702-card); color: var(--s702-muted);
  border: 1px solid var(--s702-border); font-size: 1.2rem; font-weight: 700;
  cursor: pointer; white-space: nowrap;
}
.s702-filter-active { background: var(--s702-primary); color: #fff; border-color: var(--s702-primary); }

/* Game grid */
.s702-game-section { margin: 1.4rem 0; }
.s702-game-section-head { display: flex; align-items: center; gap: 0.5rem; margin: 0 0 0.8rem; padding: 0 1.2rem; }
.s702-game-section-head h2 { font-size: 1.6rem; font-weight: 800; color: var(--s702-text); margin: 0; }
.s702-game-section-head .s702-tag { font-size: 1rem; color: var(--s702-green); background: rgba(127,255,0,0.1); padding: 0.2rem 0.6rem; border-radius: 10px; }
.s702-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem; padding: 0 1.2rem; max-width: 430px; margin: 0 auto;
}
.s702-game-card {
  background: var(--s702-card); border-radius: 10px; overflow: hidden;
  border: 1px solid var(--s702-border); text-align: center;
  transition: transform 0.15s ease, border-color 0.15s ease; cursor: pointer;
}
.s702-game-card:active { transform: scale(0.95); border-color: var(--s702-primary); }
.s702-game-card img { width: 100%; height: 70px; object-fit: cover; }
.s702-game-name { font-size: 1rem; color: var(--s702-text); padding: 0.3rem 0.2rem 0.4rem; line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Info cards / modules */
.s702-card {
  background: var(--s702-card); border-radius: var(--s702-radius);
  padding: 1.4rem; margin: 1.2rem 0; border: 1px solid var(--s702-border);
}
.s702-card h2 { font-size: 1.7rem; margin: 0 0 0.6rem; color: var(--s702-primary); }
.s702-card h3 { font-size: 1.4rem; margin: 1rem 0 0.4rem; color: var(--s702-pink); }
.s702-card p { margin: 0 0 0.6rem; color: var(--s702-muted); }
.s702-card ul { margin: 0.4rem 0; padding-left: 1.4rem; color: var(--s702-muted); }
.s702-card li { margin: 0.3rem 0; }
.s702-card .s702-promo-text { color: var(--s702-green); font-weight: 800; }

/* RTP compact table */
.s702-rtp-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px dashed var(--s702-border); font-size: 1.2rem; }
.s702-rtp-row span:first-child { color: var(--s702-muted); }
.s702-rtp-row span:last-child { color: var(--s702-green); font-weight: 700; }

/* Testimonials */
.s702-testimonial { background: var(--s702-bg2); border-radius: 10px; padding: 1rem; margin: 0.6rem 0; border-left: 3px solid var(--s702-pink); }
.s702-testimonial p { margin: 0 0 0.4rem; color: var(--s702-text); font-size: 1.2rem; }
.s702-testimonial .s702-author { color: var(--s702-pink); font-size: 1.1rem; font-weight: 700; }

/* Payment icons */
.s702-pay-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.s702-pay-chip { background: var(--s702-bg2); border: 1px solid var(--s702-border); border-radius: 8px; padding: 0.5rem 0.8rem; font-size: 1.1rem; color: var(--s702-text); display: flex; align-items: center; gap: 0.3rem; }

/* Winners */
.s702-winner { display: flex; justify-content: space-between; padding: 0.5rem 0; font-size: 1.2rem; border-bottom: 1px solid var(--s702-border); }
.s702-winner span:last-child { color: var(--s702-green); font-weight: 700; }

/* CTA */
.s702-cta { text-align: center; margin: 1.6rem 0; padding: 1.4rem; background: linear-gradient(135deg, rgba(123,104,238,0.2), rgba(221,160,221,0.15)); border-radius: var(--s702-radius); border: 1px solid var(--s702-primary); }
.s702-cta h2 { color: var(--s702-text); margin: 0 0 0.6rem; font-size: 1.7rem; }
.s702-cta p { color: var(--s702-muted); margin: 0 0 1rem; }

/* Footer */
.s702-footer { background: var(--s702-bg2); border-top: 1px solid var(--s702-border); padding: 2rem 1.2rem 7rem; margin-top: 2rem; }
.s702-footer-inner { max-width: 430px; margin: 0 auto; }
.s702-footer-brand { color: var(--s702-muted); font-size: 1.2rem; margin: 0 0 1rem; line-height: 1.5; }
.s702-footer-links { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; margin: 0 0 1rem; }
.s702-footer-links a { color: var(--s702-text); font-size: 1.2rem; text-decoration: underline; }
.s702-footer-promos { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0 0 1rem; }
.s702-footer-copy { color: var(--s702-muted); font-size: 1.1rem; border-top: 1px solid var(--s702-border); padding-top: 1rem; }

/* ===== Mobile bottom nav ===== */
.s702-bottomnav {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: 62px; z-index: 1000;
  background: linear-gradient(180deg, #22223a, #1A1A2E);
  border-top: 1px solid var(--s702-border);
  display: flex; justify-content: space-around; align-items: center;
  box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.4);
}
.s702-bottomnav-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex: 1; min-width: 60px; min-height: 60px;
  background: transparent; border: none; color: var(--s702-muted);
  cursor: pointer; gap: 0.2rem; padding: 0.4rem;
  transition: color 0.18s ease, transform 0.18s ease;
}
.s702-bottomnav-btn:active { transform: scale(0.92); }
.s702-bottomnav-btn i, .s702-bottomnav-btn .material-icons-outlined, .s702-bottomnav-btn .ion-icon { font-size: 22px; }
.s702-bottomnav-btn .s702-nav-label { font-size: 1rem; line-height: 1.1; }
.s702-bottomnav-btn.s702-bottomnav-active { color: var(--s702-primary); }
.s702-bottomnav-btn.s702-bottomnav-promo { color: var(--s702-green); }
.s702-bottomnav-btn.s702-bottomnav-promo .s702-nav-label { color: var(--s702-green); }

/* Desktop: hide bottom nav, show desktop nav */
@media (min-width: 769px) {
  .s702-bottomnav { display: none; }
  body { font-size: 1.5rem; }
  .s702-container, .s702-wrapper, .s702-h1, .s702-grid, .s702-filters, .s702-footer-inner { max-width: 760px; }
  .s702-grid { grid-template-columns: repeat(6, 1fr); }
  .s702-slide img { height: 260px; }
}

/* Mobile bottom padding clearance handled by .s702-main padding-bottom */
@media (max-width: 768px) {
  .s702-main { padding-bottom: 82px; }
}
