/* mostplay basefiles stylesheet - prefix va81- */
/* Palette: #FFB3FF pink | #BAFFC9 mint | #FFA500 orange | #262626 dark */

:root {
  --va81-primary: #FFA500;
  --va81-pink: #FFB3FF;
  --va81-mint: #BAFFC9;
  --va81-bg: #262626;
  --va81-bg2: #1c1c1c;
  --va81-card: #303030;
  --va81-text: #f5f5f5;
  --va81-muted: #c9c9c9;
  --va81-radius: 14px;
}

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

html { font-size: 62.5%; }

body {
  margin: 0;
  font-family: "Hind Siliguri", "Noto Sans Bengali", "Segoe UI", system-ui, sans-serif;
  background: var(--va81-bg);
  color: var(--va81-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--va81-pink); text-decoration: none; }
a:hover { color: #ffffff; }

/* Layout container - mobile-first capped at 430px */
.va81-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 12px;
}

.va81-wrapper {
  min-height: 100vh;
  background: linear-gradient(180deg, #262626 0%, #1a1a1a 60%, #262626 100%);
}

main.va81-main { padding-bottom: 80px; }

/* Header */
.va81-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #1c1c1c 0%, #303030 100%);
  border-bottom: 2px solid var(--va81-primary);
  box-shadow: 0 2px 10px rgba(0,0,0,0.45);
}

.va81-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.va81-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 800;
  font-size: 1.9rem;
  letter-spacing: 0.5px;
}

.va81-brand img { width: 30px; height: 30px; border-radius: 8px; }

.va81-brand .va81-accent { color: var(--va81-primary); }

.va81-header-actions { display: flex; align-items: center; gap: 6px; }

.va81-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 1.35rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  font-family: inherit;
}

.va81-btn:active { transform: scale(0.95); }

