/* =========================================================
   da8.click - Shared stylesheet (mobile-first)
   All custom classes use prefix: pg53-
   Color palette: #808080 #0E1621 #B03060 #FFB6C1 #C71585
   ========================================================= */

:root {
  --pg53-bg: #0E1621;
  --pg53-bg-2: #15202E;
  --pg53-bg-3: #1B2A3C;
  --pg53-primary: #C71585;
  --pg53-primary-2: #B03060;
  --pg53-pink: #FFB6C1;
  --pg53-gray: #808080;
  --pg53-text: #ECEFF4;
  --pg53-muted: #9AA7B4;
  --pg53-border: #25354A;
  --pg53-radius: 12px;
  --pg53-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  background: var(--pg53-bg);
  color: var(--pg53-text);
  font-size: 1.5rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--pg53-pink); text-decoration: none; }
a:hover { color: #fff; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout wrappers (mobile-first, max-width: 430px) ---------- */
.pg53-container {
  width: 100%;
  max-width: 430px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 14px;
  padding-right: 14px;
}
.pg53-wrapper {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
}

main { padding-top: 64px; padding-bottom: 24px; }
@media (max-width: 768px) {
  main { padding-bottom: 88px; }
}

/* ---------- Header (fixed top) ---------- */
.pg53-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #0E1621 0%, #15202E 100%);
  border-bottom: 1px solid var(--pg53-border);
  box-shadow: var(--pg53-shadow);
}
.pg53-header-inner {
  max-width: 430px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
}
.pg53-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.8rem;
  color: #fff;
}
.pg53-logo img { width: 28px; height: 28px; border-radius: 6px; }
.pg53-logo .pg53-logo-text {
  background: linear-gradient(90deg, #FFB6C1, #C71585);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pg53-header-actions { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.pg53-menu-btn {
  background: transparent;
  border: 0;
  color: var(--pg53-text);
  font-size: 2rem;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
}
.pg53-menu-btn:hover { background: rgba(199, 21, 133, 0.15); color: var(--pg53-pink); }

/* ---------- Buttons ---------- */
.pg53-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.35rem;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
.pg53-btn:active { transform: scale(0.97); }
.pg53-btn-primary {
  background: linear-gradient(90deg, #C71585, #B03060);
  color: #fff;
  box-shadow: 0 4px 12px rgba(199, 21, 133, 0.45);
}
.pg53-btn-primary:hover { color: #fff; filter: brightness(1.08); }
.pg53-btn-outline {
  background: transparent;
  color: var(--pg53-pink);
  border: 1.5px solid var(--pg53-pink);
}
.pg53-btn-outline:hover { background: rgba(255, 182, 193, 0.12); color: #fff; }
.pg53-btn-block { width: 100%; }
.pg53-btn-lg { min-height: 48px; font-size: 1.55rem; }

/* ---------- Expandable mobile menu ---------- */
.pg53-mobile-menu {
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: var(--pg53-bg-2);
  border-bottom: 1px solid var(--pg53-border);
  padding: 8px 14px 14px;
  transform: translateY(-130%);
  transition: transform .28s ease;
  z-index: 9999;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}
.pg53-mobile-menu.pg53-menu-open { transform: translateY(0); }
.pg53-mobile-menu a {
  display: block;
  padding: 12px 10px;
  border-bottom: 1px solid var(--pg53-border);
  color: var(--pg53-text);
  font-size: 1.45rem;
}
.pg53-mobile-menu a:hover { color: var(--pg53-pink); }
.pg53-mobile-menu .pg53-menu-group-label {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--pg53-gray);
  margin-top: 10px;
  padding: 0 10px;
}

body.pg53-no-scroll { overflow: hidden; }

/* ---------- Hero / Carousel ---------- */
.pg53-hero { padding: 14px 0 6px; }
.pg53-carousel {
  position: relative;
  border-radius: var(--pg53-radius);
  overflow: hidden;
  box-shadow: var(--pg53-shadow);
}
.pg53-slides { position: relative; }
.pg53-slide {
  display: none;
  width: 100%;
  cursor: pointer;
}
.pg53-slide.pg53-active { display: block; }
.pg53-slide img { width: 100%; height: 180px; object-fit: cover; }
.pg53-slide .pg53-slide-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent, rgba(14,22,33,0.92));
  padding: 24px 14px 12px;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
}
.pg53-dots {
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px;
}
.pg53-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255, 182, 193, 0.4);
  border: 0; padding: 0; cursor: pointer;
}
.pg53-dot.pg53-dot-active { background: var(--pg53-pink); width: 22px; border-radius: 4px; }

