/* 68win vip - style-108f.css
 * All custom classes use the pg10- prefix.
 * Palette: #DDA0DD plum, #3A3A3A dark, #3C3C3C darker, #800080 purple, light text.
 * Mobile-first: root font 62.5%, max content width 430px on phones.
 */

:root {
  --pg10-primary: #800080;
  --pg10-plum: #DDA0DD;
  --pg10-bg: #3A3A3A;
  --pg10-bg-deep: #3C3C3C;
  --pg10-text: #FFFFFF;
  --pg10-muted: #DDA0DD;
  --pg10-accent: #DDA0DD;
  --pg10-card: #4a4a4a;
  --pg10-radius: 1.2rem;
  --pg10-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(160deg, var(--pg10-bg-deep), var(--pg10-bg));
  color: var(--pg10-text);
  line-height: 1.5;
  font-size: 1.6rem;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  overflow-x: hidden;
}

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

/* ===== Header ===== */
.pg10-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--pg10-bg-deep), var(--pg10-primary));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  border-bottom: 0.2rem solid var(--pg10-plum);
  box-shadow: var(--pg10-shadow);
}

.pg10-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--pg10-text);
  font-weight: 700;
  font-size: 1.7rem;
}
.pg10-brand img { width: 3rem; height: 3rem; border-radius: 0.6rem; }
.pg10-brand span { background: linear-gradient(90deg, #fff, var(--pg10-plum)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.pg10-header-actions { display: flex; align-items: center; gap: 0.6rem; }

.pg10-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 1.4rem;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  min-height: 3.6rem;
}
.pg10-btn:active { transform: scale(0.95); }
.pg10-btn-login {
  background: transparent;
  color: var(--pg10-text);
  border: 0.15rem solid var(--pg10-plum);
}
.pg10-btn-register {
  background: linear-gradient(90deg, var(--pg10-primary), var(--pg10-plum));
  color: #fff;
  box-shadow: 0 0.3rem 0.8rem rgba(128, 0, 128, 0.4);
}

.pg10-menu-btn {
  background: transparent;
  border: 0.1rem solid var(--pg10-plum);
  color: var(--pg10-plum);
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 0.8rem;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ===== Mobile expandable menu ===== */
.pg10-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--pg10-bg-deep);
  z-index: 9999;
  padding: 6rem 1.6rem 2rem;
  transition: right 0.3s ease;
  overflow-y: auto;
  border-left: 0.2rem solid var(--pg10-plum);
}
.pg10-mobile-menu.pg10-menu-open { right: 0; }
.pg10-mobile-menu h3 { color: var(--pg10-plum); font-size: 1.5rem; margin: 1.4rem 0 0.6rem; text-transform: uppercase; }
.pg10-mobile-menu a {
  display: block;
  color: var(--pg10-text);
  padding: 0.9rem 0.4rem;
  border-bottom: 0.1rem dashed rgba(221, 160, 221, 0.3);
  font-size: 1.4rem;
}
.pg10-mobile-menu a:hover { color: var(--pg10-plum); }
.pg10-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}
.pg10-menu-overlay.pg10-menu-open { display: block; }

/* ===== Layout ===== */
.pg10-container { width: 100%; padding: 0 1rem; }
.pg10-wrapper { padding: 1.4rem 1rem; }
.pg10-section { padding: 2rem 1rem; }
.pg10-section-title {
  font-size: 2rem;
  color: var(--pg10-plum);
  margin-bottom: 1rem;
  border-left: 0.4rem solid var(--pg10-primary);
  padding-left: 0.8rem;
}

main { padding-bottom: 80px; }

/* ===== Hero / Carousel ===== */
.pg10-hero {
  position: relative;
  border-radius: var(--pg10-radius);
  overflow: hidden;
  margin: 1rem;
  box-shadow: var(--pg10-shadow);
}
.pg10-slides { position: relative; }
.pg10-slide {
  display: none;
  position: relative;
}
.pg10-slide.pg10-slide-active { display: block; }
.pg10-slide img { width: 100%; height: auto; cursor: pointer; }
.pg10-slide-cap {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(60, 60, 60, 0.75);
  padding: 0.6rem 1rem;
  border-radius: 0.8rem;
  font-size: 1.3rem;
  color: #fff;
}
.pg10-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 0;
  background: rgba(0, 0, 0, 0.25);
}
.pg10-dot {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  border: none;
}
.pg10-dot.pg10-dot-active { background: var(--pg10-plum); }

/* ===== Promo link text styles ===== */
.pg10-promo-link {
  color: var(--pg10-plum);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}
.pg10-promo-box {
  background: linear-gradient(90deg, rgba(128,0,128,0.4), rgba(221,160,221,0.25));
  border: 0.15rem solid var(--pg10-plum);
  border-radius: var(--pg10-radius);
  padding: 1.2rem;
  margin: 1rem 0;
  text-align: center;
}
.pg10-promo-box .pg10-btn {
  margin-top: 0.6rem;
  font-size: 1.4rem;
  padding: 0.9rem 2rem;
}

