@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Inter", sans-serif;
}

/* Lenis + GSAP: native smooth scroll fights virtual scroll */
html.lenis {
  scroll-behavior: auto !important;
}

html.lenis,
html.lenis body {
  height: auto;
}

.streamTv {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Video */
.streamTv__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
}

.streamTv__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.streamTv__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent, #000);
}

/* Content */
.streamTv__content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  padding: 0 24px;
}

.streamTv__badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(227, 30, 36, 0.15);
  color: #e31e24;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(227, 30, 36, 0.3);
  margin-bottom: 24px;
}

.streamTv__title {
  font-size: 72px;
  line-height: 0.95;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  letter-spacing: -2px;
}

.streamTv__title span {
  color: rgba(255, 255, 255, 0.4);
}

.streamTv__desc {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
}

/* Buttons */
.streamTv__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.streamTv__btn.w-arrow {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  text-decoration: none;
}
.streamTv__btn.w-arrow.prev-arrow:hover .streamTv__btn-icon {
  transform: none;
}
.streamTv__btn.w-arrow:hover .streamTv__btn-icon {
  transform: translateX(5px);
}
.streamTv__btn .streamTv__btn-icon {
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.streamTv__btn {
  border: none;
  padding: 18px 34px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.streamTv__btn--primary {
  background: #e31e24;
  color: #fff;
}

.streamTv__btn--primary:hover {
  background: #c1191e;
}

.streamTv__btn--glass {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(10px);
}

.streamTv__btn--glass:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* Scroll Indicator */
.streamTv__scroll {
  position: fixed;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.streamTv__mouse {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.streamTv__dot {
  width: 4px;
  height: 10px;
  border-radius: 20px;
  background: #fff;
  animation: scrollDot 1.5s infinite;
}

@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(12px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Responsive */
@media (max-width: 991px) {
  .streamTv__title {
    font-size: 54px;
  }
  .streamTv__desc {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .streamTv__title {
    font-size: 38px;
  }
  .streamTv__desc {
    font-size: 16px;
  }
  .streamTv__btn {
    width: 100%;
    max-width: 320px;
  }
  .streamTv__actions {
    flex-direction: column;
    align-items: center;
  }
}
.streamTVFeatures {
  background: #000;
  padding: 120px 24px;
}

.streamTVFeatures__container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header */
.streamTVFeatures__header {
  text-align: center;
  margin-bottom: 100px;
}

.streamTVFeatures__title {
  font-size: 64px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.streamTVFeatures__title span {
  color: rgba(255, 255, 255, 0.4);
}

.streamTVFeatures__subtitle {
  max-width: 750px;
  margin: 0 auto;
  font-size: 22px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

/* Grid */
.streamTVFeatures__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Card */
.streamTVFeatures__card {
  position: relative;
  height: 600px;
  border-radius: 32px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.streamTVFeatures__bg {
  position: absolute;
  inset: 0;
}

.streamTVFeatures__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: transform 0.7s ease;
}

.streamTVFeatures__card:hover .streamTVFeatures__bg img {
  transform: scale(1.1);
}

.streamTVFeatures__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000, rgba(0, 0, 0, 0.4), transparent);
}

.streamTVFeatures__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.streamTVFeatures__icon {
  width: fit-content;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
  width: 72px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.streamTVFeatures__card:hover .streamTVFeatures__icon {
  background: #e31e24;
}

.streamTVFeatures__content h3 {
  font-size: 34px;
  color: #fff;
  margin-bottom: 16px;
}

.streamTVFeatures__content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 30px; 
}

.streamTVFeatures__content a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

/* Highlight */
.streamTVFeatures__highlight {
  position: relative;
  height: 800px;
  margin-top: 120px;
  border-radius: 40px;
  overflow: hidden;
  background: linear-gradient(135deg, #222, #000);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.streamTVFeatures__highlight-video {
  position: absolute;
  inset: 0;
}

.streamTVFeatures__highlight-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.streamTVFeatures__highlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #000, rgba(0, 0, 0, 0.6), transparent);
}

.streamTVFeatures__highlight-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  height: 100%;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.streamTVFeatures__tag {
  color: #e31e24;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.streamTVFeatures__highlight-content h2 {
  font-size: 72px;
  line-height: 1;
  color: #fff;
  margin-bottom: 30px;
}

.streamTVFeatures__highlight-content h2 span {
  color: rgba(255, 255, 255, 0.4);
}

.streamTVFeatures__highlight-content p {
  font-size: 22px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 50px;
}

.streamTVFeatures__stats {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.streamTVFeatures__stat strong {
  display: block;
  font-size: 34px;
  color: #fff;
}

.streamTVFeatures__stat span {
  font-size: 18px;
    color: rgba(255, 255, 255, 1);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.5;
    display: block;
    margin-top: 20px;
}

.streamTVFeatures__divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 991px) {
  .streamTVFeatures__grid {
    grid-template-columns: 1fr;
  }
  .streamTVFeatures__title,
  .streamTVFeatures__highlight-content h2 {
    font-size: 48px;
  }
  .streamTVFeatures__highlight {
    height: auto;
    min-height: 700px;
  }
  .streamTVFeatures__highlight-content {
    padding: 50px 30px;
  }
  .streamTVFeatures__content h3 {
    font-size: 24px;
  }
  .streamTVFeatures__content p {
    font-size: 16px;
  }
  .streamTVFeatures__icon {
    height: 60px;
    width: 60px;
  }
  .streamTVFeatures__icon img {
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 576px) {
  .streamTVFeatures__title,
  .streamTVFeatures__highlight-content h2 {
    font-size: 36px;
  }
  .streamTVFeatures__subtitle,
  .streamTVFeatures__highlight-content p {
    font-size: 18px;
  }
  .streamTVFeatures__stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .streamTVFeatures__divider {
    display: none;
  }
}
.streamTVContent {
  background: #000;
  padding: 120px 24px;
  overflow: hidden;
}

.streamTVContent__container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header */
.streamTVContent__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 70px;
  flex-wrap: wrap;
}

.streamTVContent__intro {
  max-width: 1170px;
}

.streamTVContent__title {
  font-size: 64px;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  margin-bottom: 24px;
}

.streamTVContent__title span {
  color: rgba(255, 255, 255, 0.4);
}

.streamTVContent__desc {
  font-size: 22px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.streamTVContent__viewAll {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

/* Grid */
.streamTVContent__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card */
.streamTVContent__card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: #111;
  cursor: pointer;
}

.streamTVContent__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: 0.7s ease;
}

.streamTVContent__card:hover img {
  transform: scale(1.1);
  opacity: 1;
}

.streamTVContent__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000, rgba(0, 0, 0, 0.2), transparent);
}

.streamTVContent__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  font-size: 10px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.streamTVContent__play > img {
  width: 18px;
  height: 18px;
}
.streamTVContent__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  opacity: 0;
  transform: scale(0.8);
  transition: 0.4s ease;
}

.streamTVContent__card:hover .streamTVContent__play {
  opacity: 1;
  transform: scale(1);
}

.streamTVContent__info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  z-index: 2;
}

.streamTVContent__type {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.streamTVContent__info h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
}

.streamTVContent__date {
  color: #e31e24;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}
.streamTVContent__date > img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}

/* Bottom cards */
.streamTVContent__bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px; 
}

.streamTVContent__featureCard {
  position: relative;
  height: 420px;
  border-radius: 32px;
  overflow: hidden;
  background: #111;
}

.streamTVContent__featureCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: 0.7s ease;
}

