/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS Custom Properties ===== */
:root {
  --neon-blue: #00AEEF;
  --neon-pink: #FF1493;
  --bg-dark: #0A0A0A;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.45);
  --gradient-primary: linear-gradient(135deg, var(--neon-blue), var(--neon-pink));
  --gradient-blue: linear-gradient(135deg, var(--neon-blue), #0077B6);
  --gradient-pink: linear-gradient(135deg, var(--neon-pink), #FF6B9D);
  --glow-blue: 0 0 20px color-mix(in srgb, var(--neon-blue) 30%, transparent), 0 0 60px color-mix(in srgb, var(--neon-blue) 10%, transparent);
  --glow-pink: 0 0 20px color-mix(in srgb, var(--neon-pink) 30%, transparent), 0 0 60px color-mix(in srgb, var(--neon-pink) 10%, transparent);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
}

/* ===== Scrollbar Styling ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--neon-blue), var(--neon-pink));
  border-radius: 10px;
}

/* ===== Custom Utility Classes ===== */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
  transform: translateZ(0);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0, 174, 239, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--glow-blue);
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.75rem 0;
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

/* ===== Mobile Menu ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.mobile-menu a:hover {
  color: var(--neon-blue);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 174, 239, 0.1);
  border: 1px solid rgba(0, 174, 239, 0.3);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--neon-blue);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease forwards;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--neon-blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s 0.15s ease both;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-secondary);
  max-width: 550px;
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.7;
  animation: fadeInUp 0.6s 0.3s ease both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 0.6s 0.45s ease both;
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--gradient-primary);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 174, 239, 0.35);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.45);
}

.btn-plan {
  display: block;
  width: 100%;
  padding: 0.9rem;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}

.btn-plan:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 174, 239, 0.35);
}

/* ===== Section Styling ===== */
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

/* ===== Feature Cards ===== */
.feature-card {
  padding: 2rem;
  text-align: center;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.15), rgba(255, 20, 147, 0.1));
  border: 1px solid rgba(0, 174, 239, 0.15);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== Platform Cards ===== */
.platform-card {
  padding: 1.25rem 1.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 85px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  overflow: hidden;
}

.platform-card img {
  height: 2.25rem;
  width: auto;
  max-width: 90%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: var(--transition-smooth);
}

.platform-card:hover img {
  opacity: 1;
  filter: none;
}

/* Keep Apple TV+ and Max readable on hover */
#platform-appletv:hover img {
  filter: brightness(0) invert(1);
}
#platform-hbo:hover img {
  filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(0, 43, 231, 0.6));
}

/* Individual card hover brand glows */
#platform-netflix:hover {
  border-color: rgba(229, 9, 20, 0.4);
  box-shadow: 0 0 25px rgba(229, 9, 20, 0.3);
}
#platform-disney:hover {
  border-color: rgba(0, 174, 239, 0.4);
  box-shadow: 0 0 25px rgba(0, 174, 239, 0.3);
}
#platform-prime:hover {
  border-color: rgba(0, 168, 225, 0.4);
  box-shadow: 0 0 25px rgba(0, 168, 225, 0.3);
}
#platform-hbo:hover {
  border-color: rgba(81, 45, 168, 0.4);
  box-shadow: 0 0 25px rgba(81, 45, 168, 0.3);
}
#platform-paramount:hover {
  border-color: rgba(0, 106, 255, 0.4);
  box-shadow: 0 0 25px rgba(0, 106, 255, 0.3);
}
#platform-appletv:hover {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}
#platform-vix:hover {
  border-color: rgba(255, 111, 0, 0.4);
  box-shadow: 0 0 25px rgba(255, 111, 0, 0.3);
}
#platform-espn:hover {
  border-color: rgba(237, 28, 36, 0.4);
  box-shadow: 0 0 25px rgba(237, 28, 36, 0.3);
}

#platform-crunchyroll:hover {
  border-color: rgba(255, 92, 0, 0.4);
  box-shadow: 0 0 25px rgba(255, 92, 0, 0.3);
}
#platform-peacock:hover {
  border-color: rgba(0, 185, 242, 0.4);
  box-shadow: 0 0 25px rgba(0, 185, 242, 0.3);
}
#platform-peacock:hover img {
  filter: drop-shadow(0 0 8px rgba(0, 185, 242, 0.5));
}



