.elementor-18 .elementor-element.elementor-element-09bb0aa{--display:flex;--margin-top:-37px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-18 .elementor-element.elementor-element-09bb0aa:not(.elementor-motion-effects-element-type-background), .elementor-18 .elementor-element.elementor-element-09bb0aa > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#D6D2D242;}.elementor-18 .elementor-element.elementor-element-4a49f1a{width:100%;max-width:100%;}.elementor-18 .elementor-element.elementor-element-4a49f1a > .elementor-widget-container{margin:0px 0px 0px -16px;}.elementor-18 .elementor-element.elementor-element-00cf9ed{width:100%;max-width:100%;}.elementor-18 .elementor-element.elementor-element-00cf9ed > .elementor-widget-container{margin:64px 0px 0px 0px;}.elementor-18 .elementor-element.elementor-element-2c08572 > .elementor-widget-container{margin:-16px 0px 0px 0px;}.elementor-18 .elementor-element.elementor-element-2d9a457 > .elementor-widget-container{margin:-78px 0px 0px 0px;}.elementor-18 .elementor-element.elementor-element-cfc1c7b > .elementor-widget-container{margin:-79px 0px 0px 0px;}.elementor-18 .elementor-element.elementor-element-2a7af12 > .elementor-widget-container{margin:-19px 0px 0px 0px;}.elementor-18 .elementor-element.elementor-element-4b352f1 > .elementor-widget-container{margin:-51px 0px 0px 0px;}.elementor-18 .elementor-element.elementor-element-37f4204 > .elementor-widget-container{margin:-70px 0px 0px 0px;}.elementor-18 .elementor-element.elementor-element-79bd38b > .elementor-widget-container{margin:-53px 0px 0px 0px;}@media(max-width:767px){.elementor-18 .elementor-element.elementor-element-4a49f1a > .elementor-widget-container{margin:18px 0px 0px -14px;}.elementor-18 .elementor-element.elementor-element-00cf9ed > .elementor-widget-container{margin:24px 0px 0px 0px;}.elementor-18 .elementor-element.elementor-element-cfc1c7b > .elementor-widget-container{margin:-76px 0px 0px 0px;}}@media(min-width:768px){.elementor-18 .elementor-element.elementor-element-09bb0aa{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-4a49f1a */body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #fdf4ff, #ffeafd);
  padding-top: 130px;
}

/* HEADER */
.iptv-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(to right, #fef6ff, #f7e8ff);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  z-index: 9999;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  gap: 20px;
}

.logo img {
  height: 60px;
}

