/* 4K IPTV Live — minimal enhancements (does not override theme layout) */

/* Floating WhatsApp button only */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
}

.wa-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

@media (max-width: 768px) {
  .wa-float {
    bottom: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
  }
}

/* Installation guide TOC — scoped, won't affect hero */
.guide-toc {
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 40px;
}

.guide-toc h4 {
  margin-bottom: 16px;
  color: #f7931e;
}

.guide-toc ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
}

.guide-toc a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 8px;
  display: block;
}

.guide-toc a:hover {
  background: rgba(247,147,30,0.15);
  color: #f7931e;
}

/* SEO helpers — invisible to layout */
.seo-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.seo-intro-text {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
  color: #666;
  font-size: 15px;
  line-height: 1.75;
  font-family: 'Poppins', sans-serif;
}

.seo-intro-text a {
  color: rgb(229, 42, 91);
  font-weight: 500;
  text-decoration: none;
}

.seo-intro-text a:hover {
  text-decoration: underline;
}

/* Hero decorative heading — same visual as h1, used on slides 2–3 */
.main-slider-five .hero-display-heading {
  color: var(--main-color-two);
  background: linear-gradient(to right, var(--main-color-two) 0%, var(--main-color-eighteen) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  font-size: 300px;
  line-height: 0.8em;
  letter-spacing: -10px;
  transform: translateX(200px);
  transform-origin: top;
  transition: all 1000ms ease;
}

.main-slider-five .active .hero-display-heading {
  opacity: 1;
  transform: translateX(0px);
  transition-delay: 450ms;
}

@media only screen and (max-width: 1200px) {
  .main-slider-five .hero-display-heading {
    font-size: 220px;
    display: inline-block;
  }
}

@media only screen and (max-width: 599px) {
  .main-slider-five .hero-display-heading {
    font-size: 140px;
  }
}

@media only screen and (max-width: 479px) {
  .main-slider-five .hero-display-heading {
    font-size: 110px;
  }
}

.faq-section .acc-content .text a {
  color: rgb(229, 42, 91);
  font-weight: 500;
}