.streamTVContent__featureCard:hover img {
  transform: scale(1.05);
}

.streamTVContent__featureOverlay {
  position: absolute;
  inset: 0;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.streamTVContent__smallTag {
  color: #e31e24;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.streamTVContent__featureOverlay h3 {
  color: #fff;
  font-size: 34px;
  margin-bottom: 18px;
}

.streamTVContent__featureOverlay p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 500px;
}

.streamTVContent__featureOverlay a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 991px) {
  .streamTVContent__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .streamTVContent__bottom {
    grid-template-columns: 1fr;
  }
  .streamTVContent__title {
    font-size: 48px;
  }
}
@media (max-width: 576px) {
  .streamTVContent__grid {
    grid-template-columns: 1fr;
  }
  .streamTVContent__title {
    font-size: 36px;
  }
  .streamTVContent__desc {
    font-size: 18px;
  }
  .streamTVContent__featureOverlay {
    padding: 28px;
  }
  .streamTVContent__featureOverlay h3 {
    font-size: 28px;
  }
}
.streamTVFaq {
  background: #fff;
  padding: 120px 24px;
}

.streamTVFaq__container {
  max-width: 900px;
  margin: 0 auto;
}

/* Header */
.streamTVFaq__header {
  text-align: center;
  margin-bottom: 70px;
}

.streamTVFaq__title {
  font-size: 64px;
  line-height: 1;
  color: #000;
  font-weight: 700;
  margin-bottom: 24px;
}

