/* ============================================================
 * scatter slots - theme-7564.css
 * All custom classes use the "pg75-" prefix.
 * Palette: #2C3E50 (deep bg) | #32CD32 (accent green) | #9370DB (purple)
 * Mobile-first, max-width 430px viewport target.
 * ============================================================ */

:root {
  --pg75-bg: #2C3E50;
  --pg75-bg-2: #22313f;
  --pg75-bg-3: #1a2733;
  --pg75-accent: #32CD32;
  --pg75-accent-2: #9370DB;
  --pg75-text: #f4f6f8;
  --pg75-text-soft: #c5cdd6;
  --pg75-text-dim: #9aa6b3;
  --pg75-card: #2f4153;
  --pg75-card-2: #384d63;
  --pg75-border: rgba(255, 255, 255, 0.08);
  --pg75-gold: #ffd54a;
  --pg75-radius: 14px;
  --pg75-radius-sm: 10px;
  --pg75-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  --pg75-header-h: 58px;
  --pg75-bottomnav-h: 62px;
}

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

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

body {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--pg75-bg);
  color: var(--pg75-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--pg75-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- Layout ---------- */
.pg75-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 14px; }
.pg75-wrapper { max-width: 430px; margin: 0 auto; background: var(--pg75-bg); min-height: 100vh; }

/* ---------- Header ---------- */
.pg75-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--pg75-header-h);
  background: linear-gradient(90deg, var(--pg75-bg-2) 0%, var(--pg75-bg-3) 100%);
  border-bottom: 2px solid var(--pg75-accent);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.pg75-header-inner {
  max-width: 430px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 12px;
}
.pg75-logo { display: flex; align-items: center; gap: 8px; }
.pg75-logo img { width: 30px; height: 30px; border-radius: 6px; }
.pg75-logo-text { font-size: 1.5rem; font-weight: 800; color: var(--pg75-text); letter-spacing: 0.3px; }
.pg75-logo-text b { color: var(--pg75-accent); }

.pg75-header-actions { display: flex; align-items: center; gap: 8px; }
.pg75-menu-btn {
  background: transparent; border: 0; color: var(--pg75-text);
  font-size: 2.2rem; width: 38px; height: 38px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; border-radius: 8px;
}
.pg75-menu-btn:hover { background: rgba(255, 255, 255, 0.08); }

.pg75-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 1.3rem; font-weight: 700; padding: 7px 14px; min-height: 38px;
  border: 0; border-radius: 20px; cursor: pointer; text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.pg75-btn:hover { text-decoration: none; transform: translateY(-1px); }
