/* Football Highlights Hero – theme shortcode */

.fhl-hero {
  --fl-primary: #00e676;
  --fl-accent2: #ffd600;
  --fl-muted: #7a9abf;
  --fl-border-bright: #2e6090;
  --fl-text: #e8f0fe;
  --fl-radius: 12px;

  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #071828 0%, #0d2137 60%, #071422 100%);
  border: 1px solid var(--fl-border-bright);
  border-radius: var(--fl-radius);
  padding: 40px 40px 30px;
  text-align: center;
}

.fhl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 58, 95, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.35) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: wc-gridMove 20s linear infinite;
  pointer-events: none;
}

.fhl-hero__inner {
  position: relative;
  z-index: 2;
}

.fhl-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid rgba(0, 230, 118, 0.35);
  color: var(--fl-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.fhl-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fl-primary);
  animation: fhl-pulse 1.4s ease-in-out infinite;
}

.fhl-hero__title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: var(--fl-text);
  margin: 0 0 16px;
  line-height: 1.15;
}

.fhl-hero__title span {
  color: var(--fl-primary);
}

.fhl-hero__subtitle {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 15px;
  color: var(--fl-muted);
  line-height: 1.7;
}

.fhl-hero__stats {
  display: inline-flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.fhl-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.fhl-hero__stat-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--fl-accent2);
  line-height: 1;
}

.fhl-hero__stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--fl-muted);
}

@keyframes fhl-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

@media (max-width: 749px) {
  .fhl-hero {
    padding: 36px 20px 32px;
  }

  .fhl-hero__stats {
    gap: 24px;
  }
}