/* ===== Pricing Cards ===== */
.pricing-card {
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card.popular {
  border-color: rgba(0, 174, 239, 0.4);
  background: rgba(0, 174, 239, 0.06);
}

.pricing-card.popular::before {
  content: '⭐ Más Popular';
  position: absolute;
  top: 16px;
  right: -30px;
  background: var(--gradient-primary);
  color: white;
  padding: 4px 40px;
  font-size: 0.75rem;
  font-weight: 700;
  transform: rotate(45deg);
  letter-spacing: 0.05em;
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
  letter-spacing: -0.03em;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-features li {
  padding: 0.6rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li .check {
  color: var(--neon-blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== Device Tiers (inside pricing cards) ===== */
.device-tiers {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.device-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.device-tier:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--neon-blue);
  box-shadow: 0 0 12px color-mix(in srgb, var(--neon-blue) 40%, transparent);
  transform: translateY(-2px) scale(1.02);
}

.device-tier.featured-tier {
  background: color-mix(in srgb, var(--neon-blue) 12%, rgba(255, 255, 255, 0.04)) !important;
  border-color: var(--neon-blue) !important;
  box-shadow: 0 0 18px color-mix(in srgb, var(--neon-blue) 60%, transparent) !important;
  transform: translateY(-2px) scale(1.02);
}


.tier-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tier-svg {
  width: 16px;
  height: 16px;
  color: var(--neon-blue);
  flex-shrink: 0;
}

.tier-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.tier-price {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ===== Device Cards ===== */
#device-android { --brand-color: #3DDC84; --brand-color-rgb: 61, 220, 132; }
#device-smarttv { --brand-color: #00AEEF; --brand-color-rgb: 0, 174, 239; }
#device-firetv { --brand-color: #FF9900; --brand-color-rgb: 255, 153, 0; }
#device-roku { --brand-color: #84329B; --brand-color-rgb: 132, 50, 155; }
#device-apple { --brand-color: #FFFFFF; --brand-color-rgb: 255, 255, 255; }
#device-xiaomi { --brand-color: #FF6700; --brand-color-rgb: 255, 103, 0; }
#device-tvbox { --brand-color: #9b5de5; --brand-color-rgb: 155, 93, 229; }

.device-card {
  padding: 1.5rem !important;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}

.device-logo-wrapper {
  height: 64px;
  width: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.device-logo-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-color) 0%, transparent 70%);
  opacity: 0.15;
  transition: all 0.4s ease;
}

.device-card img {
  max-height: 32px;
  width: auto;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.device-card:hover {
  border-color: var(--brand-color);
  box-shadow: 0 10px 30px rgba(var(--brand-color-rgb), 0.15);
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.04);
}

.device-card:hover .device-logo-wrapper {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.05);
}

.device-card:hover .device-logo-wrapper::after {
  opacity: 0.4;
}

.device-card:hover img {
  transform: scale(1.1) rotate(2deg);
}

.device-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 0.25rem;
  transition: all 0.3s ease;
}

.device-card:hover h3 {
  color: var(--brand-color);
}

/* ===== FAQ Section ===== */
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  color: var(--neon-blue);
}

.faq-question .icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  color: var(--neon-blue);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding-bottom: 1.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== Contact Section ===== */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
}

.contact-glow.blue {
  background: var(--neon-blue);
  top: -100px;
  left: -100px;
}

.contact-glow.pink {
  background: var(--neon-pink);
  bottom: -100px;
  right: -100px;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--border-subtle);
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--neon-blue);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== Floating WhatsApp Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-smooth);
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}

/* ===== Neon Line Divider ===== */
.neon-divider {
  height: 2px;
  background: var(--gradient-primary);
  border: none;
  opacity: 0.3;
  margin: 0;
}

/* ===== Glow Orbs Background ===== */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
  pointer-events: none;
}

/* ===== Stats Section ===== */
.stat-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.stat-card:hover {
  border-color: rgba(0, 174, 239, 0.3);
  box-shadow: var(--glow-blue);
  transform: translateY(-4px);
}

.stat-number {
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

/* ===== Testimonials Section ===== */
.testimonial-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border-subtle);
  height: 100%;
}

.testimonial-card:hover {
  border-color: rgba(255, 20, 147, 0.3);
  box-shadow: var(--glow-pink);
}

.avatar-gradient {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
  box-shadow: 0 0 10px rgba(0, 174, 239, 0.2);
}

/* ===== Testimonials Slider ===== */
.testimonials-slider-container {
  position: relative;
  padding: 0 50px;
}

.testimonials-track {
  scrollbar-width: none; /* Firefox */
}

.testimonials-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.testimonials-track .testimonial-card {
  flex: 0 0 350px;
  max-width: 350px;
  snap-align: start;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.slider-arrow:hover {
  background: var(--bg-card-hover);
  border-color: var(--neon-pink);
  box-shadow: var(--glow-pink);
}

.slider-arrow.left {
  left: 0;
}

.slider-arrow.right {
  right: 0;
}

.star-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

@media (max-width: 640px) {
  .testimonials-slider-container {
    padding: 0;
  }
  
  .slider-arrow {
    display: none;
  }

  .testimonials-track .testimonial-card {
    flex: 0 0 290px;
    max-width: 290px;
  }
}

/* ===== Payments Section ===== */
.payment-card {
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.payment-card:hover {
  border-color: rgba(0, 174, 239, 0.3);
  box-shadow: var(--glow-blue);
  transform: translateY(-4px);
}

.payment-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.payment-card:hover .payment-icon-wrapper {
  background: rgba(0, 174, 239, 0.1);
  border-color: rgba(0, 174, 239, 0.3);
  transform: scale(1.05);
}

.payment-svg {
  width: 28px;
  height: 28px;
  color: var(--neon-blue);
  transition: var(--transition-smooth);
}

.payment-card:hover .payment-svg {
  color: var(--text-primary);
  filter: drop-shadow(0 0 8px var(--neon-blue));
}

/* ===== Downloader Code Styling ===== */
/* ===== Downloader Code Base Styling ===== */
.downloader-code {
  padding: 0.65rem 0.85rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}

.downloader-code:hover {
  border-color: rgba(255, 20, 147, 0.4);
  background: rgba(255, 20, 147, 0.08);
  box-shadow: 0 0 15px rgba(255, 20, 147, 0.2);
  transform: translateY(-2px);
}

.downloader-code .code,
.downloader-code .code-val {
  font-size: 1.35rem;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: left;
  background: linear-gradient(135deg, #FFFFFF 30%, #FF1493 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Back to Top Button ===== */
.back-to-top-btn {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--neon-blue);
  box-shadow: var(--glow-blue);
  color: var(--neon-blue);
  transform: translateY(-3px);
}

/* ===== Lightbox Modal ===== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-image {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 0 50px rgba(0, 174, 239, 0.2);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-image {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  color: var(--neon-pink);
  transform: scale(1.1);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    display: none !important;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons a {
    text-align: center;
    justify-content: center;
  }

  .pricing-card.popular::before {
    right: -35px;
    font-size: 0.65rem;
  }

  .whatsapp-float {
    bottom: 16px;
    left: 16px;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }

  .back-to-top-btn {
    bottom: 80px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
  }

  .pricing-price {
    font-size: 2.5rem;
  }
}

/* ===== Logo Breathing Animation ===== */
@keyframes breathe {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 5px rgba(0, 174, 239, 0.4));
  }
  50% {
    transform: scale(1.04);
    filter: drop-shadow(0 0 15px rgba(255, 20, 147, 0.6));
  }
}

.nav-logo, .footer-logo, .breathe {
  animation: breathe 3s ease-in-out infinite;
  display: inline-block;
  transform-origin: center;
}

/* ===== Custom Cursor (Ultra-Fluid 120 FPS GPU Accelerated) ===== */
body {
  cursor: none;
}

a, button, select, input, textarea, .faq-question, .star-btn, .lightbox-trigger, .downloader-code, .app-btn {
  cursor: none !important;
}

.custom-cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--neon-pink);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1000000;
  will-change: transform;
  transition: background-color 0.2s ease, width 0.2s ease, height 0.2s ease;
}

