/* ============================================================
   pjpk.homes - view-27c9.css
   All custom classes / variables use prefix: v95a-
   Mobile-first: 320-430px canvas. Centered on wider screens.
   Palette: #262626 / #DA70D6 / #5F9EA0 / #9400D3 / #8B008B
   ============================================================ */

:root {
  --v95a-bg: #262626;
  --v95a-bg-soft: #2f2a33;
  --v95a-bg-card: #342c3a;
  --v95a-orchid: #DA70D6;
  --v95a-teal: #5F9EA0;
  --v95a-violet: #9400D3;
  --v95a-magenta: #8B008B;
  --v95a-text: #f6eef7;
  --v95a-text-dim: #c9b8cf;
  --v95a-border: rgba(218, 112, 214, 0.22);
  --v95a-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
  --v95a-radius: 14px;
  --v95a-header-h: 58px;
  --v95a-bottom-h: 64px;
  --v95a-max: 480px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--v95a-bg);
  color: var(--v95a-text);
  font-family: "Hind Siliguri", "Noto Sans Bengali", "Segoe UI", Roboto, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(900px 480px at 50% -120px, rgba(148, 0, 211, 0.28), transparent 60%),
    radial-gradient(700px 380px at 110% 10%, rgba(218, 112, 214, 0.18), transparent 60%),
    var(--v95a-bg);
}

a { color: var(--v95a-orchid); text-decoration: none; }
a:hover { color: #ffd4f6; }
img { max-width: 100%; display: block; }

.v95a-wrap {
  max-width: var(--v95a-max);
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  background: linear-gradient(180deg, rgba(47,42,51,0.55) 0%, rgba(38,38,38,0) 60%);
  padding-bottom: calc(var(--v95a-bottom-h) + 24px);
}

/* ===================== Header ===================== */
.v95a-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--v95a-header-h);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  background: linear-gradient(90deg, rgba(38,38,38,0.96), rgba(60,30,70,0.96));
  border-bottom: 1px solid var(--v95a-border);
  backdrop-filter: blur(8px);
}

.v95a-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 1;
  min-width: 0;
}

.v95a-brand .v95a-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--v95a-violet), var(--v95a-orchid));
  padding: 2px;
  box-shadow: 0 4px 12px rgba(148, 0, 211, 0.45);
  flex: 0 0 auto;
}

.v95a-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.v95a-brand-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.4px;
  background: linear-gradient(90deg, #ffd4f6, var(--v95a-orchid));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.v95a-brand-tag {
  font-size: 10px;
  color: var(--v95a-text-dim);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.v95a-head-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.v95a-btn {
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  min-height: 38px;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.v95a-btn:active { transform: scale(0.96); }

.v95a-btn-login {
  background: transparent;
  color: var(--v95a-text);
  border: 1px solid var(--v95a-orchid);
}

.v95a-btn-register {
  background: linear-gradient(90deg, var(--v95a-violet), var(--v95a-magenta));
  color: #fff;
  box-shadow: 0 6px 16px rgba(148, 0, 211, 0.45);
}

.v95a-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(218, 112, 214, 0.12);
  border: 1px solid var(--v95a-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--v95a-orchid);
}
.v95a-icon-btn svg { width: 20px; height: 20px; }

/* ===================== Drawer Menu ===================== */
.v95a-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 90;
}
.v95a-menu-open .v95a-menu-overlay { opacity: 1; visibility: visible; }
body.v95a-menu-visible .v95a-menu-overlay { opacity: 1; visibility: visible; }

.v95a-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 78%;
  max-width: 320px;
  background: linear-gradient(180deg, #2c2434, #1f1a25);
  border-left: 1px solid var(--v95a-border);
  transform: translateX(105%);
  transition: transform 0.28s ease;
  z-index: 100;
  padding: 18px 16px;
  overflow-y: auto;
}
.v95a-menu-open { transform: translateX(0); }
body.v95a-menu-visible .v95a-menu { transform: translateX(0); }

.v95a-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.v95a-menu-head h3 {
  margin: 0;
  font-size: 17px;
  color: var(--v95a-orchid);
}
.v95a-menu-close {
  background: transparent;
  border: none;
  color: var(--v95a-text);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
}

.v95a-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.v95a-menu-list li {
  border-bottom: 1px solid rgba(218, 112, 214, 0.12);
}
.v95a-menu-list a {
  display: block;
  padding: 14px 6px;
  color: var(--v95a-text);
  font-weight: 600;
  font-size: 15px;
}
.v95a-menu-list a:hover { color: var(--v95a-orchid); padding-left: 10px; }