/* ===== Game grid ===== */
.pg10-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0;
}
.pg10-filter-btn {
  background: var(--pg10-card);
  color: var(--pg10-text);
  border: 0.1rem solid rgba(221, 160, 221, 0.3);
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  cursor: pointer;
}
.pg10-filter-btn.pg10-filter-active {
  background: var(--pg10-primary);
  border-color: var(--pg10-plum);
}
.pg10-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.pg10-card {
  background: var(--pg10-card);
  border-radius: 0.9rem;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s ease;
  border: 0.1rem solid rgba(221, 160, 221, 0.15);
}
.pg10-card:active { transform: scale(0.96); }
.pg10-card img { width: 100%; height: auto; }
.pg10-card-name {
  font-size: 1.1rem;
  padding: 0.4rem 0.3rem;
  color: var(--pg10-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pg10-cat-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 1.8rem 0 0.8rem;
}
.pg10-cat-head h2 { font-size: 1.7rem; color: var(--pg10-plum); }
.pg10-cat-head i { color: var(--pg10-primary); font-size: 2rem; }

/* ===== Info / Features blocks ===== */
.pg10-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.pg10-info-card {
  background: var(--pg10-card);
  border-radius: var(--pg10-radius);
  padding: 1.2rem;
  border-left: 0.4rem solid var(--pg10-primary);
}
.pg10-info-card h3 { color: var(--pg10-plum); margin-bottom: 0.5rem; font-size: 1.5rem; }
.pg10-info-card p { font-size: 1.3rem; color: #eee; }

.pg10-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
.pg10-feature {
  background: rgba(128, 0, 128, 0.15);
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
}
.pg10-feature i { font-size: 2.4rem; color: var(--pg10-plum); }
.pg10-feature span { display: block; margin-top: 0.4rem; font-size: 1.2rem; }

/* ===== Testimonials ===== */
.pg10-testimonial {
  background: var(--pg10-card);
  border-radius: var(--pg10-radius);
  padding: 1rem;
  margin-bottom: 0.8rem;
  border-left: 0.3rem solid var(--pg10-plum);
}
.pg10-testimonial .pg10-stars { color: #FFD700; }
.pg10-testimonial p { font-size: 1.3rem; margin: 0.4rem 0; }
.pg10-testimonial .pg10-author { font-size: 1.2rem; color: var(--pg10-plum); }

/* ===== Payment row ===== */
.pg10-pay-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.pg10-pay-row span {
  background: var(--pg10-card);
  border-radius: 0.8rem;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
  border: 0.1rem solid rgba(221, 160, 221, 0.3);
}

/* ===== Winners ===== */
.pg10-winner {
  display: flex;
  justify-content: space-between;
  background: var(--pg10-card);
  padding: 0.7rem 1rem;
  border-radius: 0.7rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.pg10-winner b { color: var(--pg10-plum); }

/* ===== FAQ ===== */
.pg10-faq-item {
  background: var(--pg10-card);
  border-radius: 0.8rem;
  margin-bottom: 0.6rem;
  padding: 1rem;
}
.pg10-faq-item h3 { color: var(--pg10-plum); font-size: 1.4rem; margin-bottom: 0.3rem; }
.pg10-faq-item p { font-size: 1.25rem; color: #eee; }

/* ===== Footer ===== */
.pg10-footer {
  background: var(--pg10-bg-deep);
  padding: 2rem 1rem;
  border-top: 0.2rem solid var(--pg10-primary);
}
.pg10-footer h4 { color: var(--pg10-plum); font-size: 1.4rem; margin: 0.8rem 0 0.4rem; }
.pg10-footer p { font-size: 1.2rem; color: #ddd; }
.pg10-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.6rem 0;
}
.pg10-footer-links a {
  background: rgba(128, 0, 128, 0.2);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 1rem;
  font-size: 1.15rem;
}
.pg10-footer-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.8rem 0;
}
.pg10-copyright {
  text-align: center;
  font-size: 1.1rem;
  color: #bbb;
  margin-top: 1rem;
}

/* ===== Bottom navigation ===== */
.pg10-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 6rem;
  background: linear-gradient(90deg, var(--pg10-bg-deep), var(--pg10-primary));
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  border-top: 0.2rem solid var(--pg10-plum);
  box-shadow: 0 -0.3rem 1rem rgba(0, 0, 0, 0.4);
}
.pg10-bottom-nav button, .pg10-bottom-nav a {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--pg10-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-width: 60px;
  min-height: 56px;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, color 0.15s ease;
}
.pg10-bottom-nav button:active, .pg10-bottom-nav a:active { transform: scale(0.88); }
.pg10-bottom-nav .material-icons,
.pg10-bottom-nav i { font-size: 2.2rem; color: var(--pg10-accent); }
.pg10-bottom-nav .pg10-nav-active i { color: #fff; }
.pg10-bottom-nav .pg10-nav-badge {
  font-size: 0.9rem;
  color: #fff;
}

/* ===== Back to top ===== */
.pg10-back-top {
  position: fixed;
  right: 1.2rem;
  bottom: 7.5rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--pg10-primary);
  color: #fff;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 999;
}
.pg10-back-top.pg10-back-show { opacity: 1; pointer-events: auto; }

/* ===== Desktop ===== */
@media (min-width: 769px) {
  body { max-width: 100%; }
  .pg10-bottom-nav { display: none; }
  main { padding-bottom: 0; }
  .pg10-grid { grid-template-columns: repeat(6, 1fr); }
  .pg10-info-grid { grid-template-columns: repeat(3, 1fr); }
  .pg10-features { grid-template-columns: repeat(4, 1fr); }
  .pg10-hero { max-width: 900px; margin: 1rem auto; }
}