.custom-cursor-outline {
  width: 32px;
  height: 32px;
  border: 2px solid var(--neon-blue);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 999999;
  will-change: transform;
  transition: border-color 0.2s ease, width 0.2s ease, height 0.2s ease;
}

.custom-cursor-dot.cursor-hover {
  background-color: var(--neon-blue);
  width: 12px;
  height: 12px;
}

.custom-cursor-outline.cursor-hover {
  border-color: var(--neon-pink);
  width: 44px;
  height: 44px;
}

@media (pointer: coarse) {
  .custom-cursor-dot, .custom-cursor-outline {
    display: none !important;
  }
  body, a, button, select, input, textarea, .faq-question, .star-btn, .lightbox-trigger, .downloader-code, .app-btn {
    cursor: auto !important;
  }
}

/* ===== Virtual Assistant (Lorelay) ===== */
.assistant-container {
  position: relative;
  z-index: 1000;
}

/* Float Button */
.assistant-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  transition: var(--transition-smooth);
  animation: float 3s ease-in-out infinite, borderGlow 4s linear infinite;
  box-shadow: 0 0 10px rgba(0, 174, 239, 0.4);
}

.assistant-float:hover {
  transform: scale(1.1);
}

.assistant-avatar-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: visible;
}

.assistant-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg-dark);
}

.assistant-status-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background-color: #2ec939;
  border: 2px solid var(--bg-dark);
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(46, 201, 57, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(46, 201, 57, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(46, 201, 57, 0); }
}

@keyframes borderGlow {
  0%, 100% {
    box-shadow: 0 0 12px #bf55ec, 0 0 25px color-mix(in srgb, var(--neon-blue) 50%, transparent);
  }
  50% {
    box-shadow: 0 0 22px var(--neon-pink), 0 0 35px color-mix(in srgb, var(--neon-blue) 80%, transparent);
  }
}

/* Toast Welcome Tooltip */
.assistant-toast {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 250px;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 16px;
  z-index: 997;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.assistant-toast.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.assistant-toast-content {
  position: relative;
}

.assistant-toast-content p {
  font-size: 0.8rem;
  line-height: 1.4;
  color: white;
  padding-right: 12px;
}

.assistant-toast-close {
  position: absolute;
  top: -4px;
  right: -4px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 2px;
}

.assistant-toast-close:hover {
  color: white;
}

.assistant-toast-arrow {
  position: absolute;
  bottom: -6px;
  right: 20px;
  width: 12px;
  height: 12px;
  background: rgba(10, 10, 10, 0.9);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(45deg);
}

/* Chat Window Widget */
.assistant-chat-window {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 370px;
  height: 500px;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  z-index: 999;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
}

.assistant-chat-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Chat Header */
.assistant-chat-header {
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.assistant-chat-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.assistant-header-avatar {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.assistant-header-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.assistant-chat-name {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

.assistant-chat-status {
  font-size: 0.7rem;
  color: #2ec939;
  display: flex;
  align-items: center;
  gap: 4px;
}

.assistant-chat-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.assistant-chat-close:hover {
  color: white;
}

/* Messages Area */
.assistant-chat-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.assistant-msg-row {
  display: flex;
  width: 100%;
}

.assistant-sent {
  justify-content: flex-end;
}

.assistant-received {
  justify-content: flex-start;
}

.assistant-msg-bubble {
  max-width: 80%;
  padding: 10px 14px;
  font-size: 0.85rem;
  line-height: 1.4;
  word-wrap: break-word;
}

.assistant-sent .assistant-msg-bubble {
  background: linear-gradient(135deg, var(--neon-blue), #0077B6);
  border-radius: 18px 18px 2px 18px;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 174, 239, 0.2);
}

.assistant-received .assistant-msg-bubble {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px 18px 18px 2px;
  color: white;
}

.assistant-msg-bubble a {
  color: var(--neon-blue);
  text-decoration: underline;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.assistant-msg-bubble a:hover {
  color: var(--neon-pink);
}

/* Quick Options */
.assistant-quick-options {
  padding: 8px 16px 12px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  background: rgba(0, 0, 0, 0.1);
  max-height: 140px;
  overflow-y: auto;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              border-color 0.3s ease;
}

.assistant-quick-options.collapsed {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  pointer-events: none;
  border-top-color: transparent;
  overflow: hidden;
}

.assistant-toggle-options {
  background: rgba(255, 255, 255, 0.02);
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--neon-blue);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 10px 16px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.assistant-toggle-options:hover {
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.assistant-toggle-options::after {
  content: '▼';
  font-size: 0.65rem;
  transition: transform 0.3s ease;
  color: rgba(255, 255, 255, 0.4);
}

.assistant-toggle-options.active::after {
  transform: rotate(-180deg);
  color: var(--neon-blue);
}

.quick-opt-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.quick-opt-btn:hover {
  background: rgba(0, 174, 239, 0.1);
  border-color: var(--neon-blue);
  color: white;
  transform: translateY(-1px);
}

/* Chat Input Form */
.assistant-chat-input-area {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 12px;
}

.assistant-input-field {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 10px 16px;
  color: white;
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition-smooth);
}

.assistant-input-field:focus {
  border-color: var(--neon-blue);
  box-shadow: 0 0 10px rgba(0, 174, 239, 0.15);
}

.assistant-send-btn {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-pink));
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.assistant-send-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 6px;
}

.typing-indicator span {
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  animation: typing 1.4s infinite both;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* Media Query Adaptations for Mobile */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 16px;
    left: 16px;
    width: 52px;
    height: 52px;
  }
  .assistant-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
  .assistant-toast {
    bottom: 80px;
    right: 16px;
    width: 220px;
  }
  .assistant-chat-window {
    bottom: 80px;
    right: 16px;
    width: calc(100% - 32px);
    height: 420px;
  }
}

/* ===== Hero Background Slideshow (Fades One by One, tivi.fun style) ===== */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: var(--bg-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.5s ease-in-out;
  transform-origin: center;
}

.hero-slide.active {
  opacity: 0.35;
  z-index: 1;
  animation: kenBurns 6.5s ease-out forwards;
}

.hero-slideshow-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 1) 100%
  );
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