/* MENU */
.menu-box {
  background: white;
  padding: 14px 28px;
  border-radius: 20px;
  border: 2px solid #f3deff;
  box-shadow: 0 6px 20px rgba(150, 0, 255, 0.12);
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a,
.dropbtn {
  background: transparent;
  padding: 10px 16px;
  border-radius: 12px;
  color: #300050;
  font-weight: 500;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.nav-links a:hover,
.dropbtn:hover {
  background: #f5e6ff;
  color: #8000d2;
}

.contact-btn {
  background: linear-gradient(to right, #a100ff, #6a00ff);
  color: #fff;
  padding: 10px 20px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(150, 0, 255, 0.4);
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: linear-gradient(to right, #7c00db, #5000b3);
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 48px;
  left: 0;
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #dfc2ff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  min-width: 180px;
  z-index: 1000;
}

.dropdown-content.open {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 12px 18px;
  color: #4a007f;
  text-decoration: none !important;
  transition: background 0.3s;
  cursor: pointer;
}

.dropdown-content a:hover {
  background: #f5e6ff;
  color: #8000d2;
}

/* MOBILE TOGGLE */
.vip-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  height: 26px;
  width: 38px;
  background: linear-gradient(to right, #fff, #f7e9ff);
  border: 2px solid #d69cff;
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 0 14px rgba(160, 0, 255, 0.3);
  cursor: pointer;
}

.vip-toggle span {
  height: 3px;
  background: #8000d2;
  border-radius: 4px;
  transition: all 0.3s;
}

/* MOBILE */
@media screen and (max-width: 768px) {
  .header-row {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .vip-toggle {
    display: flex;
    order: 2;
  }

  .logo {
    order: 1;
  }

  .menu-box {
    width: 100%;
    flex-direction: column;
    margin-top: 10px;
    display: none;
  }

  .menu-box.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
  }

  .nav-links a,
  .dropbtn,
  .contact-btn {
    width: 100%;
    justify-content: flex-start;
  }
}

/* VIP GLOW */
.glow {
  box-shadow: 0 0 25px 8px rgba(175, 0, 255, 0.6),
              0 0 45px 16px rgba(210, 0, 255, 0.4);
  border: 2px solid #d000ff;
  border-radius: 20px;
  position: relative;
  z-index: 5;
  transition: all 0.4s ease-in-out;
}

/* VIP CONTACT POPUP */
.vip-popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.vip-popup {
  background: linear-gradient(to bottom right, #fff5ff, #f9ecff);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(150, 0, 255, 0.3);
  width: 100%;
  max-width: 480px;
  position: relative;
}

.vip-popup h2 {
  margin-top: 0;
  text-align: center;
  color: #7000a8;
  font-weight: 600;
}

.vip-popup input,
.vip-popup textarea {
  width: 100%;
  padding: 12px 16px;
  margin: 12px 0;
  border-radius: 10px;
  border: 1px solid #d6b3ff;
  background: #faf8ff;
  font-family: 'Poppins', sans-serif;
}

.vip-popup button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(to right, #ff6bce, #a000ff);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(150, 0, 255, 0.4);
  cursor: pointer;
  transition: 0.3s ease;
}

.vip-popup button:hover {
  background: linear-gradient(to right, #a000ff, #7000ff);
}

.close-btn {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 28px;
  color: #8000d2;
  cursor: pointer;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-00cf9ed */@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;700;800&display=swap');

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Manrope', sans-serif;
  background: #0a0a0c;
  color: #fff;
}

.vip-hero {
  background: #0a0a0c;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vip-overlay {
  background: #111016;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 40px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  box-shadow: 0 0 60px rgba(166, 103, 247, 0.12);
}

.vip-content {
  flex: 1 1 500px;
  max-width: 600px;
}

.vip-tag {
  color: #e3c97b;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vip-content h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(166, 103, 247, 0.1);
}

.vip-content h1 span {
  color: #a667f7;
}

.vip-subtext {
  font-size: 18px;
  color: #d4cde8;
  margin: 25px 0;
  line-height: 1.7;
}

.vip-price-box h2 {
  font-size: 36px;
  margin: 0;
  color: #f5f5f5;
}

.vip-price-box small {
  font-size: 16px;
  color: #aaa7bb;
}

.vip-highlight {
  color: #a667f7;
  margin-top: 12px;
  font-weight: 600;
  font-size: 16px;
}

.vip-video {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vip-video img {
  width: 280px;
  height: auto;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  border: 6px solid transparent;
  background: linear-gradient(#111016, #111016) padding-box,
              linear-gradient(145deg, #a667f7, #fc4a1a) border-box;
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.vip-video img:hover {
  transform: scale(1.05);
}

.vip-button-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.vip-cta {
  padding: 14px 36px;
  background: linear-gradient(to right, #5c6df7, #a667f7);
  border: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px rgba(166, 103, 247, 0.4);
  margin-top: 20px;
}

.vip-cta:hover {
  opacity: 0.92;
  box-shadow: 0 8px 40px rgba(166, 103, 247, 0.6);
}

/* MOBILE FIX — IMAGE ABOVE BUTTON ONLY */
@media (max-width: 768px) {
  .vip-overlay {
    flex-direction: column;
  }

  .vip-content {
    order: 0;
  }

  .vip-video {
    order: 1;
  }

  .vip-button-container {
    order: 2;
    margin-top: 20px;
  }

  .vip-cta {
    width: 100%;
    max-width: 300px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2c08572 */@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;700&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Manrope', sans-serif;
  background: #0a0a0c;
  color: #fff;
}

/* Showcase Container */
.channel-showcase {
  background: #111016;
  padding: 40px 20px;
  max-width: 100%;
  overflow: hidden;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* Logo Set Base Style */
.logo-set {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.logo-set.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

/* Logo Style */
.logo-set img {
  height: 80px;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.8);
  animation: none;
  background: #14121b;
  padding: 14px;
  border-radius: 22px;
  border: 2px solid transparent;
  background-image:
    linear-gradient(#14121b, #14121b),
    linear-gradient(135deg, #a667f7, #fc4a1a);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    0 2px 8px rgba(255, 255, 255, 0.05),
    0 0 15px rgba(166, 103, 247, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-set img:hover {
  transform: scale(1.08);
  box-shadow:
    0 4px 12px rgba(255, 255, 255, 0.1),
    0 0 25px rgba(166, 103, 247, 0.35);
}


/* Cascade Animation */
.logo-set.active img {
  animation: fadeInLuxury 0.6s ease forwards;
}

.logo-set.active img:nth-child(1) {
  animation-delay: 0.1s;
  transform: translateX(-40px);
}
.logo-set.active img:nth-child(2) {
  animation-delay: 0.3s;
  transform: translateY(40px);
}
.logo-set.active img:nth-child(3) {
  animation-delay: 0.5s;
  transform: translateX(40px);
}
.logo-set.active img:nth-child(4) {
  animation-delay: 0.7s;
  transform: translateY(-40px);
}

@keyframes fadeInLuxury {
  to {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .logo-set {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .logo-set img {
    height: 90px;
    padding: 16px;
    border-radius: 24px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2d9a457 */.vip-testimonials {
  background: #111016;
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  margin-top: 60px;
}

.testimonial-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  max-width: 900px;
  margin: auto;
}

.testimonial-box {
  background: linear-gradient(135deg, #1a1a1f, #16141d);
  border-radius: 20px;
  padding: 40px 30px;
  flex: 1;
  box-shadow: 0 10px 40px rgba(166, 103, 247, 0.2);
  border: 1px solid rgba(166, 103, 247, 0.2);
}

.testimonial-box p {
  font-size: 20px;
  font-weight: 600;
  color: #eee;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-box span {
  font-size: 16px;
  font-weight: 500;
  color: #a667f7;
}

.nav {
  font-size: 28px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 12px 18px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.nav:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-box p {
    font-size: 18px;
  }

  .testimonial-slider {
    flex-direction: column;
  }

  .nav {
    margin: 10px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-cfc1c7b */.vip-counter {
  text-align: center;
  padding: 60px 20px;
  background: #0a0a0c;
  color: #fff;
  border-radius: 20px;
  margin-top: 60px;
}

.vip-counter h3 {
  font-size: 22px;
  font-weight: 600;
  color: #ccc;
  margin-bottom: 15px;
}

.vip-count {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(90deg, #f7b733, #fc4a1a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

.label {
  font-size: 20px;
  color: #fc4a1a;
  font-weight: 700;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2a7af12 */.choose-plan-hero {
  text-align: center;
  padding: 60px 20px 40px;
  background: #0f0e13;
  border-radius: 20px;
  margin-bottom: 40px;
  color: #fff;
}

.choose-plan-hero .mini-heading {
  font-size: 14px;
  color: #f7b733;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 600;
}

.choose-plan-hero .main-heading {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.choose-plan-hero .main-heading span {
  background: linear-gradient(90deg, #a667f7, #fc4a1a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.choose-plan-hero .subtext {
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
  max-width: 800px;
  margin: auto;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4b352f1 */@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;700&display=swap');

body {
  background: #111;
  font-family: 'Outfit', sans-serif;
  color: #fff;
  margin: 0;
  padding: 0;
}

/* Pricing Grid */
.iptv-pricing-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 40px 20px;
  max-width: 1300px;
  margin: auto;
}

/* Plan Card */
.iptv-plan {
  background: #1c1c1c;
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(166, 103, 247, 0.12);
  min-height: 520px;
  transition: all 0.3s ease;
}

.iptv-plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(166, 103, 247, 0.25);
}

.plan-header {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

/* Price */
.plan-price {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
}

.plan-price s {
  font-size: 16px;
  color: #bbb;
  margin-right: 8px;
  opacity: 0.6;
}

.plan-price span {
  font-size: 30px;
  font-weight: 800;
  background: linear-gradient(90deg, #f7b733, #fc4a1a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Features */
.plan-features li {
  text-align: left;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.plan-features li img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  filter: brightness(1.2);
}

/* Buy Button */
.buy-btn {
  display: inline-block;
  margin-top: 10px;
  background: #000;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  text-decoration: none !important;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}

.buy-btn:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.15);
}

/* VIP Buy Button for Special Plan */
.buy-btn.vip-glow {
  background: linear-gradient(to right, #ff4a00, #f7b733);
  color: #000;
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 94, 0, 0.3);
}

.buy-btn.vip-glow:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 94, 0, 0.5);
}

.badge-best {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, #ff4a00, #fc4a1a);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  padding: 6px 20px;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(255, 94, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 5;
  line-height: 1.4;
  white-space: nowrap;
}

/* ✨ Highlighted Box Animation */
.best-selling {
  border: 2px solid #fc4a1a;
  animation: pulseGlow 2.5s infinite ease-in-out;
  z-index: 3;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 18px rgba(252, 74, 26, 0.3); }
  50% { box-shadow: 0 0 30px rgba(252, 74, 26, 0.5); }
  100% { box-shadow: 0 0 18px rgba(252, 74, 26, 0.3); }
}

/* Responsive */
@media (max-width: 1200px) {
  .iptv-pricing-container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .iptv-pricing-container { grid-template-columns: 1fr; }
  .iptv-plan { min-height: auto; }
}

/* ✅ PAYMENT POPUP DESIGN */
#checkoutPopupOverlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
}

#checkoutPopupOverlay .checkout-wrapper {
  background: #fff;
  border-radius: 16px;
  width: 480px;
  max-width: 95%;
  margin: 0 auto;
  padding: 30px;
  color: #000;
  position: relative;
  font-family: 'Outfit', sans-serif;
}

#checkoutPopupOverlay h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 20px;
}

#checkoutPopupOverlay input[type="text"],
#checkoutPopupOverlay input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 2px solid #ddd;
  margin-bottom: 15px;
  font-size: 15px;
}

#checkoutPopupOverlay button {
  border: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 12px;
  cursor: pointer;
}

#continueBtn {
  background: linear-gradient(to right, #ff8008, #ffc837);
  color: #000;
  width: 100%;
  padding: 14px;
}

#closeCheckoutPopup {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #ff3b3b;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

#price {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin: 10px 0 20px;
}

.payment-select-btn {
  margin: 10px;
  background: #fff;
  border: 2px solid #ccc;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s ease;
}
.payment-select-btn.active {
  border-color: #0070ba;
  box-shadow: 0 0 6px #0070ba66;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-37f4204 */.why-choose-iptv {
  background: #2d1136; /* deep purple background */
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  margin-top: 60px;
}

.choose-title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
}

.choose-title .white-text {
  color: #fff;
}

.choose-title .gradient-text {
  background: linear-gradient(90deg, #b76cf9, #fc4a1a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.choose-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.choose-box {
  background: #3b1d4c; /* a slightly lighter purple */
  padding: 30px 20px;
  border-radius: 16px;
  max-width: 320px;
  flex: 1 1 280px;
  box-shadow: 0 10px 25px rgba(166, 103, 247, 0.15);
  transition: transform 0.3s ease;
  color: #fff;
  text-align: center;
}

.choose-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(252, 74, 26, 0.25);
}

.feature-icon {
  height: 80px;             /* slightly bigger icon */
  width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.2));
}

.choose-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.choose-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #ddd;
  margin: 0 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .choose-title {
    font-size: 28px;
  }
  .choose-box {
    max-width: 100%;
  }
  .feature-icon {
    height: 90px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-79bd38b */.how-iptv-works {
  background: #0e0d12;
  padding: 60px 20px;
  text-align: center;
  border-radius: 24px;
  margin-top: 60px;
  color: #fff;
}

.how-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 20px;
}

.how-title .white-text {
  color: #fff;
}

.how-title .gradient-text {
  background: linear-gradient(90deg, #a667f7, #fc4a1a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.how-subtext {
  font-size: 15px;
  color: #ccc;
  max-width: 720px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.how-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.how-box {
  background: #16141c;
  border-radius: 20px;
  padding: 40px 25px;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 10px 30px rgba(166, 103, 247, 0.08);
  transition: transform 0.3s ease;
  position: relative;
}

.how-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(166, 103, 247, 0.2);
}

.step-circle {
  position: absolute;
  top: -20px;
  left: 20px;
  background: #a667f7;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(166, 103, 247, 0.3);
}

.icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.icon-wrap img {
  height: 64px;
  width: 64px;
  filter: drop-shadow(0 0 5px rgba(255,255,255,0.08));
}

.how-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.how-box p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .how-steps {
    flex-direction: column;
    align-items: center;
  }

  .how-box {
    max-width: 100%;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3748761 */.iptv-benefits {
  background: #0c0b10;
  padding: 70px 20px;
  text-align: center;
  border-radius: 24px;
  color: #fff;
}

.benefits-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.benefits-title .white-text {
  color: #fff;
}

.benefits-title .gradient-text {
  background: linear-gradient(90deg, #a667f7, #fc4a1a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefits-text {
  max-width: 760px;
  margin: 0 auto 60px;
  font-size: 16px;
  color: #ccc;
  line-height: 1.8;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.benefit-box {
  background: #16141b;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  flex: 1 1 300px;
  max-width: 340px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(166, 103, 247, 0.25);
  border-color: rgba(166, 103, 247, 0.4);
}

.icon-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.icon-center img {
  height: 95px;
  filter: drop-shadow(0 0 10px rgba(166, 103, 247, 0.2));
  transition: transform 0.3s ease;
}

.benefit-box:hover .icon-center img {
  transform: scale(1.06);
}

.benefit-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
}

.benefit-box p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .benefits-grid {
    flex-direction: column;
    align-items: center;
  }

  .benefit-box {
    max-width: 100%;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-eec7198 */.vip-testimonial-header {
  text-align: center;
  background: linear-gradient(to right, #f5f2ff, #f9f7fb);
  padding: 80px 20px 60px;
  position: relative;
}

.vip-badge {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(174, 139, 255, 0.3);
  transition: transform 0.4s ease;
}

.vip-badge img {
  width: 55px;
  height: 52px;
}

.vip-testimonial-header:hover .vip-badge {
  transform: scale(1.1);
}

.vip-title {
  font-size: 36px;
  font-weight: 800;
  color: #2e1a47;
  margin-bottom: 12px;
  font-family: 'Manrope', sans-serif;
}

.vip-subtitle {
  font-size: 17px;
  color: #5d4b6c;
  font-weight: 500;
  font-family: 'Manrope', sans-serif;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-635e7f0 */.iptv-memory-section {
  background: linear-gradient(to right, #f9f6f2, #f4eeea);
  padding: 60px 20px;
  font-family: 'Manrope', sans-serif;
}

.iptv-memory-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.iptv-memory-image img {
  width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 60% / 40%;
  border: 4px solid transparent;
  background: linear-gradient(145deg, #a67cfd, #ff61d2) padding-box, white border-box;
  box-shadow: 0 12px 40px rgba(166, 124, 253, 0.3);
  transition: transform 0.4s ease;
}

.iptv-memory-image img:hover {
  transform: scale(1.03);
}

.iptv-memory-text {
  max-width: 500px;
  color: #2a1d0d;
}

.iptv-memory-text h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #3d2b1f;
}

.iptv-memory-text p {
  font-size: 17px;
  line-height: 1.6;
  color: #5b4a3a;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a58e781 */.exclusive-tv-section {
  background: linear-gradient(to right, #f8f6f4, #f2ece9);
  padding: 80px 20px;
  font-family: 'Manrope', sans-serif;
}

.exclusive-tv-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}

.exclusive-text {
  max-width: 540px;
  color: #2b1a14;
}

.exclusive-text h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #3d2b1f;
}

.exclusive-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #5c4536;
}

.exclusive-image img {
  width: 380px;
  height: auto;
  object-fit: cover;
  border-radius: 55% / 45%;
  border: 6px solid transparent;
  background: linear-gradient(135deg, #a67cfd, #ff61d2, #fdbb2d) padding-box, white border-box;
  box-shadow: 0 25px 80px rgba(166, 124, 253, 0.3);
  transition: transform 0.4s ease;
}

.exclusive-image img:hover {
  transform: scale(1.03);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c5f3715 */.iptv-faq {
  background: #0b0a10;
  padding: 80px 30px;
  font-family: 'Outfit', sans-serif;
  color: #fff;
  border-radius: 30px;
}

.faq-header {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: left;
}

.faq-title .blue-text {
  background: linear-gradient(90deg, #3b82f6, #8ab4f8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-title .gradient-text {
  background: linear-gradient(90deg, #a667f7, #fc4a1a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.faq-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #ff7e35;
  margin-top: 8px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 40px;
}

.faq-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 28px 30px;
  backdrop-filter: blur(14px);
  transition: all 0.4s ease;
  box-shadow: 0 0 0 transparent;
}

.faq-box:hover {
  border-color: rgba(166, 103, 247, 0.5);
  box-shadow: 0 15px 45px rgba(166, 103, 247, 0.25);
  transform: translateY(-6px);
}

.faq-box details {
  position: relative;
  font-size: 16px;
}

.faq-box summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  list-style: none;
  padding-right: 20px;
  position: relative;
  transition: color 0.3s ease;
}

.faq-box summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  color: #a667f7;
  transition: transform 0.3s ease;
}

.faq-box details[open] summary::after {
  content: "–";
  transform: rotate(180deg);
}

.faq-box p {
  margin-top: 14px;
  font-size: 16px;
  color: #ccc;
  line-height: 1.8;
  animation: fadeIn 0.4s ease;
}

/* Smooth entry animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .faq-title {
    font-size: 28px;
  }
  .faq-subtitle {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .faq-box {
    margin-left: -10px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ba69cd3 *//* ======================================
   GoodIPTV Elegant Footer CSS
====================================== */

/* === Footer Base === */
.custom-footer {
  background: #fdfdfd;
  color: #1e1e1e;
  font-family: 'Poppins', sans-serif;
  padding: 60px 30px 30px;
  position: relative;
  overflow: hidden;
}

/* === Layout Grid === */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

/* === About Column with Rocket === */
.footer-about {
  flex: 1.2;
  min-width: 260px;
}
.footer-about img {
  width: 160px;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}
.footer-about p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

/* === Footer Columns === */
.footer-column {
  flex: 1;
  min-width: 160px;
}
.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #8e2de2, #4a00e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column ul li {
  margin: 8px 0;
}
.footer-column ul li a {
  font-size: 14px;
  color: #88304E;
  text-decoration: none !important; /* ✅ Completely removes underline */
  transition: color 0.3s ease;
}
.footer-column ul li a:hover {
  color: #a667f7;
  text-decoration: none !important; /* ✅ Prevents underline on hover */
}

/* === Footer Bottom === */
.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: #888;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

/* === Triangle Dark Mode Toggle === */
.footer-dark-toggle {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.footer-dark-toggle button {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 28px solid #D4AF37;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer-dark-toggle button:hover {
  border-top-color: #B89549;
  transform: scale(1.1);
}

/* === Rocket Flame Animation === */
.rocket-wrapper {
  position: relative;
  display: inline-block;
}
.rocket-wrapper .flame,
.rocket-wrapper .flame.small {
  position: absolute;
  left: -25px;
  top: 40%;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, orange 20%, red 50%, transparent 70%);
  border-radius: 50%;
  opacity: 0.8;
  animation: fire-flicker 0.2s infinite alternate;
  z-index: 0;
  filter: blur(1px);
}
.rocket-wrapper .flame.small {
  top: 48%;
  left: -20px;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, yellow 30%, red 60%, transparent 80%);
  animation: fire-flicker-small 0.18s infinite alternate;
}

@keyframes fire-flicker {
  0% { transform: scale(1) translateY(0); opacity: 0.9; }
  100% { transform: scale(1.4) translateY(3px); opacity: 0.6; }
}
@keyframes fire-flicker-small {
  0% { transform: scale(1) translateY(0); opacity: 0.8; }
  100% { transform: scale(1.3) translateY(2px); opacity: 0.5; }
}

/* === Dark Mode === */
body.dark-mode .custom-footer {
  background: #1c1c1c;
  color: #e0e0e0;
}
body.dark-mode .footer-about p,
body.dark-mode .footer-column ul li a,
body.dark-mode .footer-bottom {
  color: #ccc;
}
body.dark-mode .footer-column ul li a:hover {
  color: #FFCE7B;
}
body.dark-mode .footer-dark-toggle button {
  border-top-color: #FFCE7B;
}
body.dark-mode .footer-dark-toggle button:hover {
  border-top-color: #FFC04D;
}

/* === Mobile Responsive === */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-column,
  .footer-about {
    width: 100%;
    margin-bottom: 30px;
  }
}/* End custom CSS */