.streamTVFaq__title span {
  color: rgba(0, 0, 0, 0.3);
}

.streamTVFaq__subtitle {
  font-size: 22px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 300;
}

/* FAQ List */
.streamTVFaq__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.streamTVFaq__item {
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  transition: 0.3s ease;
}

.streamTVFaq__item:hover {
  border-color: #cfcfcf;
}

.streamTVFaq__item--active {
  border-color: #e31e24;
  background: rgba(227, 30, 36, 0.04);
}

.streamTVFaq__question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 30px 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  cursor: pointer;
}

.streamTVFaq__question span {
  font-size: 24px;
  font-weight: 700;
  color: #000;
}

.streamTVFaq__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f2f2f2;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.streamTVFaq__icon--active {
  background: #e31e24;
  color: #fff;
}

/* Answer */
.streamTVFaq__answer {
  padding: 0 34px 30px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 300;
}

/* CTA */
.streamTVFaq__cta {
  margin-top: 70px;
  padding: 40px;
  border-radius: 32px;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.streamTVFaq__ctaText h3 {
  font-size: 32px;
  margin-bottom: 10px;
}

.streamTVFaq__ctaText p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  line-height: 1.6;
}

.streamTVFaq__ctaBtn {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 999px;
  background: #e31e24;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
  white-space: nowrap;
}

.streamTVFaq__ctaBtn:hover {
  background: #c1191e;
}

/* Responsive */
@media (max-width: 768px) {
  .streamTVFaq__title {
    font-size: 42px;
  }
  .streamTVFaq__subtitle {
    font-size: 18px;
  }
  .streamTVFaq__question {
    padding: 24px;
  }
  .streamTVFaq__question span {
    font-size: 20px;
  }
  .streamTVFaq__answer {
    padding: 0 24px 24px;
    font-size: 16px;
  }
  .streamTVFaq__cta {
    padding: 30px;
  }
  .streamTVFaq__ctaText h3 {
    font-size: 26px;
  }
}
@media (max-width: 576px) {
  .streamTVFaq__title {
    font-size: 34px;
  }
  .streamTVFaq__ctaBtn {
    width: 100%;
    text-align: center;
  }
}
a.link-with-arrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: #fff;
  transition: 0.3s ease;
  width: fit-content;
}
a.link-with-arrow:hover img {
  transform: translateX(5px);
}
a.link-with-arrow img {
  transition: 0.3s ease;
  width: auto;
  height: auto;
  opacity: 1;
}

.streamTVPlans {
  background: #f5f5f7;
  padding: 120px 24px;
}

.streamTVPlans__container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header */
.streamTVPlans__header {
  text-align: center;
  margin-bottom: 70px;
}

.streamTVPlans__title {
  font-size: 64px;
  line-height: 1;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
}

.streamTVPlans__title span {
  color: rgba(0, 0, 0, 0.3);
}

/* Toggle */
.streamTVPlans__toggle {
  display: inline-flex;
  padding: 5px;
  background: #e5e5e5;
  border-radius: 999px;
  gap: 4px;
}

.streamTVPlans__tab {
  border: 0;
  background: transparent;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.5);
  transition: 0.3s ease;
}

