/* playtime app - style.css
   Prefix: v71b-
   All custom classes / variables use the v71b- prefix.
   Mobile-first, max-width 430px container, rem units (root 62.5%). */

:root {
  --v71b-pink: #FF1493;
  --v71b-gold: #FFBF00;
  --v71b-orange: #FFB74D;
  --v71b-lightpink: #FFCCCB;
  --v71b-dark: #0C0C0C;
  --v71b-bg: #0C0C0C;
  --v71b-bg2: #161016;
  --v71b-card: #1c1420;
  --v71b-text: #FFEAF4;
  --v71b-muted: #c9a9bb;
  --v71b-primary: #FF1493;
  --v71b-accent: #FFBF00;
  --v71b-radius: 14px;
  --v71b-shadow: 0 8px 24px rgba(255, 20, 147, 0.18);
}

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

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

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, system-ui, sans-serif;
  background: radial-gradient(120% 80% at 50% -10%, #2a0a1d 0%, var(--v71b-bg) 60%);
  color: var(--v71b-text);
  line-height: 1.5;
  font-size: 1.6rem;
  overflow-x: hidden;
}

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

.v71b-wrapper {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
}

.v71b-container {
  padding: 0 14px;
}

main { display: block; padding-bottom: 96px; }

/* ===== Header ===== */
.v71b-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(12,12,12,0.96), rgba(12,12,12,0.86));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,20,147,0.25);
}
.v71b-header-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
}
.v71b-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.v71b-logo img { width: 30px; height: 30px; border-radius: 8px; }
.v71b-logo b {
  font-size: 1.7rem;
  color: var(--v71b-text);
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v71b-logo b span { color: var(--v71b-pink); }
.v71b-btn {
  border: 0;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  min-height: 40px;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.v71b-btn:active { transform: scale(0.95); }
.v71b-btn-login {
  background: transparent;
  color: var(--v71b-text);
  border: 1px solid var(--v71b-gold);
}
.v71b-btn-register {
  background: linear-gradient(135deg, var(--v71b-pink), var(--v71b-orange));
  color: #1a0010;
  box-shadow: var(--v71b-shadow);
}
.v71b-btn-block {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  font-size: 1.6rem;
  font-weight: 800;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--v71b-pink), var(--v71b-gold));
  color: #1a0010;
  border: 0;
  cursor: pointer;
}
.v71b-menu-btn {
  background: transparent;
  border: 1px solid rgba(255,20,147,0.4);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  color: var(--v71b-text);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.v71b-menu-btn.v71b-active { background: rgba(255,20,147,0.18); }

/* ===== Mobile menu ===== */
.v71b-mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  background: rgba(12,12,12,0.98);
  border-bottom: 1px solid rgba(255,20,147,0.2);
}
.v71b-mobile-menu.v71b-menu-open { max-height: 460px; }
.v71b-mobile-menu .v71b-container { padding: 6px 14px 12px; }
.v71b-mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 8px;
  color: var(--v71b-text);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 1.45rem;
}
.v71b-mobile-menu a:last-child { border-bottom: 0; }
.v71b-mobile-menu a i { color: var(--v71b-gold); width: 22px; text-align: center; }

/* ===== Hero carousel ===== */
.v71b-hero {
  position: relative;
  margin: 12px 0;
  border-radius: var(--v71b-radius);
  overflow: hidden;
  box-shadow: var(--v71b-shadow);
}
.v71b-slides { position: relative; aspect-ratio: 16/9; }
.v71b-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  cursor: pointer;
}
.v71b-slide.v71b-active { opacity: 1; }
.v71b-slide img { width: 100%; height: 100%; object-fit: cover; }
.v71b-slide-caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(12,12,12,0.55);
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 1.3rem;
  color: #fff;
}
.v71b-dots {
  position: absolute;
  right: 12px;
  bottom: 10px;
  display: flex;
  gap: 6px;
}
.v71b-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
}
.v71b-dot.v71b-active { background: var(--v71b-pink); }