/* Fade-in Animation for Centered Hero Content */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}

/* ===== IPTV Premium Promotional Card ===== */
#iptv-premium {
  background: radial-gradient(circle at 50% 50%, rgba(255, 20, 147, 0.05), transparent 60%);
}

.iptv-premium-card {
  position: relative;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  animation: floatSway 6s ease-in-out infinite;
  overflow: hidden;
}

@keyframes floatSway {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Neon rotating border glow effect */
.premium-glow-border {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-pink), var(--neon-blue));
  background-size: 200% 200%;
  -webkit-mask: 
     linear-gradient(#fff 0 0) content-box, 
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  animation: borderRotate 4s linear infinite;
  opacity: 0.8;
}

@keyframes borderRotate {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.iptv-premium-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.12) 0%, transparent 60%);
  pointer-events: none;
  animation: rotateBg 15s linear infinite;
}

@keyframes rotateBg {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.iptv-premium-card.glass-card:hover {
  transform: none !important;
  border-color: rgba(255, 20, 147, 0.3) !important;
  box-shadow: 0 20px 50px rgba(0, 174, 239, 0.2), 0 0 30px rgba(255, 20, 147, 0.2) !important;
}

/* ===== Fancy Rotating Text for IPTV Premium ===== */
.fancy-text-carousel {
  display: inline-block;
  vertical-align: middle;
  height: 32px;
  position: relative;
  width: 160px;
}

.fancy-text-item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(15px);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  text-align: left;
}

.fancy-text-item.active {
  opacity: 1;
  transform: translateY(0);
}

.fancy-text-item.exit {
  opacity: 0;
  transform: translateY(-15px);
}

/* Floating animation for device mockup inside Premium card */
.animate-float-devices {
  animation: floatDevices 6s ease-in-out infinite;
}

@keyframes floatDevices {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

/* ==========================================================================
   Sección de Compatibilidad: Estilos de Colores Reales de Marca
   ========================================================================== */

/* Android - Verde #3DDC84 */
#device-android {
  border-color: rgba(61, 220, 132, 0.15);
}
#device-android h3 {
  color: #3DDC84 !important;
  text-shadow: 0 0 10px rgba(61, 220, 132, 0.25);
  transition: var(--transition-smooth);
}
#device-android img {
  filter: invert(74%) sepia(50%) saturate(627%) hue-rotate(92deg) brightness(96%) contrast(90%);
}
#device-android:hover {
  border-color: #3DDC84 !important;
  box-shadow: 0 0 25px rgba(61, 220, 132, 0.35) !important;
}
#device-android:hover img {
  filter: invert(74%) sepia(50%) saturate(627%) hue-rotate(92deg) brightness(96%) contrast(90%) drop-shadow(0 0 8px rgba(61, 220, 132, 0.6));
}

/* Smart TV - Celeste/Cian #00AEEF */
#device-smarttv {
  border-color: rgba(0, 174, 239, 0.15);
}
#device-smarttv h3 {
  color: #00AEEF !important;
  text-shadow: 0 0 10px rgba(0, 174, 239, 0.25);
  transition: var(--transition-smooth);
}
#device-smarttv img {
  filter: invert(54%) sepia(85%) saturate(1914%) hue-rotate(167deg) brightness(101%) contrast(101%);
}
#device-smarttv:hover {
  border-color: #00AEEF !important;
  box-shadow: 0 0 25px rgba(0, 174, 239, 0.35) !important;
}
#device-smarttv:hover img {
  filter: invert(54%) sepia(85%) saturate(1914%) hue-rotate(167deg) brightness(101%) contrast(101%) drop-shadow(0 0 8px rgba(0, 174, 239, 0.6));
}