.streamTVPlans__tab--active {
  background: #fff;
  color: #000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

/* Grid */
.streamTVPlans__grid {
  max-width: 1170px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

/* Card */
.streamTVPlans__card {
  position: relative;
  background: #fff;
  padding: 42px;
  border-radius: 32px;
  border: 2px solid transparent;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.streamTVPlans__card--popular {
  border-color: #e31e24;
}

.streamTVPlans__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #e31e24;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 999px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.streamTVPlans__name {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #000;
}

.streamTVPlans__priceWrap {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 35px;
}

.streamTVPlans__price {
  font-size: 56px;
  font-weight: 700;
  color: #000;
}

.streamTVPlans__period {
  color: rgba(0, 0, 0, 0.45);
  font-weight: 600;
  margin-bottom: 8px;
}

.streamTVPlans__features {
  margin-bottom: 35px;
}

.streamTVPlans__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.streamTVPlans__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(227, 30, 36, 0.08);
  color: #e31e24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.streamTVPlans__feature span:last-child {
  color: rgba(0, 0, 0, 0.72);
  font-weight: 500;
}

.streamTVPlans__btn {
  width: 100%;
  border: 0;
  padding: 18px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}
.streamTVPlans__btn.w-arrow {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.streamTVPlans__btn.w-arrow:hover .streamTVPlans__btn-icon {
  transform: translateX(5px);
}
.streamTVPlans__btn .streamTVPlans__btn-icon {
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.streamTVPlans__btn--red {
  background: #e31e24;
  color: #fff;
}

.streamTVPlans__btn--red:hover {
  background: #c1191e;
}

.streamTVPlans__btn--black {
  background: #000;
  color: #fff;
}

.streamTVPlans__btn--black:hover {
  background: #222;
}

/* Note */
.streamTVPlans__note {
  margin-top: 60px;
  text-align: center;
}

.streamTVPlans__note p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 500;
}

.streamTVPlans__set {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.streamTVPlans__set.active {
  display: grid;
    max-width: 75%;
    margin: 0 auto;
}

@media (max-width: 991px) {
  .streamTVPlans__set,
  .streamTVPlans__set.active {
    grid-template-columns: 1fr;
  }
}
/* Responsive */
@media (max-width: 991px) {
  .streamTVPlans__grid {
    grid-template-columns: 1fr;
  }
  .streamTVPlans__title {
    font-size: 48px;
  }
}
@media (max-width: 576px) {
  .streamTVPlans__title {
    font-size: 34px;
  }
  .streamTVPlans__tab {
    padding: 10px 18px;
    font-size: 13px;
  }
  .streamTVPlans__card {
    padding: 28px;
  }
  .streamTVPlans__price {
    font-size: 42px;
  }
  .streamTVPlans__name {
    font-size: 26px;
  }
}
.streamTVPlans {
  background: #fff;
  padding: 120px 24px 40px;
}

.streamTVPlans__container {
  max-width: 1400px;
  margin: 0 auto;
}

.streamTVPlans__header {
  text-align: center;
}

/* Heading */
.streamTVPlans__title {
  font-size: 64px;
  line-height: 1;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
  letter-spacing: -2px;
}

.streamTVPlans__title span {
  color: rgba(0, 0, 0, 0.3);
}

/* Tabs */
.streamTVPlans__tabs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  background: #e5e5e5;
  border-radius: 999px;
}

.streamTVPlans__tab {
  border: 0;
  background: transparent;
  padding: 14px 34px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: 0.3s ease;
}

.streamTVPlans__tab:hover {
  color: #000;
}

.streamTVPlans__tab--active {
  background: #fff;
  color: #000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.streamTVPlans__note {
  padding-bottom: 120px;
}

/* Responsive */
@media (max-width: 768px) {
  .streamTVPlans__title {
    font-size: 42px;
  }
  .streamTVPlans__tab {
    padding: 12px 24px;
    font-size: 13px;
  }
  .streamTVPlans__note {
    padding-bottom: 80px;
  }
}
@media (max-width: 576px) {
  .streamTVPlans__title {
    font-size: 34px;
  }
  .streamTVPlans__tabs {
    width: 100%;
    display: flex;
  }
  .streamTVPlans__tab {
    flex: 1;
    padding: 12px 10px;
  }
  .streamTVPlans__note {
    padding-bottom: 60px;
  }
}
.streamTVPopup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  max-width: 90vw;
  max-height: 90vh;
  margin: auto;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
.streamTVPopup.active {
  opacity: 1;
  visibility: visible;
}
.streamTVPopup .streamTVPopup__close {
  position: absolute;
  width: 30px;
  top: 20px;
  right: 20px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  z-index: 9999;
}

.streamTVPopup2.active {
  opacity: 1;
  visibility: visible;
}

.streamTVPopup__container > video {
  object-fit: contain;
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .streamTVPopup {
    max-width: 90vw;
    max-height: fit-content;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .streamTVPopup__container > video {
    max-width: 100%;
    height: auto;
  }
}/*# sourceMappingURL=main.css.map */

.streamtvfooter ul {
  margin: 0 auto;
  padding: 20px 10px;
  max-width: 1170px;
  list-style: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.streamtvfooter ul li a {
  text-decoration: none;
  color: #e31e24;
  font-size: 12px;
  font-weight: 600;
}

.streamTVPopup2 {
  max-width: 800px;
    max-height: fit-content;
}

.streamTVPopup2 .streamTVPopup__container table {
  width: 100%;
  border-radius: 24px;
  color: #fff;
}

.streamTVPopup2 .streamTVPopup__container table td {
  padding: 20px;
    border: none; 
}

@media screen and (min-width: 992px) {
  .streamTv {
    justify-content: flex-start;
    text-align: left;
  }

  .streamTv .streamTv__content {
    margin-left: 5%;
  }

  .streamTVFeatures__content {
    justify-content: center;
    max-width: 55%;
  }
}