/* ===== Section title ===== */
.v71b-section {
  margin: 22px 0;
}
.v71b-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.v71b-h1 {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.25;
  background: linear-gradient(90deg, #fff 0%, var(--v71b-gold) 60%, var(--v71b-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 14px 0 6px;
}
.v71b-h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.v71b-h2 i { color: var(--v71b-pink); }
.v71b-h3 {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--v71b-gold);
  margin: 12px 0 6px;
}
.v71b-lead {
  color: var(--v71b-muted);
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.v71b-more {
  color: var(--v71b-gold);
  font-size: 1.3rem;
  font-weight: 600;
}

/* ===== Category tag ===== */
.v71b-cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: linear-gradient(135deg, var(--v71b-pink), #b8005f);
  border-radius: 999px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ===== Game grid ===== */
.v71b-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.v71b-card {
  background: var(--v71b-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  display: block;
}
.v71b-card:active { transform: scale(0.96); }
.v71b-card-img {
  aspect-ratio: 1/1;
  background: #0a0a0a;
  position: relative;
}
.v71b-card-img img { width: 100%; height: 100%; object-fit: cover; }
.v71b-card-name {
  padding: 6px 8px;
  font-size: 1.2rem;
  text-align: center;
  color: var(--v71b-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v71b-card-hot {
  position: absolute;
  top: 4px; left: 4px;
  background: var(--v71b-pink);
  color: #fff;
  font-size: 1rem;
  padding: 1px 6px;
  border-radius: 6px;
  font-weight: 700;
}

/* ===== Content blocks ===== */
.v71b-block {
  background: var(--v71b-card);
  border: 1px solid rgba(255,20,147,0.15);
  border-radius: var(--v71b-radius);
  padding: 14px;
  margin: 12px 0;
}
.v71b-block p { color: var(--v71b-muted); margin-bottom: 8px; font-size: 1.4rem; }
.v71b-block p a { color: var(--v71b-gold); font-weight: 600; }
.v71b-block ul { padding-left: 18px; color: var(--v71b-muted); }
.v71b-block ul li { margin-bottom: 5px; font-size: 1.38rem; }
.v71b-block .v71b-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 9px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--v71b-pink), var(--v71b-orange));
  color: #1a0010;
  font-weight: 800;
  font-size: 1.35rem;
}

.v71b-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.v71b-feature {
  background: linear-gradient(160deg, rgba(255,20,147,0.12), rgba(255,191,0,0.05));
  border: 1px solid rgba(255,20,147,0.2);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}
.v71b-feature i { font-size: 2.4rem; color: var(--v71b-gold); margin-bottom: 6px; }
.v71b-feature b { display: block; color: #fff; font-size: 1.4rem; margin-bottom: 3px; }
.v71b-feature span { color: var(--v71b-muted); font-size: 1.2rem; }

/* ===== Testimonial ===== */
.v71b-testi {
  background: var(--v71b-card);
  border-left: 3px solid var(--v71b-gold);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
}
.v71b-testi b { color: var(--v71b-gold); font-size: 1.4rem; }
.v71b-testi .v71b-stars { color: var(--v71b-orange); font-size: 1.3rem; margin: 2px 0; }
.v71b-testi p { color: var(--v71b-muted); font-size: 1.35rem; margin-top: 4px; }

/* ===== Payment / winners ===== */
.v71b-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.v71b-chip {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,191,0,0.3);
  color: var(--v71b-text);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.v71b-winner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  background: rgba(255,20,147,0.08);
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 1.3rem;
}
.v71b-winner b { color: var(--v71b-gold); }

/* ===== CTA banner ===== */
.v71b-cta-banner {
  background: linear-gradient(135deg, var(--v71b-pink), var(--v71b-orange));
  border-radius: var(--v71b-radius);
  padding: 16px;
  text-align: center;
  color: #1a0010;
  margin: 16px 0;
}
.v71b-cta-banner h3 { color: #1a0010; font-size: 1.8rem; margin-bottom: 4px; }
.v71b-cta-banner p { font-size: 1.3rem; margin-bottom: 10px; }
.v71b-cta-banner .v71b-btn-block {
  background: #0C0C0C;
  color: var(--v71b-gold);
}

/* ===== Footer ===== */
.v71b-footer {
  background: #080508;
  border-top: 1px solid rgba(255,20,147,0.2);
  padding: 20px 14px 30px;
  color: var(--v71b-muted);
}
.v71b-footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.v71b-footer-brand img { width: 28px; height: 28px; border-radius: 6px; }
.v71b-footer-brand b { color: #fff; font-size: 1.6rem; }
.v71b-footer p { font-size: 1.3rem; line-height: 1.6; margin-bottom: 10px; }
.v71b-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}
.v71b-footer-links a {
  font-size: 1.25rem;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--v71b-text);
}
.v71b-footer-copyright {
  font-size: 1.2rem;
  color: #7a6675;
  text-align: center;
  margin-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 12px;
}

/* ===== Bottom nav ===== */
.v71b-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(15,8,12,0.98), #0C0C0C);
  border-top: 1px solid rgba(255,20,147,0.3);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  height: 62px;
}
.v71b-bottom-nav-btn {
  flex: 1;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: 0;
  color: var(--v71b-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  transition: color .15s ease, transform .15s ease;
  text-decoration: none;
  position: relative;
}
.v71b-bottom-nav-btn .v71b-nav-icon { font-size: 2.2rem; line-height: 1; }
.v71b-bottom-nav-btn .v71b-nav-label { font-size: 1.05rem; }
.v71b-bottom-nav-btn:active { transform: scale(0.9); }
.v71b-bottom-nav-btn.v71b-current,
.v71b-bottom-nav-btn.promo { color: var(--v71b-pink); }
.v71b-bottom-nav-btn.promo .v71b-nav-icon { color: var(--v71b-gold); }
.v71b-bottom-nav-btn.v71b-current::after {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 3px;
  background: var(--v71b-pink);
  border-radius: 0 0 4px 4px;
}

/* ===== Back to top ===== */
.v71b-to-top {
  position: fixed;
  right: 14px;
  bottom: 76px;
  z-index: 999;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--v71b-pink);
  color: #fff;
  border: 0;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--v71b-shadow);
  cursor: pointer;
}

/* ===== Reveal animation ===== */
.v71b-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
}
.v71b-reveal.v71b-visible { opacity: 1; transform: translateY(0); }

/* ===== Desktop (hidden bottom nav) ===== */
@media (min-width: 769px) {
  .v71b-bottom-nav { display: none; }
  .v71b-wrapper { max-width: 720px; }
  main { padding-bottom: 30px; }
  .v71b-grid { grid-template-columns: repeat(5, 1fr); }
  .v71b-feature-grid { grid-template-columns: repeat(4, 1fr); }
}