/* ---------- Section ---------- */
.pg53-section { padding: 18px 0; }
.pg53-section-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
}
.pg53-section-head i { color: var(--pg53-pink); font-size: 1.6rem; }
.pg53-section-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.pg53-section-sub { color: var(--pg53-muted); font-size: 1.3rem; margin: 4px 0 0; }
.pg53-divider {
  height: 1px; background: var(--pg53-border); margin: 14px 0; border: 0;
}

/* ---------- H1 ---------- */
.pg53-h1 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 8px 0 6px;
  background: linear-gradient(90deg, #FFB6C1, #C71585);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pg53-lead { color: var(--pg53-muted); font-size: 1.4rem; margin: 0 0 12px; }

/* ---------- Game grid ---------- */
.pg53-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.pg53-game-card {
  background: var(--pg53-bg-2);
  border: 1px solid var(--pg53-border);
  border-radius: var(--pg53-radius);
  padding: 8px;
  text-align: center;
  transition: transform .12s ease, border-color .12s ease;
  cursor: pointer;
  display: block;
}
.pg53-game-card:hover { transform: translateY(-2px); border-color: var(--pg53-primary); }
.pg53-game-card img {
  width: 100%; height: 76px; object-fit: cover;
  border-radius: 8px; margin-bottom: 6px;
}
.pg53-game-name {
  font-size: 1.2rem;
  color: var(--pg53-text);
  font-weight: 600;
  line-height: 1.25;
  word-break: break-word;
}
.pg53-cat-label {
  display: inline-block;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--pg53-pink);
  background: rgba(199, 21, 133, 0.12);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* ---------- Cards ---------- */
.pg53-card {
  background: var(--pg53-bg-2);
  border: 1px solid var(--pg53-border);
  border-radius: var(--pg53-radius);
  padding: 14px;
  box-shadow: var(--pg53-shadow);
}
.pg53-card-title { font-size: 1.55rem; font-weight: 700; margin: 0 0 8px; color: #fff; }
.pg53-card p { margin: 0 0 8px; color: var(--pg53-text); font-size: 1.35rem; }
.pg53-card .pg53-muted { color: var(--pg53-muted); }

.pg53-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.pg53-stat {
  background: var(--pg53-bg-3);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}
.pg53-stat-num {
  font-size: 2rem; font-weight: 800;
  color: var(--pg53-pink);
}
.pg53-stat-label { font-size: 1.15rem; color: var(--pg53-muted); }

/* ---------- Feature list ---------- */
.pg53-feature-list { list-style: none; margin: 0; padding: 0; }
.pg53-feature-list li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px dashed var(--pg53-border);
  font-size: 1.35rem;
}
.pg53-feature-list li:last-child { border-bottom: 0; }
.pg53-feature-list i { color: var(--pg53-pink); font-size: 1.5rem; margin-top: 2px; }

/* ---------- FAQ ---------- */
.pg53-faq-item {
  border-bottom: 1px solid var(--pg53-border);
  padding: 10px 0;
}
.pg53-faq-q { font-weight: 700; color: #fff; margin: 0 0 4px; font-size: 1.4rem; }
.pg53-faq-a { color: var(--pg53-muted); margin: 0; font-size: 1.3rem; }

/* ---------- Testimonials ---------- */
.pg53-testi {
  background: var(--pg53-bg-3);
  border-left: 3px solid var(--pg53-primary);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 10px;
}
.pg53-testi p { margin: 0 0 6px; font-size: 1.3rem; color: var(--pg53-text); }
.pg53-testi .pg53-testi-author { font-size: 1.15rem; color: var(--pg53-pink); font-weight: 700; }

/* ---------- Payment / winners ---------- */
.pg53-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pg53-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--pg53-bg-3); color: var(--pg53-text);
  padding: 6px 10px; border-radius: 999px; font-size: 1.2rem;
  border: 1px solid var(--pg53-border);
}
.pg53-chip i { color: var(--pg53-pink); }