/* Fire TV - Naranja #FF9900 */
#device-firetv {
  border-color: rgba(255, 153, 0, 0.15);
}
#device-firetv h3 {
  color: #FF9900 !important;
  text-shadow: 0 0 10px rgba(255, 153, 0, 0.25);
  transition: var(--transition-smooth);
}
#device-firetv img {
  filter: invert(65%) sepia(87%) saturate(1535%) hue-rotate(360deg) brightness(102%) contrast(106%);
}
#device-firetv:hover {
  border-color: #FF9900 !important;
  box-shadow: 0 0 25px rgba(255, 153, 0, 0.35) !important;
}
#device-firetv:hover img {
  filter: invert(65%) sepia(87%) saturate(1535%) hue-rotate(360deg) brightness(102%) contrast(106%) drop-shadow(0 0 8px rgba(255, 153, 0, 0.6));
}

/* Roku - Púrpura #8F3E97 */
#device-roku {
  border-color: rgba(143, 62, 151, 0.15);
}
#device-roku h3 {
  color: #8F3E97 !important;
  text-shadow: 0 0 10px rgba(143, 62, 151, 0.25);
  transition: var(--transition-smooth);
}
#device-roku img {
  filter: invert(27%) sepia(83%) saturate(2152%) hue-rotate(264deg) brightness(88%) contrast(97%);
}
#device-roku:hover {
  border-color: #8F3E97 !important;
  box-shadow: 0 0 25px rgba(143, 62, 151, 0.35) !important;
}
#device-roku:hover img {
  filter: invert(27%) sepia(83%) saturate(2152%) hue-rotate(264deg) brightness(88%) contrast(97%) drop-shadow(0 0 8px rgba(143, 62, 151, 0.6));
}

/* Apple TV - Blanco/Plateado #FFFFFF */
#device-apple {
  border-color: rgba(255, 255, 255, 0.15);
}
#device-apple h3 {
  color: #FFFFFF !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
  transition: var(--transition-smooth);
}
#device-apple img {
  filter: invert(100%);
}
#device-apple:hover {
  border-color: #FFFFFF !important;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.25) !important;
}
#device-apple:hover img {
  filter: invert(100%) drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

/* Xiaomi - Naranja #FF6700 */
#device-xiaomi {
  border-color: rgba(255, 103, 0, 0.15);
}
#device-xiaomi h3 {
  color: #FF6700 !important;
  text-shadow: 0 0 10px rgba(255, 103, 0, 0.25);
  transition: var(--transition-smooth);
}
#device-xiaomi img {
  filter: invert(47%) sepia(95%) saturate(1837%) hue-rotate(360deg) brightness(102%) contrast(106%);
}
#device-xiaomi:hover {
  border-color: #FF6700 !important;
  box-shadow: 0 0 25px rgba(255, 103, 0, 0.35) !important;
}
#device-xiaomi:hover img {
  filter: invert(47%) sepia(95%) saturate(1837%) hue-rotate(360deg) brightness(102%) contrast(106%) drop-shadow(0 0 8px rgba(255, 103, 0, 0.6));
}

/* TV Box - Celeste/Azul #00AEEF */
#device-tvbox {
  border-color: rgba(0, 174, 239, 0.15);
}
#device-tvbox h3 {
  color: #00AEEF !important;
  text-shadow: 0 0 10px rgba(0, 174, 239, 0.25);
  transition: var(--transition-smooth);
}
#device-tvbox img {
  filter: invert(54%) sepia(85%) saturate(1914%) hue-rotate(167deg) brightness(101%) contrast(101%);
}
#device-tvbox:hover {
  border-color: #00AEEF !important;
  box-shadow: 0 0 25px rgba(0, 174, 239, 0.35) !important;
}
#device-tvbox:hover img {
  filter: invert(54%) sepia(85%) saturate(1914%) hue-rotate(167deg) brightness(101%) contrast(101%) drop-shadow(0 0 8px rgba(0, 174, 239, 0.6));
}

/* ===== Live Broadcast Badge ===== */
.live-badge {
  background: rgba(239, 68, 68, 0.08) !important;
  border: 1px solid rgba(239, 68, 68, 0.3) !important;
  color: #ef4444 !important;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.1);
  transition: var(--transition-smooth);
}
.live-badge:hover {
  border-color: rgba(239, 68, 68, 0.6) !important;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.3) !important;
}
.pulse-dot-red {
  width: 8px;
  height: 8px;
  background-color: #ef4444;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
  animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

/* ===== Premium Interactive Enhancements ===== */
.pricing-card {
  transition: var(--transition-smooth);
}
.pricing-card:hover {
  transform: translateY(-6px) scale(1.02) !important;
  border-color: rgba(255, 20, 147, 0.4) !important;
  box-shadow: 0 12px 35px rgba(255, 20, 147, 0.2), var(--glow-pink) !important;
}
.pricing-card.popular:hover {
  border-color: rgba(0, 174, 239, 0.5) !important;
  box-shadow: 0 12px 35px rgba(0, 174, 239, 0.2), var(--glow-blue) !important;
}

.platform-card {
  transition: var(--transition-smooth);
}
.platform-card:hover {
  transform: translateY(-5px) scale(1.06) !important;
}

.custom-cursor-dot, .custom-cursor-outline {
  mix-blend-mode: difference;
}

/* ===== App Cards Interactive Glows ===== */
#app-rtvgo-2, #app-rtvgo-ultra, #app-rtvgo-pc, #app-rtvgo-web, #app-roku {
  transition: var(--transition-smooth);
}
#app-rtvgo-2:hover, #app-rtvgo-pc:hover {
  border-color: rgba(0, 174, 239, 0.4) !important;
  box-shadow: 0 10px 30px rgba(0, 174, 239, 0.25), var(--glow-blue) !important;
  transform: translateY(-4px) scale(1.02);
}
#app-rtvgo-web:hover {
  border-color: rgba(16, 185, 129, 0.4) !important;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.25), 0 0 20px rgba(16, 185, 129, 0.3) !important;
  transform: translateY(-4px) scale(1.02);
}
#app-rtvgo-ultra:hover {
  border-color: rgba(255, 20, 147, 0.4) !important;
  box-shadow: 0 10px 30px rgba(255, 20, 147, 0.25), var(--glow-pink) !important;
  transform: translateY(-4px) scale(1.02);
}
#app-roku:hover {
  border-color: rgba(143, 62, 151, 0.4) !important;
  box-shadow: 0 10px 30px rgba(143, 62, 151, 0.25), 0 0 20px rgba(143, 62, 151, 0.3) !important;
  transform: translateY(-4px) scale(1.02);
}