.pg75-btn:active { transform: scale(0.96); }
.pg75-btn-login { background: transparent; color: var(--pg75-text); border: 1.5px solid var(--pg75-accent-2); }
.pg75-btn-login:hover { background: rgba(147, 112, 219, 0.18); }
.pg75-btn-register { background: linear-gradient(90deg, var(--pg75-accent) 0%, #28b928 100%); color: #0f1f15; }
.pg75-btn-register:hover { box-shadow: 0 4px 14px rgba(50, 205, 50, 0.4); }
.pg75-btn-promo { background: linear-gradient(90deg, var(--pg75-accent-2) 0%, #7d57c4 100%); color: #fff; }
.pg75-btn-promo:hover { box-shadow: 0 4px 14px rgba(147, 112, 219, 0.45); }
.pg75-btn-block { display: flex; width: 100%; padding: 12px 16px; font-size: 1.6rem; }

/* ---------- Mobile menu ---------- */
.pg75-mobile-menu {
  position: fixed; top: var(--pg75-header-h); left: 0; right: 0; z-index: 9999;
  background: var(--pg75-bg-2);
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
  border-bottom: 1px solid var(--pg75-border);
}
.pg75-mobile-menu.pg75-open { max-height: 520px; box-shadow: var(--pg75-shadow); }
.pg75-mobile-menu-inner { max-width: 430px; margin: 0 auto; padding: 10px 14px 16px; }
.pg75-mobile-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 10px; color: var(--pg75-text-soft);
  border-bottom: 1px solid var(--pg75-border); font-size: 1.5rem;
}
.pg75-mobile-menu a:hover { color: var(--pg75-accent); text-decoration: none; background: rgba(255,255,255,0.04); }
.pg75-mobile-menu a i { color: var(--pg75-accent-2); width: 22px; text-align: center; }

/* ---------- Main / hero ---------- */
.pg75-main { padding-top: calc(var(--pg75-header-h) + 8px); }
.pg75-hero { position: relative; margin: 8px 0 14px; border-radius: var(--pg75-radius); overflow: hidden; }
.pg75-carousel { overflow: hidden; border-radius: var(--pg75-radius); }
.pg75-carousel-track { display: flex; transition: transform .5s ease; }
.pg75-slide { min-width: 100%; position: relative; }
.pg75-slide img { width: 100%; height: 200px; object-fit: cover; }
.pg75-slide-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 28px 14px 12px;
}
.pg75-slide-cap h2 { font-size: 1.9rem; color: #fff; margin-bottom: 4px; }
.pg75-slide-cap p { font-size: 1.3rem; color: var(--pg75-text-soft); }
.pg75-carousel-dots { display: flex; justify-content: center; gap: 6px; padding: 8px 0; }
.pg75-carousel-dots .pg75-dot {
  width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.35); cursor: pointer; border: 0;
}
.pg75-carousel-dots .pg75-dot.pg75-active { background: var(--pg75-accent); width: 22px; border-radius: 5px; }

/* ---------- Section heading ---------- */
.pg75-section { padding: 18px 0; }
.pg75-section-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 1.9rem; font-weight: 800; margin-bottom: 12px; color: var(--pg75-text);
}
.pg75-section-title i { color: var(--pg75-accent); }
.pg75-section-title span.accent { color: var(--pg75-accent); }
.pg75-section-sub { font-size: 1.35rem; color: var(--pg75-text-soft); margin-bottom: 12px; }

/* ---------- Game grid ---------- */
.pg75-game-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pg75-game-card {
  background: var(--pg75-card); border-radius: var(--pg75-radius-sm);
  overflow: hidden; cursor: pointer; border: 1px solid var(--pg75-border);
  transition: transform .15s ease, box-shadow .15s ease;
}
.pg75-game-card:hover { transform: translateY(-2px); box-shadow: var(--pg75-shadow); border-color: var(--pg75-accent); }
.pg75-game-card img { width: 100%; height: 92px; object-fit: cover; }
.pg75-game-name {
  padding: 6px 6px 8px; font-size: 1.2rem; color: var(--pg75-text-soft);
  text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pg75-cat-head {
  display: flex; align-items: center; gap: 8px; margin: 18px 0 10px;
  font-size: 1.7rem; font-weight: 700; color: var(--pg75-accent-2);
}
.pg75-cat-head i { color: var(--pg75-accent); }

/* ---------- Cards / features ---------- */
.pg75-card {
  background: var(--pg75-card); border-radius: var(--pg75-radius);
  padding: 14px; margin-bottom: 12px; border: 1px solid var(--pg75-border);
}
.pg75-card h3 { font-size: 1.6rem; margin-bottom: 8px; color: var(--pg75-text); }
.pg75-card p { font-size: 1.35rem; color: var(--pg75-text-soft); }
.pg75-feature-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.pg75-feature {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--pg75-card-2); padding: 12px; border-radius: var(--pg75-radius-sm);
}
.pg75-feature .pg75-ico {
  flex: 0 0 42px; width: 42px; height: 42px; border-radius: 10px;
  background: rgba(50, 205, 50, 0.16); color: var(--pg75-accent);
  display: flex; align-items: center; justify-content: center; font-size: 2.2rem;
}
.pg75-feature h4 { font-size: 1.5rem; margin-bottom: 4px; color: var(--pg75-text); }
.pg75-feature p { font-size: 1.3rem; color: var(--pg75-text-soft); }

/* ---------- Steps ---------- */
.pg75-steps { counter-reset: step; }
.pg75-step { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--pg75-border); }
.pg75-step:last-child { border-bottom: 0; }
.pg75-step-num {
  flex: 0 0 30px; width: 30px; height: 30px; border-radius: 50%;
  background: var(--pg75-accent-2); color: #fff; font-weight: 800;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.pg75-step-body h4 { font-size: 1.45rem; color: var(--pg75-text); margin-bottom: 3px; }
.pg75-step-body p { font-size: 1.3rem; color: var(--pg75-text-soft); }

/* ---------- FAQ ---------- */
.pg75-faq-item { background: var(--pg75-card); border-radius: var(--pg75-radius-sm); margin-bottom: 8px; overflow: hidden; }
.pg75-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 14px; cursor: pointer; font-size: 1.45rem; font-weight: 600; color: var(--pg75-text);
}
.pg75-faq-q .pg75-faq-icon { color: var(--pg75-accent); transition: transform .2s ease; }
.pg75-faq-item.pg75-open .pg75-faq-icon { transform: rotate(45deg); }
.pg75-faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 14px; }
.pg75-faq-item.pg75-open .pg75-faq-a { max-height: 320px; padding-bottom: 12px; }
.pg75-faq-a p { font-size: 1.3rem; color: var(--pg75-text-soft); }