.va81-btn-register {
  background: linear-gradient(90deg, var(--va81-primary) 0%, #ff7b00 100%);
  color: #1c1c1c;
  box-shadow: 0 3px 10px rgba(255,165,0,0.4);
}

.va81-btn-login {
  background: linear-gradient(90deg, var(--va81-mint) 0%, #6fe58a 100%);
  color: #0f3d1c;
  box-shadow: 0 3px 10px rgba(186,255,201,0.3);
}

.va81-icon-btn {
  background: transparent;
  color: #fff;
  font-size: 2rem;
  padding: 6px;
  border: 0;
  cursor: pointer;
}

/* Desktop nav (hidden on mobile) */
.va81-desktop-nav {
  display: none;
  gap: 18px;
  margin-top: 6px;
  padding-bottom: 8px;
  flex-wrap: wrap;
}

.va81-desktop-nav a {
  color: var(--va81-text);
  font-size: 1.35rem;
  font-weight: 600;
}

.va81-desktop-nav a:hover { color: var(--va81-primary); }

/* Mobile expandable menu */
.va81-mobile-menu {
  display: none;
  background: #1c1c1c;
  border-top: 1px solid #3a3a3a;
  padding: 10px 12px 14px;
}

.va81-mobile-menu.va81-menu-open { display: block; }

.va81-mobile-menu a {
  display: block;
  padding: 10px 6px;
  color: var(--va81-text);
  font-size: 1.45rem;
  border-bottom: 1px dashed #3a3a3a;
}

.va81-mobile-menu a:last-child { border-bottom: 0; }

/* Hero carousel */
.va81-hero {
  margin: 12px 0 4px;
  border-radius: var(--va81-radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}

.va81-slides { position: relative; aspect-ratio: 16/9; }

.va81-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  cursor: pointer;
}

.va81-slide img { width: 100%; height: 100%; object-fit: cover; }

.va81-slide.va81-active { opacity: 1; }

.va81-slide-cap {
  position: absolute;
  left: 12px;
  bottom: 10px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 1.3rem;
  font-weight: 700;
}

.va81-dots {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  gap: 5px;
}

.va81-dots span {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}

/* Section titles */
.va81-section { margin: 18px 0 6px; }

.va81-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  border-left: 4px solid var(--va81-primary);
  padding-left: 8px;
}

.va81-section-title .va81-ico { color: var(--va81-pink); font-size: 2.2rem; }
.va81-section-title .va81-sub { color: var(--va81-mint); font-weight: 600; font-size: 1.3rem; }

/* Game grid */
.va81-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.va81-card {
  background: var(--va81-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #404040;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.va81-card:active { transform: scale(0.96); border-color: var(--va81-primary); }

.va81-card-img {
  position: relative;
  aspect-ratio: 1/1;
  background: #000;
}

.va81-card-img img { width: 100%; height: 100%; object-fit: cover; }

.va81-card-tag {
  position: absolute;
  top: 5px;
  left: 5px;
  background: var(--va81-primary);
  color: #1c1c1c;
  font-size: 1rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 5px;
}

.va81-card-name {
  padding: 6px 8px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Info / promo blocks */
.va81-info-card {
  background: var(--va81-card);
  border-radius: var(--va81-radius);
  padding: 14px;
  margin: 10px 0;
  border: 1px solid #404040;
}

.va81-info-card h3 {
  margin: 0 0 6px;
  font-size: 1.55rem;
  color: var(--va81-primary);
}

.va81-info-card p {
  margin: 0 0 8px;
  color: var(--va81-muted);
  font-size: 1.35rem;
}

.va81-pill-link {
  display: inline-block;
  margin: 3px 4px 3px 0;
  color: var(--va81-pink);
  font-weight: 700;
  font-size: 1.35rem;
  text-decoration: underline;
}

/* Big promo CTA */
.va81-cta {
  background: linear-gradient(90deg, #ff7b00 0%, var(--va81-pink) 100%);
  border-radius: var(--va81-radius);
  padding: 14px;
  text-align: center;
  margin: 12px 0;
  color: #1c1c1c;
  cursor: pointer;
  box-shadow: 0 5px 14px rgba(255,123,0,0.35);
}

.va81-cta h3 { margin: 0 0 4px; font-size: 1.7rem; }
.va81-cta p { margin: 0; font-size: 1.3rem; font-weight: 600; }

/* Testimonials */
.va81-testimonials { display: grid; gap: 10px; }
.va81-testimonial {
  background: var(--va81-card);
  border-left: 4px solid var(--va81-mint);
  padding: 10px 12px;
  border-radius: 10px;
}
.va81-testimonial .va81-who { font-weight: 700; color: var(--va81-pink); font-size: 1.35rem; }
.va81-testimonial p { margin: 4px 0 0; font-size: 1.3rem; color: var(--va81-muted); }

/* Payment chips */
.va81-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.va81-chip {
  background: #1c1c1c;
  border: 1px solid #404040;
  color: var(--va81-text);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 1.25rem;
  font-weight: 600;
}

/* Winners showcase */
.va81-winners { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
.va81-winner {
  background: linear-gradient(135deg, #303030, #1c1c1c);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  border: 1px solid #404040;
}
.va81-winner .va81-wname { font-size: 1.25rem; color: #fff; font-weight: 700; }
.va81-winner .va81-wamt { font-size: 1.5rem; color: var(--va81-mint); font-weight: 800; }
.va81-winner .va81-wgame { font-size: 1.15rem; color: var(--va81-muted); }

/* FAQ */
.va81-faq-item {
  background: var(--va81-card);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  border: 1px solid #404040;
}
.va81-faq-item h4 { margin: 0 0 4px; font-size: 1.4rem; color: var(--va81-pink); }
.va81-faq-item p { margin: 0; font-size: 1.3rem; color: var(--va81-muted); }

/* Footer */
.va81-footer {
  background: #1a1a1a;
  border-top: 2px solid var(--va81-primary);
  margin-top: 18px;
  padding: 16px 12px 12px;
  color: var(--va81-muted);
  font-size: 1.3rem;
}

.va81-footer h4 { color: #fff; font-size: 1.45rem; margin: 8px 0 6px; }
.va81-footer-links { display: flex; flex-wrap: wrap; gap: 8px 14px; }
.va81-footer-links a { color: var(--va81-text); font-size: 1.3rem; }
.va81-footer-cta { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0; }
.va81-footer-copy { border-top: 1px solid #333; margin-top: 10px; padding-top: 8px; font-size: 1.2rem; color: #888; }

/* Mobile bottom navigation */
.va81-bottomnav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 62px;
  background: linear-gradient(180deg, #1c1c1c 0%, #000 100%);
  border-top: 2px solid var(--va81-primary);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  box-shadow: 0 -3px 12px rgba(0,0,0,0.5);
}

.va81-bottomnav-btn {
  flex: 1;
  min-width: 60px;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: #cfcfcf;
  font-size: 1.05rem;
  font-family: inherit;
  cursor: pointer;
  gap: 2px;
  transition: color .15s ease, transform .15s ease;
}

.va81-bottomnav-btn .va81-bico {
  font-size: 22px;
  line-height: 1;
}

.va81-bottomnav-btn.va81-current {
  color: var(--va81-primary);
}

.va81-bottomnav-btn.va81-promo {
  color: var(--va81-pink);
}

.va81-bottomnav-btn:active { transform: scale(0.9); }

.va81-bottomnav-btn.va81-promo .va81-bico {
  background: linear-gradient(135deg, var(--va81-primary), var(--va81-pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Desktop breakpoint */
@media (min-width: 769px) {
  body { background: #0f0f0f; }
  .va81-container { max-width: 960px; padding: 0 16px; }
  .va81-header-row { height: 64px; }
  .va81-brand { font-size: 2.4rem; }
  .va81-brand img { width: 38px; height: 38px; }
  .va81-desktop-nav { display: flex; }
  .va81-bottomnav { display: none; }
  main.va81-main { padding-bottom: 30px; }
  .va81-grid { grid-template-columns: repeat(6, 1fr); }
  .va81-winners { grid-template-columns: repeat(4,1fr); }
  .va81-testimonials { grid-template-columns: repeat(2,1fr); }
  .va81-btn { font-size: 1.5rem; padding: 9px 18px; }
}