.v95a-menu-cta {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

body.v95a-noscroll { overflow: hidden; }

/* ===================== Hero Carousel ===================== */
.v95a-hero {
  margin: 12px;
  border-radius: var(--v95a-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--v95a-shadow);
}
.v95a-carousel { position: relative; }
.v95a-slide {
  display: none;
  cursor: pointer;
  position: relative;
}
.v95a-slide-active { display: block; }
.v95a-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.v95a-slide-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px;
  background: linear-gradient(0deg, rgba(0,0,0,0.78), transparent);
  color: #fff;
}
.v95a-slide-cap h2 {
  margin: 0 0 4px;
  font-size: 17px;
  color: #fff;
}
.v95a-slide-cap p {
  margin: 0;
  font-size: 12px;
  color: #f0d9f0;
}

.v95a-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.5);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v95a-prev { left: 8px; }
.v95a-next { right: 8px; }

.v95a-dots {
  position: absolute;
  bottom: 8px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}
.v95a-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.v95a-dot-active {
  background: var(--v95a-orchid);
  transform: scale(1.35);
}

/* ===================== Quick CTA Strip ===================== */
.v95a-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 14px 12px;
}
.v95a-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 14px 8px;
  border-radius: var(--v95a-radius);
  background: linear-gradient(135deg, rgba(148,0,211,0.32), rgba(139,0,139,0.32));
  border: 1px solid var(--v95a-border);
  color: var(--v95a-text);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}
.v95a-cta .v95a-cta-ic {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
  color: var(--v95a-orchid);
}
.v95a-cta .v95a-cta-ic svg { width: 22px; height: 22px; }
.v95a-cta small {
  font-weight: 500;
  font-size: 11px;
  color: var(--v95a-text-dim);
  margin-top: 2px;
}

/* ===================== Category chips ===================== */
.v95a-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 12px 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.v95a-chips::-webkit-scrollbar { display: none; }
.v95a-chip {
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(218,112,214,0.10);
  border: 1px solid var(--v95a-border);
  color: var(--v95a-text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.v95a-chip:hover, .v95a-chip:focus {
  background: linear-gradient(90deg, var(--v95a-violet), var(--v95a-orchid));
  color: #fff;
}

/* ===================== Section ===================== */
.v95a-section {
  margin: 18px 12px 0;
}
.v95a-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.v95a-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.v95a-section-title::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 18px;
  background: linear-gradient(180deg, var(--v95a-orchid), var(--v95a-violet));
  border-radius: 3px;
}
.v95a-section-more {
  font-size: 12px;
  color: var(--v95a-orchid);
  font-weight: 600;
}

/* ===================== Game Grid ===================== */
.v95a-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.v95a-game {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  background: var(--v95a-bg-card);
  border: 1px solid var(--v95a-border);
  border-radius: 12px;
  padding: 6px 4px 8px;
  transition: transform 0.14s ease, box-shadow 0.14s ease;
  text-align: center;
}
.v95a-game:active { transform: scale(0.95); }
.v95a-game img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 9px;
  background: #1c1720;
}
.v95a-game-name {
  margin-top: 5px;
  font-size: 11px;
  color: var(--v95a-text);
  line-height: 1.2;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 26px;
}

@media (min-width: 360px) {
  .v95a-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
}
@media (min-width: 410px) {
  .v95a-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ===================== Info / Content blocks ===================== */
.v95a-card {
  background: var(--v95a-bg-soft);
  border: 1px solid var(--v95a-border);
  border-radius: var(--v95a-radius);
  padding: 16px;
  margin-top: 12px;
}
.v95a-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--v95a-orchid);
}
.v95a-card p {
  margin: 0 0 10px;
  color: var(--v95a-text-dim);
  font-size: 14px;
}
.v95a-card p:last-child { margin-bottom: 0; }

.v95a-prose {
  font-size: 14px;
  color: var(--v95a-text-dim);
  line-height: 1.8;
}
.v95a-prose h2 {
  color: #fff;
  font-size: 19px;
  margin: 22px 0 8px;
}
.v95a-prose h3 {
  color: var(--v95a-orchid);
  font-size: 16px;
  margin: 16px 0 6px;
}
.v95a-prose p { margin: 0 0 12px; }
.v95a-prose ul { padding-left: 18px; margin: 0 0 12px; }
.v95a-prose li { margin-bottom: 6px; }

/* Inline promo link inside prose */
.v95a-link {
  color: var(--v95a-orchid);
  font-weight: 700;
  border-bottom: 1px dashed var(--v95a-orchid);
}