/* ---------- Winners strip ---------- */
.pg75-winners { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.pg75-winner {
  background: var(--pg75-card); border-radius: var(--pg75-radius-sm); padding: 10px;
  border-left: 3px solid var(--pg75-gold);
}
.pg75-winner .pg75-w-name { font-size: 1.3rem; font-weight: 700; color: var(--pg75-gold); }
.pg75-winner .pg75-w-game { font-size: 1.2rem; color: var(--pg75-text-soft); }
.pg75-winner .pg75-w-amount { font-size: 1.5rem; font-weight: 800; color: var(--pg75-accent); margin-top: 2px; }

/* ---------- Payment ---------- */
.pg75-pay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.pg75-pay-item {
  background: var(--pg75-card); border-radius: var(--pg75-radius-sm); padding: 12px 6px;
  text-align: center; font-size: 1.2rem; color: var(--pg75-text-soft);
}
.pg75-pay-item i { font-size: 2.4rem; color: var(--pg75-accent); display: block; margin-bottom: 4px; }

/* ---------- Testimonials ---------- */
.pg75-testi { background: var(--pg75-card); border-radius: var(--pg75-radius); padding: 14px; margin-bottom: 10px; }
.pg75-testi-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.pg75-testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--pg75-accent-2); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.5rem; }
.pg75-testi-name { font-size: 1.4rem; font-weight: 700; color: var(--pg75-text); }
.pg75-testi-stars { color: var(--pg75-gold); font-size: 1.3rem; }
.pg75-testi p { font-size: 1.3rem; color: var(--pg75-text-soft); }