/* Uniform App Download Buttons */
.app-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #ffffff !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  box-sizing: border-box;
}
.app-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
}

.app-btn-blue {
  background: linear-gradient(135deg, #00AEEF 0%, #0077B6 100%);
  box-shadow: 0 4px 15px rgba(0, 174, 239, 0.3);
}
.app-btn-blue:hover {
  box-shadow: 0 6px 20px rgba(0, 174, 239, 0.5);
}

.app-btn-pink {
  background: linear-gradient(135deg, #FF1493 0%, #C71585 100%);
  box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}
.app-btn-pink:hover {
  box-shadow: 0 6px 20px rgba(255, 20, 147, 0.5);
}

.app-btn-cyan {
  background: linear-gradient(135deg, #06B6D4 0%, #2563EB 100%);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}
.app-btn-cyan:hover {
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.5);
}

.app-btn-emerald {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.app-btn-emerald:hover {
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.app-btn-purple {
  background: linear-gradient(135deg, #8F3E97 0%, #6B21A8 100%);
  box-shadow: 0 4px 15px rgba(143, 62, 151, 0.3);
}
.app-btn-purple:hover {
  box-shadow: 0 6px 20px rgba(143, 62, 151, 0.5);
}

/* Legacy button compatibility */
.btn-download-classic, .btn-download-modern, .btn-download-roku {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

/* Interactive Copy-to-Clipboard Downloader Box */
.copy-code-trigger {
  cursor: pointer !important;
  position: relative;
  transition: var(--transition-smooth);
}
.copy-code-trigger:active {
  transform: scale(0.97);
}

.code-val-web {
  font-size: 1.05rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: left;
  color: #10B981;
}

.copy-badge {
  font-size: 0.6rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 7px;
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.2s ease;
  pointer-events: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.copy-code-trigger:hover .copy-badge {
  background: var(--gradient-pink);
  color: white;
  border-color: transparent;
  box-shadow: 0 0 8px rgba(255, 20, 147, 0.5);
  transform: scale(1.05);
}

/* ===== Hero Logo Breathing Animation ===== */
.hero-logo-breathing-container {
  position: relative;
  display: inline-block;
  padding: 20px;
  filter: drop-shadow(0 0 35px rgba(0, 174, 239, 0.25));
  animation: float-gently 6s ease-in-out infinite alternate;
}

.hero-logo-breathing {
  max-width: 400px;
  width: 100%;
  height: auto;
  object-fit: contain;
  animation: breathe-logo 4s ease-in-out infinite alternate;
}

@keyframes float-gently {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}

@keyframes breathe-logo {
  0% {
    transform: scale(0.96);
    filter: drop-shadow(0 0 20px rgba(255, 20, 147, 0.2));
  }
  100% {
    transform: scale(1.04);
    filter: drop-shadow(0 0 45px rgba(0, 174, 239, 0.45));
  }
}





.text-xxs {
  font-size: 0.65rem;
}

.live-dot-red-pulse {
  width: 8px;
  height: 8px;
  background-color: #ef4444;
  border-radius: 50%;
  animation: pulse-live 1.2s infinite;
}

@keyframes pulse-live {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

/* ===== Telegram Custom Tooltip ===== */
.telegram-tooltip-btn {
  position: relative;
}

.telegram-tooltip-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 136, 204, 0.35);
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 25px rgba(0, 136, 204, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}

.telegram-tooltip-btn::after {
  content: '';
  position: absolute;
  bottom: 112%;
  left: 50%;
  transform: translateX(-50%) rotate(45deg) scale(0.9);
  border-right: 1px solid rgba(0, 136, 204, 0.35);
  border-bottom: 1px solid rgba(0, 136, 204, 0.35);
  background: rgba(10, 10, 10, 0.95);
  width: 8px;
  height: 8px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
}

.telegram-tooltip-btn:hover::before {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  bottom: 135%;
}

.telegram-tooltip-btn:hover::after {
  opacity: 1;
  transform: translateX(-50%) rotate(45deg) scale(1);
  bottom: 125%;
}

/* ===== Neon Splash Screen Loader (Punto 3) ===== */
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.splash-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.splash-content {
  text-align: center;
  max-width: 320px;
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.splash-logo {
  height: 100px;
  width: auto;
  margin-bottom: 2rem;
  animation: splashBreathe 2s ease-in-out infinite alternate;
}

@keyframes splashBreathe {
  0% {
    transform: scale(0.96);
    filter: drop-shadow(0 0 15px color-mix(in srgb, var(--neon-pink) 35%, transparent));
  }
  100% {
    transform: scale(1.04);
    filter: drop-shadow(0 0 35px color-mix(in srgb, var(--neon-blue) 60%, transparent));
  }
}

.splash-loader-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}

.splash-loader-progress {
  width: 0%;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 10px;
  box-shadow: 0 0 10px var(--neon-blue);
  animation: splashProgress 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes splashProgress {
  0% { width: 0%; }
  40% { width: 35%; }
  70% { width: 75%; }
  100% { width: 100%; }
}

.splash-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: pulseOpacity 1.5s ease-in-out infinite;
}

@keyframes pulseOpacity {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ===== Server Status Badge (Punto 4) ===== */
.server-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.server-status-badge:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: color-mix(in srgb, var(--neon-blue) 35%, transparent);
  box-shadow: 0 4px 15px color-mix(in srgb, var(--neon-blue) 12%, transparent);
  transform: translateY(-1px);
}

.server-status-dot {
  width: 7px;
  height: 7px;
  background-color: #3DDC84;
  border-radius: 50%;
  box-shadow: 0 0 8px #3DDC84;
  animation: pulseGreen 1.6s infinite;
}

@keyframes pulseGreen {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(61, 220, 132, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(61, 220, 132, 0);
  }
}

/* ===== Interactive Setup Wizard Modal (Punto 2) ===== */
.wizard-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
}

.wizard-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.wizard-modal-card {
  width: 100%;
  max-width: 680px;
  border-radius: 24px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(15, 15, 15, 0.9) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), var(--glow-blue) !important;
  padding: 30px !important;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.wizard-modal-overlay.active .wizard-modal-card {
  transform: scale(1);
}

.wizard-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 1.5rem;
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.wizard-modal-close:hover {
  background: var(--gradient-pink);
  border-color: transparent;
  color: white;
  transform: rotate(90deg);
  box-shadow: 0 0 10px var(--neon-pink);
}

/* Device Selector Tabs */
.wizard-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 15px;
}

@media (max-width: 600px) {
  .wizard-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

.wizard-tab-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 10px 8px;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  transition: var(--transition-smooth);
}

.wizard-tab-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: color-mix(in srgb, var(--neon-blue) 40%, transparent);
}

.wizard-tab-btn.active {
  background: rgba(0, 174, 239, 0.08);
  border-color: var(--neon-blue);
  color: white;
  box-shadow: 0 0 15px color-mix(in srgb, var(--neon-blue) 20%, transparent);
}

.tab-icon {
  font-size: 1.3rem;
}

.tab-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Steps Indicators */
.wizard-steps-indicator {
  max-width: 320px;
  margin: 0 auto;
}

.step-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.step-dot.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
  box-shadow: 0 0 10px var(--neon-blue);
}

.step-dot.complete {
  background: #3DDC84;
  border-color: transparent;
  color: white;
}

.step-line {
  flex-grow: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0 10px;
}

/* Step Content Styles */
.wizard-steps-container {
  min-height: 180px;
}

.wizard-step-panel {
  animation: fadeInStep 0.4s ease forwards;
}

@keyframes fadeInStep {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.wizard-step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.wizard-step-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.wizard-step-graphic {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 12px;
  margin: 15px 0;
  text-align: center;
}

/* ===== Accent Color Selector Sidebar (Punto 5) ===== */
.accent-selector-widget {
  position: fixed;
  right: 24px;
  bottom: 220px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

@media (max-width: 768px) {
  .accent-selector-widget {
    right: 16px;
    bottom: 190px;
  }
}

.accent-toggle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.accent-toggle-btn:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 0 15px color-mix(in srgb, var(--neon-blue) 40%, transparent);
  transform: translateY(-2px);
}

.accent-options-panel {
  position: absolute;
  bottom: 54px;
  right: 0;
  width: 150px;
  padding: 15px 12px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(10, 10, 10, 0.95) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accent-selector-widget.active .accent-options-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.theme-option-btn {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: left;
}

.theme-option-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

.theme-option-btn.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--neon-blue);
  color: white;
}

.theme-color-preview {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.theme-name {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ===== Kickoff Alert Toast Widget (Punto 6) ===== */
.kickoff-alert-widget {
  position: fixed;
  bottom: 24px;
  right: -360px;
  width: 330px;
  z-index: 9999;
  padding: 16px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(10, 10, 10, 0.95) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), var(--glow-blue) !important;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  opacity: 0;
  pointer-events: none;
}

.kickoff-alert-widget.active {
  right: 24px;
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 600px) {
  .kickoff-alert-widget {
    left: 16px;
    right: 16px;
    bottom: -150px;
    width: calc(100% - 32px);
  }
  .kickoff-alert-widget.active {
    bottom: 16px;
    right: 16px;
    opacity: 1;
  }
}

.kickoff-close-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.kickoff-close-btn:hover {
  color: white;
}

.kickoff-alert-icon {
  animation: alertIconShake 1.5s ease-in-out infinite;
}

@keyframes alertIconShake {
  0%, 100% { transform: rotate(0deg); }
  20%, 60% { transform: rotate(-15deg); }
  40%, 80% { transform: rotate(15deg); }
}

/* ===== TMDB Showcased Content Badge (Punto TMDB) ===== */
.hero-showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 10px color-mix(in srgb, var(--neon-blue) 15%, transparent);
  transition: var(--transition-smooth);
}

.showcase-tag {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--neon-pink);
  letter-spacing: 0.05em;
  background: color-mix(in srgb, var(--neon-pink) 15%, transparent);
  padding: 2px 8px;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--neon-pink) 25%, transparent);
  white-space: nowrap;
}

.showcase-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  transition: all 0.3s ease;
}

