/* ==========================================================================
   BetPro Pakistan - Hero
   ========================================================================== */

.s-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 0;
}

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

.s-hero .l-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 0%, hsl(222 26% 10%) 0%, transparent 70%);
}

.s-hero .l-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
}

.s-hero .l-gridfade {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 75% at 50% 40%, transparent 40%, hsl(222 24% 5%) 100%);
}

.s-hero .l-bloom1 {
  position: absolute;
  top: -6rem;
  left: -6rem;
  width: 700px;
  height: 700px;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.08);
  filter: blur(180px);
  pointer-events: none;
}

.s-hero .l-bloom2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.025);
  filter: blur(160px);
  pointer-events: none;
}

.s-hero .l-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 100% at 50% 50%, transparent 50%, hsl(222 24% 3%) 100%);
}

.s-hero .l-topfade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7rem;
  background: linear-gradient(to bottom, hsl(222 24% 5%), transparent);
}

.hero-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.08);
  border: 1px solid hsl(var(--primary) / 0.22);
}

.hero-pill .dot {
  height: 0.375rem;
  width: 0.375rem;
  border-radius: 9999px;
  background: hsl(var(--primary));
}

.hero-pill span:last-child {
  color: hsl(var(--primary));
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.04;
  font-size: clamp(42px, 6vw, 72px);
}

.hero-title .green {
  color: hsl(var(--primary));
  display: block;
  text-shadow: 0 0 80px rgba(var(--glow), 0.28);
}

.hero-lead {
  margin-top: 1.5rem;
  font-size: 17px;
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  max-width: 520px;
}

.hero-ctas {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.hero-chips {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-chips .chip {
  color: hsl(var(--muted-foreground));
  font-size: 12px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.375rem 0.75rem;
}

.hero-chips .chip .icon {
  width: 0.75rem;
  height: 0.75rem;
  color: hsl(var(--primary) / 0.8);
}

.hero-cards {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.hero-card .card-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hc-live {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: hsl(222 22% 8%);
}

.hc-live .card-glow {
  background: radial-gradient(ellipse 80% 60% at 0% 0%, rgba(var(--glow), 0.05), transparent);
}

.hc-live .body {
  position: relative;
  padding: 1.25rem;
}

.hc-live .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.hc-live .head .live {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hc-live .head .live .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: hsl(var(--primary));
}

.hc-live .head .live span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsl(var(--primary));
}

.hc-live .head .loc {
  font-size: 11px;
  color: hsl(var(--muted-foreground));
}

.hc-live .feed-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
}

.hc-live .tx {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hc-live .tx-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: hsl(var(--muted-foreground));
}

.hc-live .tx-row b {
  font-weight: 700;
  color: hsl(var(--foreground) / 0.9);
}

.livefeed {
  overflow: hidden;
  height: 2.75rem;
  position: relative;
}

.livefeed .item {
  display: none;
  align-items: center;
  gap: 0.625rem;
  height: 2.75rem;
}

.livefeed .item.active {
  display: flex;
  animation: feed-in 0.35s ease-out;
}

.livefeed .avatar {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.15);
  border: 1px solid hsl(var(--primary) / 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: hsl(var(--primary));
}

.livefeed .meta {
  min-width: 0;
}

.livefeed .line {
  font-size: 12px;
  color: hsl(var(--foreground) / 0.9);
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.livefeed .line b {
  font-weight: 600;
}

.livefeed .line .city {
  color: hsl(var(--muted-foreground));
}

.livefeed .time {
  font-size: 11px;
  color: hsl(var(--muted-foreground));
  margin-top: 0.25rem;
}

.hc-verify {
  border: 1px solid hsl(var(--primary) / 0.18);
  background: hsl(var(--primary) / 0.04);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.hc-verify .card-glow {
  background: radial-gradient(ellipse 80% 80% at 100% 100%, rgba(var(--glow), 0.07), transparent);
}

.hc-verify .badge {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-xl);
  background: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hc-verify .badge .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
}

.hc-verify .txt {
  position: relative;
}

.hc-verify .txt p:first-child {
  font-size: 13px;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.hc-verify .txt p:last-child {
  font-size: 12px;
  color: hsl(var(--muted-foreground));
  margin-top: 0.25rem;
  line-height: 1.625;
}

.hc-rating {
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: hsl(222 22% 8%);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hc-rating .card-glow {
  background: radial-gradient(ellipse 80% 80% at 0% 100%, rgba(255, 255, 255, 0.015), transparent);
}

.hc-rating .label {
  position: relative;
}

.hc-rating .label > p {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.25rem;
}

.hc-rating .score {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.hc-rating .score b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.875rem;
  color: hsl(var(--foreground));
}

.hc-rating .score span {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.hc-rating .right {
  position: relative;
  text-align: right;
}

.hc-rating .stars {
  display: flex;
  gap: 0.125rem;
  justify-content: flex-end;
  margin-bottom: 0.25rem;
}

.hc-rating .right p {
  font-size: 11px;
  color: hsl(var(--muted-foreground));
}

.star {
  width: 1rem;
  height: 1rem;
  color: #facc15;
  fill: #facc15;
  stroke: #facc15;
}

.hero-stats {
  position: relative;
  z-index: 10;
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(to bottom, transparent, rgba(var(--glow), 0.025));
}

.hero-stats .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.hero-stats .stat {
  padding-block: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-start;
}

.hero-stats .stat:not(:first-child) {
  padding-left: 1.5rem;
}

.hero-stats .stat .v {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  letter-spacing: -0.02em;
}

.hero-stats .stat .k {
  font-size: 11px;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

@media (min-width: 640px) {
  .hero-stats .grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .hero-stats .stat {
    align-items: center;
    padding-left: 0;
  }
  .hero-stats .stat:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 420px;
  }
  .hero-cards {
    display: flex;
  }
}

@media (min-width: 1280px) {
  .hero-grid {
    gap: 5rem;
  }
}
