/* =====================================================
   YouTube Live Banner � landing page
   Mirrors kick-live-banner.css exactly; red accent swap
===================================================== */

.yt-live-banner-wrapper-main {
  position: relative;
  width: min(980px, calc(100% - 2rem));
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border: 2px solid rgba(255, 60, 60, 0.35);
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(180, 0, 0, 0.35), rgba(80, 0, 30, 0.35));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset, 0 10px 24px rgba(0, 0, 0, 0.28), 0 0 26px rgba(255, 60, 60, 0.2);
}

.yt-live-banner-wrapper-main::before {
  content: "YouTube Live";
  display: inline-block;
  position: absolute;
  left: 12px;
  top: 9px;
  z-index: 2;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.28);
  font-family: "Londrina Solid", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: #fdfdfd;
  text-transform: uppercase;
}

.yt-live-banner-wrapper-main::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
}

.yt-live-banner-main {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 56px;
  width: max-content;
  padding: 2.8rem 0.85rem 0.78rem;
  white-space: nowrap;
}

.yt-banner-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(8, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fdfdfd;
  text-decoration: none;
  font-family: "Londrina Solid", sans-serif;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.45);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.yt-banner-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 60, 60, 0.55);
  box-shadow: 0 0 12px rgba(255, 60, 60, 0.22);
}

.yt-banner-title {
  color: #fdfdfd;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  text-transform: lowercase;
}

.yt-banner-item:hover .yt-banner-title {
  color: #ffb3b3;
}

.yt-banner-viewers {
  color: #ff6b6b;
  font-size: 0.95rem;
  opacity: 0.95;
}

.yt-banner-empty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.6rem;
  padding-top: 0.2rem;
  color: #fdfdfd;
  font-family: "Londrina Solid", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}

@media screen and (max-width: 575px) {
  .yt-live-banner-wrapper-main {
    width: calc(100% - 1rem);
    margin-bottom: 1rem;
  }
}
