.elementor-619 .elementor-element.elementor-element-f9bc297{--display:flex;}.elementor-619 .elementor-element.elementor-element-e2cf967{width:100%;max-width:100%;}@media(max-width:767px){.elementor-619 .elementor-element.elementor-element-e2cf967 > .elementor-widget-container{margin:18px 0px 0px 0px;}}/* Start custom CSS for html, class: .elementor-element-e2cf967 */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-b863ba5 *//* ======================================
   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 */