:root {
    --accent: #ff004c;
}
body {
    margin: 0;
    font-family: poppins, sans-serif;
    background: #000;
    color: white;
}
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: saturate(180%) blur(8px);
    background: rgba(12,12,14,0.8);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}
.brand-badge {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff004c, #ff5c8a);
}
.brand-badge span{
    font-weight: 800;
    color: #fff;
}
.menu a {
    color: #fff;
    text-decoration: none;
    margin-left: 18px;
    font-weight: 500;
    opacity: .9;
}
.menu a:hover {
    color:#ff004c;
}
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}
.bg-video {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.hero-content {
    z-index: 1;
}
h1 {
    font-size: 3rem;
    margin: 0;
}
p {
    font-size: 1.2rem;
    color: #ddd;
}
.features {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}
.section-title{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.section-title span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
}
.posters { 
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 20px;
}
.poster {
    flex: 0 0 282px;
    border-radius: 14px;
    overflow: hidden;
    background: #111;
    aspect-ratio: 16/9;
    box-shadow: 0 0 20px rgba(255,255,255,0.05);
}
.poster img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.4s ease;
}
.poster:hover img {
    transform: scale(1.05);
}
.poster::-webkit-scrollbar {
    height: 6px;
}
.poster::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.2);
    border-radius: 3px;
}
.tag {
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 12px;
    letter-spacing: .5px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(6px);
}
.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0 18px;
}
.section-title span{
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background:var(--accent);
}
.logos-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}
.section-title h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 20px;
}
.logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 24px;
  place-items: center;
  padding: 20px 0;
}

.logo-card {
  background: var(--card, #18181b);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 8px;
  border-radius: 14px;
  width: 100%;
  display: grid;
  place-items: center;
  transition: transform .25s ease, border-color .25s ease;
}

.logo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, .2);
}

.logo-card img {
  max-width: 40px;
  height: 40px;
  object-fit: contain;
  filter: invert(1) grayscale(1);
}

.watch-live {
    padding: 60px 40px;
    color: #fff;
    text-align:left;
}
.watch-live h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
    color:#f3f3f3;
}
.live-scroll {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.live-card {
    min-width: 250px;
    background: rgba(30,30,30,.85);
    border-radius: 18px;
    padding: 15px;
    scroll-snap-align: start;
    transition: transform 0.3 ease, box-shadow 0.3s ease;
}
.live-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(255,255,255,0.1);
}
.live-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;
}
.tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    margin-bottom: 8px;
}
.tag.live {
    background: rgba(255,70,70,0.8);
}
.tag.upcoming {
    background: rgba(255,255,100,.08);
}
.watch-btn {
    display: inline-block;
    text-decoration: none;
    color:#fff;
    background: rgba(80,80,80,0.7);
    padding: 8px 15px;
    border-radius: 10px;
    margin-top: 8px;
    transition: background 0.3s ease;
}
.watch-btn:hover {
    background: rgba(255,255,255,.15);
}
.watch-live {
  position: relative;
  padding: 60px 40px;
  color: #fff;
  text-align: left;
  overflow: hidden;
}
.watch-live::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 0, 76, 0.15), transparent 40%),
              radial-gradient(circle at 70% 70%, rgba(0, 200, 255, 0.12), transparent 40%);
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}
.live-scroll, .live-card {
  position: relative;
  z-index: 1;
}
footer {
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,.08);
    background: #0a0a0c;
}
.foot  {
    max-width: 1200px;
    margin: auto;
    padding: 26px 20px;
    display: grid;
    gap: 8px;
}
.small {
    color: #9aa0a6;
    font-size: 14px;
}
.btn-watch-live {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    color: #fff;
    background: #ff004c;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease;
}
.btn-watch-live:hover {
    background: #ff3366;
    transform: translateY(-3px);
}
html {
    scroll-behavior: smooth;
}

