.hero {
  display: flex;
  gap: 30px;
  padding: 25px;
  border-radius: 20px;
  background: linear-gradient(145deg, #0f0f0f, #090909);
  border: 1px solid #1a1a1a;
  min-height: 320px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(255, 255, 255, 0.08),
    transparent 60%
  );
  opacity: 0.3;
}

/* ===== LEFT IMAGE ===== */

.hero-left {
  width: 260px;
  height: 260px;
  flex-shrink: 0;
  position: relative;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

/* ===== RIGHT CONTENT ===== */

.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}

.hero-tag {
  font-size: 11px;
  color: #e9e9e9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(to right, #fff, #bbb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #888;
}

/* ===== LIVE INDICATOR ===== */

.hero-tag {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== META INFO ===== */

.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #9c9c9c;
}

/* ===== LISTENERS STYLE ===== */

.listeners {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #fff;
  padding: 6px 12px;
  border-radius: 40px;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, #1f2937, #111);
  backdrop-filter: blur(6px);
  gap: 6px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-left {
    width: 100%;
    height: 200px;
  }

  .hero-img {
    border-radius: 14px;
  }

  .hero h1 {
    font-size: 28px;
  }
}

@media (max-width: 500px) {
  .hero h1 {
    font-size: 28px;
  }
}
