@import url("https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700;800;900&display=swap");

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  font-family: "Inter", Arial, sans-serif;
  background: #030303;
  color: #fff;
  overflow-x: hidden;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 36, 36, 0.28), transparent 36%),
    radial-gradient(circle at 20% 76%, rgba(255, 255, 255, 0.1), transparent 22%),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    #050505;
  background-size: auto, auto, 72px 72px, 72px 72px;
}

.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #020202 0%, transparent 18%, transparent 82%, #020202 100%),
    linear-gradient(180deg, rgba(0,0,0,.45), transparent 45%, #050505 100%);
}

.navbar {
  width: min(1180px, calc(100% - 48px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 35, 35, .85));
}

.site-nav__logo {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: block;
  background-image: url("../img/logo.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: drop-shadow(0 0 18px rgba(255, 35, 35, .85));
}

.brand span span { color: #ff2d32; }

.navbar nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.navbar nav a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .4px;
  transition: .2s ease;
}

.navbar nav a:hover { color: #fff; }

.vip-btn {
  padding: 15px 25px;
  border-radius: 999px;
  color: #fff;
  background: #ff2a2f;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 0 35px rgba(255, 38, 43, .5);
}

.stream-page {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0 90px;
}

.stream-hero {
  text-align: center;
  padding: 30px 0 55px;
}

.stream-hero h1 {
  margin-top: 28px;
  font-size: clamp(54px, 7vw, 96px);
  line-height: .92;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -4px;
  text-shadow: 0 0 28px rgba(255,255,255,.45);
}

.stream-hero h1 strong {
  color: #ff282d;
  text-shadow: 0 0 30px rgba(255, 38, 43, .6);
}

.stream-hero p {
  width: min(720px, 100%);
  margin: 28px auto 0;
  color: rgba(255,255,255,.68);
  font-size: 17px;
  line-height: 1.6;
}

.stream-panel,
.content-section {
  padding: 28px;
  margin-bottom: 34px;
  border: 1px solid rgba(255, 55, 65, .38);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 35, 40, .08), rgba(255, 255, 255, .025)),
    rgba(8, 6, 10, .68);
  box-shadow:
    inset 0 0 40px rgba(255, 35, 35, .04),
    0 25px 80px rgba(0,0,0,.35);
}

.panel-header,
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.panel-kicker {
  display: block;
  margin-bottom: 8px;
  color: #ff2a2f;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
}

.panel-header h2,
.section-header h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -2px;
}

.section-header p {
  margin-top: 12px;
  color: rgba(255,255,255,.62);
  font-size: 16px;
}

.panel-link {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
}

.stream-frame {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 55, 65, .45);
  background: #000;
  box-shadow: 0 0 42px rgba(255, 38, 43, .18);
}

.stream-frame::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.stream-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.vod-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.vod-card {
  overflow: hidden;
  border: 1px solid rgba(255, 55, 65, .42);
  border-radius: 18px;
  background: rgba(8,8,12,.76);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
  transition: .2s ease;
}

.vod-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 55, 65, .95);
  box-shadow: 0 0 34px rgba(255, 38, 43, .28);
}

.vod-card__thumb {
  position: relative;
  padding-top: 56%;
  background: rgba(255,255,255,.04);
  overflow: hidden;
}

.vod-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vod-card__title {
  padding: 14px;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.section-empty,
.vod-grid p {
  color: rgba(255,255,255,.62);
  font-size: 15px;
}

.site-footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-kicker {
  display: block;
  margin-bottom: 8px;
  color: #ff2a2f;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
}

.site-footer strong {
  display: block;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.footer-socials {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 55, 65, .42);
  border-radius: 999px;
  background: rgba(8,8,12,.7);
  color: rgba(255,255,255,.82);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .6px;
  transition: .2s ease;
}

.footer-social:hover {
  color: #fff;
  border-color: rgba(255, 55, 65, .95);
  background: rgba(255, 42, 47, .18);
  box-shadow: 0 0 24px rgba(255, 38, 43, .22);
  transform: translateY(-2px);
}

.footer-social__icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
}

.footer-social__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.kick-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(8,8,12,.78);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  box-shadow: 0 0 28px rgba(0,0,0,.34);
  backdrop-filter: blur(10px);
}

.kick-status__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #facc15;
  box-shadow: 0 0 14px #facc15;
}

.kick-status--live .kick-status__dot {
  background: #22c55e;
  box-shadow: 0 0 16px #22c55e;
}

.kick-status--offline .kick-status__dot {
  background: #ff2a2f;
  box-shadow: 0 0 16px #ff2a2f;
}

@media (max-width: 1000px) {
  .vod-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .navbar {
    height: auto;
    padding: 22px 0;
    gap: 18px;
    flex-wrap: wrap;
  }

  .navbar nav {
    width: 100%;
    order: 3;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .stream-page { padding-top: 45px; }
}

@media (max-width: 680px) {
  .navbar,
  .stream-page,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .stream-hero h1 { letter-spacing: -2px; }
  .stream-panel,
  .content-section { padding: 18px; }
  .vod-grid { grid-template-columns: 1fr; }
  .panel-header,
  .section-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-socials { justify-content: flex-start; }
  .vip-btn { padding: 13px 18px; }
}


/* FIXED FOOTER SOCIALS + KICK STATUS */
.footer-social__icon img, .social-pill__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}
.kick-status--loading .kick-status__dot {
  background: #facc15;
  box-shadow: 0 0 14px #facc15;
  animation: kickPulse 1.1s infinite ease-in-out;
}
.kick-status--live .kick-status__dot {
  background: #22c55e;
  box-shadow: 0 0 16px #22c55e;
}
.kick-status--offline .kick-status__dot {
  background: #ff2a2f;
  box-shadow: 0 0 16px #ff2a2f;
}
@keyframes kickPulse {
  0%, 100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.35); opacity: 1; }
}
