/* Base Reset and Overflow Fix */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background: #000;
  color: #fff;
}

#scrollTopBtn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 45px;
  height: 45px;
  background: #ff6b35;
  color: #fff;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99999999;
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}

.video-section {
  position: relative;
  /* CHANGED: Use min-height instead of fixed height so it grows with content */
  min-height: 80vh;
  height: auto;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}

.content-wrapper {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
}

.logo {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: #fdb913;
  border: 3px solid #fdb913;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-icon::before {
  content: "Z";
  position: absolute;
  font-size: 32px;
  font-weight: 900;
  color: #000;
  font-family: Arial, sans-serif;
}

.logo-text {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  margin-left: -2px;
}

.nav-links {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  padding: 8px;
  backdrop-filter: blur(10px);
}

.nav-links a {
  text-decoration: none;
  color: #333;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.nav-links a.active,
.nav-links a:hover {
  background: #fdb913;
  color: #000;
}

.free-trial-btn {
  background: #fdb913;
  color: #000;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(253, 185, 19, 0.4);
}

.free-trial-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253, 185, 19, 0.6);
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.menu-btn span {
  width: 30px;
  height: 3px;
  background: #fdb913;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero-section {
  padding: 100px 60px 60px 60px;
  max-width: 1400px;
  height: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tagline {
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.main-heading {
  font-size: 90px;
  font-weight: 900;
  color: #fdb913;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -2px;
  transition: color 0.3s ease;
}

.main-heading:hover {
  color: #ffe013;
  cursor: pointer;
}

.description {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 50px;
  font-weight: 400;
}

.cta-button {
  background: #fdb913;
  color: #000;
  padding: 20px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(253, 185, 19, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
  border: none;
  cursor: pointer;
  animation: popup 2s ease-in-out infinite;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(253, 185, 19, 0.7);
}
.white-btn {
  background: #fff;
  color: #000;
}
.white-btn:hover {
  background: #fdb913;
}

/* Content Showcase */
.content-showcase {
  background: #000;
  padding: 80px 60px;
  text-align: center;
  overflow: hidden;
  max-width: 100vw;
}

.streaming-logos-container {
  width: 100%;
  overflow: hidden;
  margin-bottom: 60px;
  max-width: 100vw;
}

.streaming-logos {
  display: flex;
  gap: 40px;
  animation: slideLogos 20s linear infinite;
}

@keyframes slideLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.streaming-logos:hover {
  animation-play-state: paused;
}

.streaming-logos img {
  height: 60px;
  width: 60px;
  min-width: 120px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.streaming-logos img:hover {
  opacity: 1;
}

.showcase-title {
  font-size: 60px;
  font-weight: 900;
  color: #fdb913;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.showcase-subtitle {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 60px;
}

.categories-container {
  width: 100%;
  overflow: hidden;
  padding: 0 20px;
  max-width: 100vw;
}

.content-categories {
  display: flex;
  gap: 30px;
  animation: slideCategories 20s linear infinite;
}

@keyframes slideCategories {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.content-categories:hover {
  animation-play-state: paused;
}

.category-card {
  position: relative;
  width: 280px;
  height: 160px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  flex-shrink: 0;
}

.category-card:hover {
  transform: translateY(-20px) scale(1.15);
  z-index: 10;
  box-shadow: 0 30px 80px rgba(253, 185, 19, 0.6);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.category-overlay h3 {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 3px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 16px 28px rgba(37, 211, 102, 0.7);
}

.whatsapp-icon {
  width: 35px;
  height: 35px;
}

/* Services Container */
.services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  background: #000;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 30px;
  color: #000;
  border: 3px solid #ffa500;
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
}

.icon-devices {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}
.icon-epg {
  background: linear-gradient(135deg, #1e90ff 0%, #4169e1 100%);
}
.icon-support {
  background: linear-gradient(135deg, #32cd32 0%, #00ff7f 100%);
}
.icon-uptime {
  background: linear-gradient(135deg, #ff4500 0%, #ff6347 100%);
}
.icon-secure {
  background: linear-gradient(135deg, #4682b4 0%, #5f9ea0 100%);
}
.icon-premium {
  background: linear-gradient(135deg, #9acd32 0%, #7cfc00 100%);
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.cta-section {
  position: sticky;
  top: 60px;
  color: #fff;
}

.cta-badge {
  color: #ffa500;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  text-transform: uppercase;
  display: block;
}

.cta-section h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.cta-section p {
  font-size: 16px;
  color: #aaa;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* Devices Section */
.devices-section {
  padding: 60px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 50px;
  text-align: center;
}

.devices-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  margin-bottom: 80px;
  justify-items: center;
  align-items: center;
}

.device-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 220px;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.device-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fdb913;
  transform: translateY(-10px) scale(1.05);
}

.device-icon {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.device-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 180px;
  max-height: 160px;
  filter: brightness(0.9) contrast(1.1);
  transition: all 0.3s ease;
}

.device-item:hover .device-icon img {
  filter: brightness(1.1) contrast(1.2);
  transform: scale(1.1);
}

/* Movie Slider */
.slider-container {
  position: relative;
  overflow: hidden;
  padding: 0 20px;
  max-width: 100vw;
}

.slider-wrapper {
  display: flex;
  gap: 20px;
  animation: slideMovies 25s linear infinite;
}

.slider-wrapper:hover {
  animation-play-state: paused;
}

.movie-poster {
  flex: 0 0 auto;
  width: 280px;
  aspect-ratio: 2/3;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.movie-poster:hover {
  transform: scale(1.05);
}

.movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes slideMovies {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-280px * 7 - 140px));
  }
}

/* Pricing Section */
.pricing-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #000 0%, #1a1a1a 100%);
}

.pricing-container {
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-title {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #ffd700;
}

.pricing-subtitle {
  text-align: center;
  color: #ccc;
  margin-bottom: 50px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.duration-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.duration-tab {
  padding: 12px 35px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  color: black;
}

.duration-tab.active {
  background: #ffd700;
  color: black;
}

.duration-tab:hover {
  background: #f0f0f0;
}

.duration-tab.active:hover {
  background: #ffd700;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pricing-card {
  position: relative;
  background: white;
  color: black;
  border-radius: 25px;
  padding: 40px;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: scale(1.05);
}

.card-header {
  text-align: center;
  margin-bottom: 40px;
}

.device-emoji {
  font-size: 4rem;
  margin-bottom: 20px;
}

.plan-name {
  font-size: 1.8rem;
  font-weight: bold;
  color: #444444;
  margin-bottom: 10px;
}

.free-months {
  color: #00c851;
  font-weight: 600;
  margin-bottom: 20px;
}

.price {
  font-size: 3rem;
  font-weight: bold;
  margin-top: 15px;
  color: #007bff;
}

.getit {
  width: 100%;
  padding: 18px;
  margin-bottom: 30px;
}

.features-list {
  list-style: none;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.check-icon {
  color: #ffd700;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* Channels Section */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.leagues-section {
  margin-bottom: 60px;
  overflow: hidden;
}

.slider-wrapper-leagues {
  overflow: hidden;
  position: relative;
  max-width: 100vw;
}

.leagues-slider {
  display: flex;
  animation: scroll 20s linear infinite;
  width: fit-content;
}

.league-item {
  flex-shrink: 0;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.league-item img {
  height: 80px;
  width: 80px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.league-item:hover img {
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.heading {
  text-align: center;
  margin-bottom: 50px;
}

.heading h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.heading .highlight {
  color: #f9a825;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.channel-item {
  background: #fff;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  cursor: pointer;
  margin: 0 auto;
}

.channel-item:hover {
  transform: scale(1.1);
}

.channel-item img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.btn-container {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 18px 50px;
  background: linear-gradient(135deg, #ff6b35 0%, #f9a825 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(249, 168, 37, 0.4);
}

/* Sports Hero */
.sports-hero {
  position: relative;
  min-height: 100vh;
  background-image: url("./imgs/poster-footall.webp");
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  background-color: #000;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.sports-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    transparent 100%
  );
}

.sports-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  width: 100%;
}

.sports-hero-text {
  max-width: 650px;
}

.sports-hero-text h1 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 25px;
  font-weight: 700;
}

.sports-hero-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 35px;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-280px * 5 - 100px));
  }
}

/* Channel Logos */
.channel-logos {
  background: #000;
  padding: 50px;
  overflow: hidden;
}

.logos-track {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.logos-track::-webkit-scrollbar {
  display: none;
}

.logo-item {
  flex: 0 0 auto;
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: transform 0.3s;
}

.logo-item:hover {
  transform: scale(1.1);
}

.logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* How It Works */
.how-it-works {
  padding: 80px 50px;
  background: #0a0a0a;
}

.how-it-works .container {
  display: flex;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
}

.illustration {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.illustration img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.steps {
  flex: 1;
}

.section-label {
  color: #ff6b35;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.steps h2 {
  font-size: 42px;
  margin-bottom: 50px;
  line-height: 1.2;
  font-weight: 700;
}

.step {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.step:last-child {
  margin-bottom: 0;
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ff6b35;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
}

.step:hover .step-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.step-content {
  width: 100%;
  justify-content: center;
}
.step-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #fff;
}

.step-content p {
  color: #aaa;
  line-height: 1.6;
  font-size: 15px;
}

/* Footer */
.footer {
  background-color: #000;
  color: #fff;
  font-family: "Poppins", sans-serif;
  padding: 50px 20px 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer-section {
  flex: 1 1 20px;
  min-width: 200px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 15px;
}

.footer-desc {
  color: #ccc;
  line-height: 1.6;
}

.footer-section h3 {
  color: #f5f5f5;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.8;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #ffc107;
}

.footer-line {
  border: 0;
  border-top: 1px solid #333;
  margin: 40px 0;
}

.footer-bottom {
  text-align: center;
  color: #ccc;
  font-size: 14px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffc107;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .movie-poster {
    width: calc(25% - 15px);
  }
}

@media (max-width: 1024px) {
  .main-heading {
    font-size: 70px;
  }

  nav {
    padding: 20px 40px;
    z-index: 1000;
  }

  .hero-section {
    padding: 80px 40px 40px 40px;
  }

  .content-showcase {
    padding: 60px 40px;
  }

  .services-container {
    grid-template-columns: 1fr;
  }

  .cta-section {
    position: relative;
    top: 0;
    order: -1;
    margin-bottom: 20px;
  }

  .cta-section h1 {
    font-size: 36px;
  }
}

@media (max-width: 968px) {
  .illustration img {
    width: 100%;
    height: auto;
  }
  .devices-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .device-item {
    max-width: 200px;
    padding: 25px 15px;
  }

  .device-icon {
    height: 140px;
  }

  .device-icon img {
    max-width: 160px;
    max-height: 140px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .movie-poster {
    width: calc(33.333% - 14px);
  }

  .section-title {
    font-size: 2rem;
  }

  .pricing-title {
    font-size: 2rem;
  }

  .sports-hero-content {
    text-align: center;
    padding: 50px 30px;
  }

  .how-it-works {
    padding: 60px 30px;
  }

  .how-it-works .container {
    flex-direction: column;
    gap: 50px;
  }

  .illustration {
    order: 2;
  }

  .steps {
    order: 1;
  }

  .steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .step {
    margin-bottom: 35px;
  }

  .channels-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .video-section {
    height: 70vh;
  }

  .main-heading {
    font-size: 50px;
  }

  nav {
    padding: 20px 30px;
  }

  .hero-section {
    padding: 40px 30px 30px 30px;
  }

  .description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .logo-text {
    font-size: 24px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .logo-icon::before {
    font-size: 26px;
  }

  .menu-btn {
    display: flex;
  }

  .free-trial-btn {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    flex-direction: column;
    padding: 100px 20px 40px 20px;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 0;
    gap: 10px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    padding: 16px 25px;
    font-size: 18px;
    color: #fff;
    border-radius: 12px;
  }

  .content-showcase {
    padding: 60px 30px;
  }

  .streaming-logos-container {
    padding: 0 10px;
  }

  .streaming-logos {
    gap: 35px;
  }

  .streaming-logos img {
    height: 60px;
    width: 60px;
  }

  .showcase-title {
    font-size: 36px;
  }

  .showcase-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .categories-container {
    padding: 0 10px;
  }

  .content-categories {
    gap: 20px;
  }

  .category-card {
    width: 280px;
    height: 160px;
  }

  .category-overlay h3 {
    font-size: 28px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .devices-section {
    padding: 40px 15px;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .devices-grid {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }

  .device-item {
    max-width: 180px;
    padding: 20px 15px;
  }

  .device-icon {
    height: 120px;
  }

  .device-icon img {
    max-width: 140px;
    max-height: 120px;
  }

  .device-name {
    font-size: 0.9rem;
  }

  .device-subtitle {
    font-size: 0.75rem;
  }

  .slider-container {
    padding: 0 10px;
  }

  .movie-poster {
    width: 280px;
  }

  .sports-hero {
    background-size: cover;
    background-position: center top;
    min-height: auto;
    padding: 60px 20px;
    align-items: center;
    justify-content: center;
  }

  .sports-hero::before {
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.5) 100%
    );
  }

  .pricing-title {
    font-size: 1.5rem;
  }

  .pricing-subtitle {
    font-size: 0.9rem;
  }

  .duration-tab {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .pricing-card {
    padding: 30px 20px;
  }

  .device-emoji {
    font-size: 3rem;
  }

  .plan-name {
    font-size: 1.5rem;
  }

  .price {
    font-size: 2.5rem;
  }

  .channels-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .channel-item {
    width: 100px;
    height: 100px;
  }

  .heading h1 {
    font-size: 2rem;
  }

  .league-item img {
    height: 60px;
  }

  .sports-hero-text h1 {
    font-size: 36px;
  }

  .channel-logos {
    padding: 20px;
  }

  .logos-track {
    gap: 15px;
    justify-content: flex-start;
  }

  .logo-item {
    width: 80px;
    height: 80px;
    padding: 10px;
  }

  .how-it-works {
    padding: 50px 20px;
  }

  .how-it-works .container {
    gap: 40px;
  }

  .illustration img {
    max-width: 350px;
  }

  .section-label {
    font-size: 12px;
    text-align: center;
  }

  .steps h2 {
    font-size: 28px;
    margin-bottom: 35px;
    text-align: center;
  }

  .step {
    flex-direction: row;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
  }

  .step-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    flex-shrink: 0;
  }

  .step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .step-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    width: 100%;
  }
  .illustration img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .illustration img {
    width: 100%;
    height: auto;
  }
  .main-heading {
    font-size: 40px;
  }

  .cta-button {
    padding: 16px 35px;
    font-size: 16px;
  }

  .streaming-logos-container {
    padding: 0 5px;
  }

  .streaming-logos {
    gap: 30px;
  }

  .streaming-logos img {
    height: 60px;
    width: 60px;
    min-width: 100px;
  }

  .showcase-title {
    font-size: 28px;
  }

  .showcase-subtitle {
    font-size: 16px;
  }

  .categories-container {
    padding: 0 5px;
  }

  .content-categories {
    gap: 15px;
  }

  .category-card {
    width: 260px;
    height: 150px;
  }

  .category-overlay h3 {
    font-size: 26px;
  }

  .slider-container {
    padding: 0 5px;
  }

  .movie-poster {
    width: 280px;
  }

  .sports-hero {
    background-size: cover;
    background-position: center top;
    min-height: auto;
    padding: 60px 20px;
    align-items: center;
    justify-content: center;
  }

  .sports-hero::before {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.85) 100%
    );
  }

  .channels-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .channel-item {
    width: 80px;
    height: 80px;
  }

  .heading h1 {
    font-size: 1.5rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }

  .how-it-works {
    padding: 40px 15px;
  }

  .how-it-works .container {
    gap: 30px;
  }

  .illustration svg {
    max-width: 280px;
  }

  .steps h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .step {
    flex-direction: column;
    gap: 15px;
    padding: 20px 15px;
    text-align: center;
    align-items: center;
  }

  .step-icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }

  .step-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .step-content p {
    font-size: 14px;
    line-height: 1.6;
  }
}

.Kostenlose {
  font-size: 1.3rem;
  color: rgb(25, 118, 199);
}

/* one years ticket (most popular) */

.pricing-card.most-popular {
  border: 3.5px solid #fdb913;
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #fdb913, #f5b000);
  color: black;
  padding: 6px 20px;
  border-radius: 20px;
  font-weight: bolder;
  font-size: 15px;
  letter-spacing: 1px;
  z-index: 10;
}

/* pop up animation */

@keyframes popup {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/* FAQ Item */
.faq-item {
  margin-bottom: 20px;
}

/* Question Card */
.faq-question {
  border: 1px solid #d4af37;
  border-radius: 14px;
  padding: 25px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Question Text */
.faq-question h3 {
  margin: 0;
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
}

/* Plus / Minus Icon */
.faq-question span {
  color: #d4af37 !important;
  font-size: 22px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

/* Hover Effect */
.faq-question:hover {
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* Answer Wrapper */
.faq-answer {
  background: #0e0e0e;
  border-left: 1px solid #d4af37;
  border-right: 1px solid #d4af37;
  border-bottom: 1px solid #d4af37;
  border-radius: 0 0 14px 14px;
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

/* Answer Text */
.faq-answer p {
  color: #b5b5b5;
  font-size: 15px;
  line-height: 1.7;
  padding-bottom: 20px;
}

/* Strong text */
.faq-answer strong {
  color: #ffffff;
  font-weight: 600;
}

/* Active State (when opened) */
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 10px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg); /* turns + into × */
}
/* Arrow Icon */
.faq-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #d4af37;
  border-bottom: 2px solid #d4af37;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-left: 10px;
}

/* Rotate arrow when open */
.faq-item.active .faq-arrow {
  transform: rotate(-135deg);
}
