/* Inner page styles */

/* ===== Split section ===== */
.bp-split-section__img-wrap {
  position: relative;
  border-radius: var(--bp-radius-2xl);
  overflow: hidden;
}

.bp-split-section__img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  display: block;
  border-radius: var(--bp-radius-2xl);
  transition: transform 0.6s ease;
}

.bp-split-section__img-wrap:hover .bp-split-section__img {
  transform: scale(1.03);
}

.bp-split-section__img-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--bp-radius-2xl);
  background: linear-gradient(135deg, rgba(var(--bp-primary-rgb), 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.bp-split-section__img-placeholder {
  width: 100%;
  min-height: 22rem;
  border-radius: var(--bp-radius-2xl);
  background: rgba(var(--bp-primary-rgb), 0.06);
  border: 2px dashed rgba(var(--bp-primary-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(var(--bp-primary-rgb), 0.3);
}

/* ===== Consistent page hero ===== */
.bp-page-hero {
  padding-top: 3rem;
  padding-bottom: 4rem;
  position: relative;
}

.bp-page-hero--cricket {
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #08130d 0%, #050a07 100%);
  padding-top: 4rem;
  padding-bottom: 4.5rem;
}

.bp-page-hero--cricket::before {
  content: "";
  position: absolute;
  inset: -12%;
  background: url("../images/pattren.png") center top / 620px auto repeat;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: radial-gradient(ellipse 88% 56% at 50% 42%, transparent 0%, transparent 30%, var(--bp-black) 64%, var(--bp-black) 100%);
  mask-image: radial-gradient(ellipse 88% 56% at 50% 42%, transparent 0%, transparent 30%, var(--bp-black) 64%, var(--bp-black) 100%);
}

.bp-page-hero--cricket::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 7, 0.30) 0%, rgba(5, 10, 7, 0.78) 100%),
    radial-gradient(ellipse 70% 70% at 50% 0%, rgba(22, 163, 74, 0.08) 0%, transparent 62%),
    radial-gradient(ellipse 50% 50% at 95% 20%, rgba(250, 204, 21, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.bp-page-hero--cricket > .container {
  position: relative;
  z-index: 1;
}

.bp-page-hero--cricket .bp-page-hero__title {
  color: var(--bp-white-soft);
}

.bp-page-hero--cricket .bp-page-hero__subtitle {
  color: rgba(var(--bp-white-soft-rgb), 0.72);
}

.bp-cricket-hero {
  max-width: 78rem;
}

.bp-page-hero__title--cricket {
  max-width: 12ch;
  margin-left: auto;
  margin-right: auto;
}

.bp-page-hero__subtitle--cricket {
  max-width: 38rem;
}

.bp-page-hero__lead {
  max-width: 42rem;
  margin: 0 auto 1.75rem;
  color: var(--bp-muted);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.bp-cricket-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.bp-cricket-hero__stat {
  min-width: 8.5rem;
  padding: 0.875rem 1rem;
  border-radius: var(--bp-radius-xl);
  border: 1px solid rgba(var(--bp-primary-rgb), 0.14);
  background: rgba(15, 23, 18, 0.35);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.bp-cricket-hero__stat-value {
  font-family: var(--bp-font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bp-white-soft);
  line-height: 1.1;
}

.bp-cricket-hero__stat-label {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(var(--bp-white-soft-rgb), 0.58);
}

.bp-cricket-hero-card {
  position: relative;
  max-width: 31rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(var(--bp-primary-rgb), 0.18);
  background:
    linear-gradient(180deg, rgba(12, 18, 14, 0.92) 0%, rgba(8, 13, 10, 0.98) 100%);
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(var(--bp-primary-rgb), 0.08);
  overflow: hidden;
}

.bp-cricket-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 45% at 50% 0%, rgba(var(--bp-primary-rgb), 0.12) 0%, transparent 62%),
    radial-gradient(ellipse 50% 55% at 100% 100%, rgba(var(--bp-accent-rgb), 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.bp-cricket-hero-card > * {
  position: relative;
  z-index: 1;
}

.bp-cricket-hero-card__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bp-primary);
}

.bp-cricket-hero-card__time,
.bp-cricket-hero-card__venue {
  color: rgba(var(--bp-white-soft-rgb), 0.76);
  font-size: 0.95rem;
}

.bp-cricket-hero-card__teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.bp-cricket-hero-card__team {
  max-width: 38%;
  font-family: var(--bp-font-heading);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--bp-white-soft);
}

.bp-cricket-hero-card__team--right {
  text-align: right;
}

.bp-cricket-hero-card__vs {
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(var(--bp-primary-rgb), 0.12);
  border: 1px solid rgba(var(--bp-primary-rgb), 0.22);
  color: rgba(var(--bp-white-soft-rgb), 0.72);
  font-size: 0.85rem;
  font-weight: 700;
}

.bp-cricket-hero-card__odd {
  padding: 0.9rem 0.75rem;
  border-radius: var(--bp-radius-xl);
  text-align: center;
  background: rgba(var(--bp-white-rgb), 0.03);
  border: 1px solid rgba(var(--bp-white-rgb), 0.06);
}

.bp-cricket-hero-card__odd .fw-bold {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.15rem;
  color: var(--bp-white-soft);
}

@media (min-width: 992px) {
  .bp-page-hero__title--cricket,
  .bp-page-hero__subtitle--cricket,
  .bp-page-hero__lead {
    margin-left: 0;
    margin-right: 0;
  }

  .bp-cricket-hero__stats {
    justify-content: flex-start;
  }
}

.bp-page-hero--legal {
  padding-bottom: 3rem;
}

/* ===== Legal content ===== */
.bp-legal-content {
  max-width: 52rem;
  margin: 0 auto;
  padding-bottom: 5rem;
}

.bp-legal-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--bp-foreground);
}

.bp-legal-body p {
  color: var(--bp-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.bp-legal-body a {
  color: var(--bp-primary);
  text-decoration: underline;
}

/* ===== WhatsApp social icon accent ===== */
.bp-footer__social-wa {
  background: rgba(var(--bp-success-rgb), 0.1);
  border-color: rgba(var(--bp-success-rgb), 0.3);
  color: var(--bp-success);
}

.bp-footer__social-wa:hover {
  background: rgba(var(--bp-success-rgb), 0.22);
  border-color: rgba(var(--bp-success-rgb), 0.5);
}