/* ===== TMDB Upcoming Releases Carousel (Punto 2) ===== */
.upcoming-carousel-container {
  position: relative;
  width: 100%;
}

.upcoming-carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 4px 24px 4px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.upcoming-carousel-track::-webkit-scrollbar {
  height: 6px;
}

.upcoming-carousel-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
}

.upcoming-carousel-track::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 10px;
}

.upcoming-movie-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

@media (max-width: 600px) {
  .upcoming-movie-card {
    flex: 0 0 160px;
  }
}

.upcoming-movie-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--neon-pink) 35%, transparent);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--neon-pink) 15%, transparent);
}

.upcoming-poster-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
}

.upcoming-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.upcoming-movie-card:hover .upcoming-poster-img {
  transform: scale(1.08);
}

.upcoming-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  background: var(--gradient-pink);
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  box-shadow: 0 0 8px var(--neon-pink);
}

.upcoming-movie-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.upcoming-movie-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.upcoming-movie-date {
  font-size: 0.65rem;
  color: var(--text-muted);
}

/* ===== Trust and Satisfaction Section (Punto 3) ===== */
.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.trust-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.15);
}

.trust-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

.trust-card:hover .trust-icon-wrapper {
  transform: scale(1.08) rotate(5deg);
  background: rgba(255, 255, 255, 0.05);
}