/* ---------- CTA block ---------- */
.pg75-cta {
  background: linear-gradient(135deg, var(--pg75-accent-2) 0%, #5e3da8 100%);
  border-radius: var(--pg75-radius); padding: 18px 14px; text-align: center; margin: 16px 0;
}
.pg75-cta h3 { color: #fff; font-size: 1.8rem; margin-bottom: 6px; }
.pg75-cta p { color: rgba(255,255,255,0.85); font-size: 1.3rem; margin-bottom: 12px; }
.pg75-cta .pg75-btn { display: inline-flex; }

/* ---------- App download ---------- */
.pg75-app-box { display: flex; gap: 12px; align-items: center; background: var(--pg75-card); border-radius: var(--pg75-radius); padding: 14px; }
.pg75-app-box .pg75-app-ico { flex: 0 0 54px; width: 54px; height: 54px; border-radius: 12px; background: rgba(50,205,50,0.16); color: var(--pg75-accent); display: flex; align-items: center; justify-content: center; font-size: 2.8rem; }
.pg75-app-box h4 { font-size: 1.55rem; color: var(--pg75-text); }
.pg75-app-box p { font-size: 1.3rem; color: var(--pg75-text-soft); margin-bottom: 8px; }

/* ---------- Footer ---------- */
.pg75-footer {
  background: var(--pg75-bg-3); border-top: 2px solid var(--pg75-accent);
  padding: 22px 14px 18px; margin-top: 18px;
}
.pg75-footer-inner { max-width: 430px; margin: 0 auto; }
.pg75-footer-brand { font-size: 1.5rem; font-weight: 800; color: var(--pg75-text); margin-bottom: 6px; }
.pg75-footer-brand b { color: var(--pg75-accent); }
.pg75-footer-desc { font-size: 1.3rem; color: var(--pg75-text-dim); margin-bottom: 14px; }
.pg75-footer-links { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-bottom: 12px; }
.pg75-footer-links a { font-size: 1.25rem; color: var(--pg75-text-soft); }
.pg75-footer-promo { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.pg75-footer-promo .pg75-btn { font-size: 1.2rem; padding: 6px 12px; }
.pg75-footer-copy { font-size: 1.2rem; color: var(--pg75-text-dim); border-top: 1px solid var(--pg75-border); padding-top: 10px; }

/* ---------- Bottom nav ---------- */
.pg75-bottomnav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  height: var(--pg75-bottomnav-h);
  background: linear-gradient(180deg, var(--pg75-bg-2) 0%, var(--pg75-bg-3) 100%);
  border-top: 2px solid var(--pg75-accent);
  display: flex; justify-content: space-around; align-items: stretch;
  box-shadow: 0 -3px 14px rgba(0, 0, 0, 0.45);
}
.pg75-bottomnav-btn {
  flex: 1; min-width: 60px; min-height: 60px;
  background: transparent; border: 0; color: var(--pg75-text-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  cursor: pointer; padding: 4px 2px; transition: color .15s ease, transform .15s ease;
}
.pg75-bottomnav-btn i { font-size: 2.2rem; }
.pg75-bottomnav-btn span { font-size: 1.05rem; }
.pg75-bottomnav-btn:hover { color: var(--pg75-accent); }
.pg75-bottomnav-btn:active { transform: scale(0.92); }
.pg75-bottomnav-btn.pg75-current { color: var(--pg75-accent); }
.pg75-bottomnav-btn.pg75-current i { transform: translateY(-1px); }
.pg75-bottomnav-btn.pg75-promo i { color: var(--pg75-gold); }

/* ---------- Back to top ---------- */
.pg75-backtop {
  position: fixed; right: 14px; bottom: calc(var(--pg75-bottomnav-h) + 12px); z-index: 900;
  width: 42px; height: 42px; border-radius: 50%; background: var(--pg75-accent-2); color: #fff;
  border: 0; cursor: pointer; font-size: 2rem; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s ease;
  box-shadow: var(--pg75-shadow);
}
.pg75-backtop.pg75-show { opacity: 1; visibility: visible; }

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

/* ---------- Mobile bottom padding ---------- */
@media (max-width: 768px) {
  .pg75-main { padding-bottom: calc(var(--pg75-bottomnav-h) + 14px); }
}

/* ---------- Desktop: hide bottom nav, widen shell ---------- */
@media (min-width: 769px) {
  .pg75-bottomnav { display: none; }
  .pg75-wrapper, .pg75-header-inner, .pg75-container,
  .pg75-mobile-menu-inner, .pg75-footer-inner { max-width: 430px; }
  body { background: #11181f; }
  .pg75-wrapper { box-shadow: 0 0 30px rgba(0,0,0,0.5); }
  .pg75-backtop { bottom: 22px; }
}

/* ---------- Small screens tuning ---------- */
@media (max-width: 360px) {
  .pg75-game-list { grid-template-columns: repeat(2, 1fr); }
  .pg75-logo-text { font-size: 1.3rem; }
  .pg75-btn { padding: 6px 10px; font-size: 1.2rem; }
}