/* ===================== Testimonials ===================== */
.v95a-reviews {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.v95a-review {
  background: var(--v95a-bg-card);
  border-left: 3px solid var(--v95a-orchid);
  border-radius: 10px;
  padding: 12px;
}
.v95a-review p { margin: 0 0 6px; font-size: 13px; color: var(--v95a-text-dim); }
.v95a-review .v95a-reviewer {
  font-size: 12px;
  color: var(--v95a-orchid);
  font-weight: 700;
}

/* ===================== How-to steps ===================== */
.v95a-steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 8px;
}
.v95a-steps li {
  counter-increment: step;
  position: relative;
  padding: 10px 12px 10px 42px;
  background: rgba(148,0,211,0.10);
  border-radius: 10px;
  font-size: 13px;
  color: var(--v95a-text-dim);
}
.v95a-steps li::before {
  content: counter(step);
  position: absolute;
  left: 10px; top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--v95a-violet), var(--v95a-orchid));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

/* ===================== Extended footer ===================== */
.v95a-ext-footer {
  margin: 22px 12px 0;
  background: linear-gradient(180deg, rgba(47,42,51,0.85), rgba(38,38,38,0.85));
  border: 1px solid var(--v95a-border);
  border-radius: var(--v95a-radius);
  padding: 18px 14px;
}
.v95a-ext-footer h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 16px;
}
.v95a-ext-footer p {
  margin: 0 0 14px;
  color: var(--v95a-text-dim);
  font-size: 13px;
  line-height: 1.7;
}
.v95a-ext-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
  margin-bottom: 14px;
}
.v95a-ext-grid a {
  font-size: 13px;
  color: var(--v95a-text);
  padding: 4px 0;
}
.v95a-ext-grid a:hover { color: var(--v95a-orchid); }

.v95a-promo-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin: 14px 0;
}
.v95a-promo-btn {
  padding: 10px 4px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(148,0,211,0.45), rgba(139,0,139,0.45));
  color: #fff;
  border: 1px solid var(--v95a-border);
  cursor: pointer;
}
.v95a-promo-btn small { display: block; font-size: 9px; opacity: 0.85; font-weight: 500; }

.v95a-disclaimer {
  margin-top: 14px;
  padding: 10px 12px;
  background: rgba(95,158,160,0.10);
  border-left: 3px solid var(--v95a-teal);
  border-radius: 8px;
  font-size: 11px;
  color: var(--v95a-text-dim);
  line-height: 1.6;
}

/* ===================== Footer ===================== */
.v95a-footer {
  margin: 18px 12px 0;
  padding: 14px 0 4px;
  text-align: center;
  font-size: 12px;
  color: var(--v95a-text-dim);
  border-top: 1px solid var(--v95a-border);
}

/* ===================== Bottom Nav ===================== */
.v95a-bottom {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: flex;
  justify-content: center;
}
.v95a-bottom-inner {
  width: 100%;
  max-width: var(--v95a-max);
  height: var(--v95a-bottom-h);
  display: flex;
  background: linear-gradient(180deg, rgba(44,36,52,0.98), rgba(28,22,34,0.98));
  border-top: 1px solid var(--v95a-border);
  backdrop-filter: blur(10px);
  box-shadow: 0 -6px 18px rgba(0,0,0,0.4);
}
.v95a-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--v95a-text-dim);
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color 0.18s ease;
}
.v95a-nav-item .v95a-nav-ic {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: rgba(218,112,214,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--v95a-orchid);
  transition: background 0.18s, transform 0.18s;
}
.v95a-nav-item .v95a-nav-ic svg { width: 18px; height: 18px; }

.v95a-nav-item.v95a-nav-active {
  color: #fff;
}
.v95a-nav-item.v95a-nav-active .v95a-nav-ic {
  background: linear-gradient(135deg, var(--v95a-violet), var(--v95a-orchid));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(148,0,211,0.5);
}
.v95a-nav-item:hover { color: #fff; }
.v95a-nav-item:hover .v95a-nav-ic {
  background: linear-gradient(135deg, var(--v95a-magenta), var(--v95a-orchid));
  color: #fff;
}

.v95a-nav-item.v95a-nav-promo .v95a-nav-ic {
  background: linear-gradient(135deg, var(--v95a-violet), var(--v95a-magenta));
  color: #ffd4f6;
}

/* Center fab-style promo highlight */
.v95a-nav-item.v95a-nav-fab .v95a-nav-ic {
  width: 40px; height: 40px;
  margin-top: -12px;
  background: linear-gradient(135deg, var(--v95a-orchid), var(--v95a-violet));
  color: #fff;
  box-shadow: 0 6px 16px rgba(148,0,211,0.55);
}

/* Hide on wide screens is NOT required: keep mobile canvas centered */