.pg53-winner-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px dashed var(--pg53-border);
  font-size: 1.3rem;
}
.pg53-winner-row:last-child { border-bottom: 0; }
.pg53-winner-name { color: var(--pg53-pink); font-weight: 700; }
.pg53-winner-amount { color: #fff; font-weight: 800; }

/* ---------- SEO text links ---------- */
.pg53-seo-text { font-size: 1.3rem; color: var(--pg53-muted); line-height: 1.6; }
.pg53-seo-text a { color: var(--pg53-pink); font-weight: 600; }
.pg53-seo-text a:hover { color: #fff; text-decoration: underline; }

/* ---------- CTA banner ---------- */
.pg53-cta {
  background: linear-gradient(135deg, #B03060, #C71585);
  border-radius: var(--pg53-radius);
  padding: 18px;
  text-align: center;
  color: #fff;
  box-shadow: var(--pg53-shadow);
}
.pg53-cta h3 { margin: 0 0 6px; font-size: 1.7rem; color: #fff; }
.pg53-cta p { margin: 0 0 12px; font-size: 1.3rem; color: #FFE7EE; }
.pg53-cta .pg53-btn { background: #fff; color: var(--pg53-primary); }

/* ---------- Footer ---------- */
.pg53-footer {
  background: var(--pg53-bg-2);
  border-top: 1px solid var(--pg53-border);
  padding: 22px 0 14px;
  margin-top: 14px;
}
.pg53-footer-brand { color: var(--pg53-muted); font-size: 1.25rem; margin-bottom: 12px; }
.pg53-footer-links {
  display: flex; flex-wrap: wrap; gap: 8px 14px;
  margin-bottom: 12px;
}
.pg53-footer-links a { font-size: 1.2rem; color: var(--pg53-muted); }
.pg53-footer-links a:hover { color: var(--pg53-pink); }
.pg53-footer-copy { font-size: 1.1rem; color: var(--pg53-gray); }

/* ---------- Bottom navigation (fixed, mobile only) ---------- */
.pg53-bottomnav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  height: 62px;
  background: linear-gradient(180deg, #15202E, #0E1621);
  border-top: 1px solid var(--pg53-border);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  box-shadow: 0 -4px 14px rgba(0,0,0,0.4);
}
.pg53-bottomnav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--pg53-muted);
  font-size: 1.05rem;
  text-decoration: none;
  background: transparent;
  border: 0;
  min-width: 60px;
  min-height: 60px;
  transition: color .15s ease, transform .12s ease;
  position: relative;
}
.pg53-bottomnav-item i { font-size: 22px; }
.pg53-bottomnav-item:hover { color: var(--pg53-pink); }
.pg53-bottomnav-item:active { transform: scale(0.92); }
.pg53-bottomnav-item.pg53-bottomnav-active { color: var(--pg53-pink); }
.pg53-bottomnav-item.pg53-bottomnav-active::before {
  content: '';
  position: absolute; top: 0;
  width: 28px; height: 3px;
  background: var(--pg53-pink);
  border-radius: 0 0 3px 3px;
}
.pg53-bottomnav-center {
  background: linear-gradient(135deg, #C71585, #B03060);
  color: #fff;
  border-radius: 50%;
  width: 50px; height: 50px;
  margin-top: -18px;
  box-shadow: 0 4px 12px rgba(199,21,133,0.55);
  align-self: center;
  flex: 0 0 auto;
  min-width: 0;
}
.pg53-bottomnav-center i { font-size: 24px; }
.pg53-bottomnav-badge {
  position: absolute;
  top: 6px; right: 18px;
  background: var(--pg53-primary);
  color: #fff;
  font-size: 0.9rem;
  min-width: 16px; height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
}

@media (min-width: 769px) {
  .pg53-bottomnav { display: none; }
  .pg53-header { position: sticky; }
  main { padding-top: 0; }
}

/* ---------- Utilities ---------- */
.pg53-text-center { text-align: center; }
.pg53-mt-8 { margin-top: 8px; }
.pg53-mt-16 { margin-top: 16px; }
.pg53-mb-8 { margin-bottom: 8px; }
.pg53-mb-16 { margin-bottom: 16px; }
.pg53-hidden { display: none !important; }
.pg53-row { display: flex; gap: 10px; align-items: center; }
.pg53-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255,182,193,0.12);
  color: var(--pg53-pink);
  font-size: 1.15rem;
  font-weight: 700;
}
