/* ==========================================================================
   BetPro Pakistan - Blog & article + WordPress post / content styles
   ========================================================================== */

.blogpost {
  min-height: 100vh;
  background: hsl(222 24% 5%);
  color: hsl(var(--foreground));
}

.bp-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bp-bg .l-base {
  position: absolute;
  inset: 0;
  background: hsl(222 24% 5%);
}

.bp-bg .l-dots {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 1) 1px, transparent 1px);
  background-size: 28px 28px;
}

.bp-bg .l-bloom {
  position: absolute;
  top: -8rem;
  left: 25%;
  width: 700px;
  height: 500px;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.05);
  filter: blur(160px);
}

.bp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: hsl(222 24% 5% / 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.bp-nav .row {
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bp-back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s ease;
}

.bp-back:hover {
  color: hsl(var(--foreground));
}

.bp-back .icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}

.bp-back:hover .icon {
  transform: translateX(-4px);
}

.bp-buy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(var(--glow), 0.2);
  transition: all 0.2s ease;
}

.bp-buy:hover {
  background: hsl(var(--primary) / 0.9);
}

.bp-buy .icon {
  width: 0.875rem;
  height: 0.875rem;
}