/* ===== Animated Glow Border for Recommended Plan (Punto 4) ===== */
.pricing-card.popular {
  position: relative;
  z-index: 1;
}

.pricing-card.popular::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: conic-gradient(
    from 0deg,
    transparent 20%,
    var(--neon-blue) 45%,
    var(--neon-pink) 55%,
    transparent 80%
  );
  border-radius: calc(var(--radius-lg) + 2px);
  z-index: -2;
  animation: rotateBorder 4s linear infinite;
}

.pricing-card.popular::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  z-index: -1;
  transition: var(--transition-smooth);
}

.pricing-card.popular:hover::after {
  background: rgba(22, 22, 22, 0.96);
}

@keyframes rotateBorder {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ===== FAQ Smart Search & Categories (Punto 5) ===== */
.faq-controls {
  width: 100%;
}

#faq-search-input {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#faq-search-input:focus {
  box-shadow: 0 0 15px color-mix(in srgb, var(--neon-blue) 25%, transparent);
}

.faq-cat-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 6px 16px;
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.faq-cat-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: color-mix(in srgb, var(--neon-blue) 40%, transparent);
  color: white;
}

.faq-cat-btn.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
  box-shadow: 0 0 12px color-mix(in srgb, var(--neon-blue) 35%, transparent);
}

/* FAQ Item visibility transitions */
.faq-item {
  transition: opacity 0.35s ease, transform 0.35s ease, max-height 0.45s ease, padding 0.35s ease, margin 0.35s ease, border-bottom-color 0.35s ease;
  overflow: hidden;
  max-height: 500px;
}

.faq-item.hidden-faq {
  opacity: 0 !important;
  transform: translateY(-8px) scale(0.98);
  max-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  border-bottom: 1px solid transparent !important;
  pointer-events: none;
}



/* ===== Real-Time Live Status Dot ===== */
.live-dot {
  width: 6px;
  height: 6px;
  background-color: var(--neon-pink);
  border-radius: 50%;
  display: inline-block;
  animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 20, 147, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 5px rgba(255, 20, 147, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 20, 147, 0);
  }
}

/* ===== Pulsing Live Stream Buttons ===== */
.btn-match-stream.live-btn {
  background: linear-gradient(135deg, var(--neon-pink) 0%, color-mix(in srgb, var(--neon-pink) 70%, #000) 100%) !important;
  border-color: var(--neon-pink) !important;
  box-shadow: 0 0 15px color-mix(in srgb, var(--neon-pink) 40%, transparent) !important;
  animation: liveButtonPulse 2s infinite;
}

@keyframes liveButtonPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 20, 147, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 20, 147, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 20, 147, 0);
  }
}

/* ===== Timeline / Goal Events Styling ===== */
.match-timeline {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.timeline-event-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.event-name {
  font-family: var(--font-outfit), sans-serif;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.72rem;
}

.event-minute {
  font-family: var(--font-outfit), sans-serif;
  color: var(--neon-pink);
  font-weight: 700;
  font-size: 0.7rem;
}

.no-events-text {
  font-family: var(--font-outfit), sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  font-style: italic;
}

/* ===== Device Matcher Buttons ===== */
.device-matcher-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.45rem 0.9rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.25s ease;
}
.device-matcher-btn:hover, .device-matcher-btn.active {
  background: var(--gradient-blue);
  color: white;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(0, 174, 239, 0.4);
}

/* ===== Content Searcher Chips & Cards ===== */
.search-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.4rem 0.85rem;
  border-radius: 0.65rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.search-chip:hover, .search-chip.active {
  background: var(--gradient-pink);
  color: white;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(255, 20, 147, 0.4);
}

.content-search-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.85rem;
  padding: 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
}
.content-search-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--neon-blue);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 174, 239, 0.25);
}

/* ===== Calculator Checkbox Items ===== */
.service-calc-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.6rem 0.8rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.service-calc-item:hover {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.4);
}
.calc-checkbox {
  accent-color: #10B981;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.calc-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}







