/* ================================================
       DIRE TV PLAY - LIGHT BACKGROUND THEME
       VISIBLE HERO IMAGE (NO OPACITY)
       TRANSPARENT BOX for Hero Paragraph Text ONLY
       Extra Large Shadows on ALL Hero Text
       Larger Navbar Logo | Larger App Icons | Larger Feature Icons (NO FILTER)
       GOLD BACKGROUND on Footer (#D4AF37) | Footer Image 260px
       All original content preserved exactly
    ================================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #F5F7FB;
  color: #1A1A2E;
  overflow-x: hidden;
}

/* Light Theme Colors */
:root {
  --primary-white: #FFFFFF;
  --bg-light: #F5F7FB;
  --accent-gold: #D4AF37;
  --accent-dark: #B8960C;
  --text-dark: #1A1A2E;
  --text-gray: #4A4A5A;
  --text-light: #6B6B7A;
  --border-light: #E8ECF0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.08);
  --card-white: #FFFFFF;
  --hover-gold: rgba(212, 175, 55, 0.08);
}

/* Spinner */
#spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.mood-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--border-light);
  border-top: 3px solid var(--accent-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Navbar - Light Theme with LARGER LOGO on LEFT */
.navbar-mood {
  background: var(--primary-white);
  padding: 0.8rem 2rem;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1030;
}

.navbar-brand {
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  margin-right: auto !important;
}

/* LARGER LOGO SIZE */
.navbar-brand-logo {
  height: 120px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}

.nav-link-mood {
  color: var(--text-gray) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  transition: 0.3s;
  border-radius: 8px;
}

.nav-link-mood:hover,
.nav-link-mood.active {
  color: var(--accent-gold) !important;
  background: var(--hover-gold);
}

.btn-mood-primary {
  background: var(--accent-gold);
  color: var(--text-dark);
  padding: 0.6rem 1.5rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  font-size: 0.9rem;
}

.btn-mood-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--text-dark);
}

.btn-mood-outline {
  background: transparent;
  border: 1.5px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 0.6rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-mood-outline:hover {
  background: var(--accent-gold);
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* Hero Section - Light with VISIBLE HERO IMAGE & TRANSPARENT BOX FOR PARAGRAPH ONLY */
.hero-mood {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--primary-white);
}

.hero-background-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 0;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  background: transparent;
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Hero Badge with LARGE SHADOW - NO BOX */
.hero-badge-mood {
  display: inline-block;
  background: rgba(212, 175, 55, 0.25);
  backdrop-filter: blur(5px);
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  letter-spacing: 0.5px;
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.8), 2px 2px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* MAIN TITLE with EXTRA LARGE SHADOW - NO BOX */
.main-title-mood {
  font-size: 5rem;
  font-weight: 900;
  color: #FFFFFF;
  text-shadow: 6px 6px 18px rgba(0, 0, 0, 0.8), 3px 3px 8px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

/* SUBTITLE with EXTRA LARGE SHADOW - NO BOX */
.subtitle-light {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 5px 5px 14px rgba(0, 0, 0, 0.7), 2px 2px 6px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
}

/* DESCRIPTION with EXTRA LARGE SHADOW - WITH TRANSPARENT BOX BACKGROUND */
.hero-description-light {
  font-size: 1.2rem;
  font-weight: 500;
  color: #FFFFFF;
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.7), 2px 2px 5px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  /* TRANSPARENT BOX for paragraph only */
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  padding: 1.2rem 1.8rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Stats - Light */
.stats-grid-mood {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: -2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 3;
}

.stat-item-mood {
  background: var(--card-white);
  padding: 1rem 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--border-light);
  min-width: 110px;
  transition: 0.3s;
  box-shadow: var(--shadow-sm);
}

.stat-item-mood:hover {
  transform: translateY(-3px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.stat-number-mood {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-gold);
  display: block;
}

.stat-number-mood a {
  color: var(--accent-gold);
  text-decoration: none;
}

/* Glass Cards - Light */
.glass-card-mood,
.glass-card-mood-light {
  background: var(--card-white);
  border: 1px solid var(--border-light);
  border-radius: 28px;
  padding: 1.8rem;
  transition: 0.3s;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.glass-card-mood:hover,
.glass-card-mood-light:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.tv-img,
.qr-code-img {
  max-width: 100%;
  border-radius: 20px;
}

/* App Cards - LARGER ICONS */
.app-card-mood {
  background: var(--card-white);
  border-radius: 24px;
  padding: 1.5rem;
  text-align: center;
  transition: 0.3s;
  border: 1px solid var(--border-light);
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.app-card-mood:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

/* LARGER APP ICONS */
.app-icon-circle-mood img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1rem;
}

/* Larger App Title */
.app-card-mood h6 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

/* Larger App Buttons */
.btn-app-mood {
  background: rgba(212, 175, 55, 0.1);
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--accent-gold);
  text-decoration: none;
  margin: 0.25rem;
  display: inline-block;
  font-weight: 500;
  transition: 0.3s;
}

.btn-app-mood:hover {
  background: var(--accent-gold);
  color: var(--text-dark);
}

/* Pricing Cards - Light */
.pricing-card-mood {
  background: var(--card-white);
  border-radius: 28px;
  padding: 1.8rem;
  border: 1px solid var(--border-light);
  transition: 0.3s;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.pricing-card-mood:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-lg);
}

.price-amount-mood {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.price-features {
  list-style: none;
  padding: 0;
}

.price-features li {
  margin: 0.8rem 0;
  font-size: 0.9rem;
  color: var(--text-gray);
}

/* FAQ - Light */
.faq-item-mood {
  background: var(--card-white);
  border-radius: 20px;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.faq-question-mood {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-answer-mood {
  max-height: 0;
  padding: 0 1.5rem;
  overflow: hidden;
  transition: 0.3s ease;
  color: var(--text-gray);
}

.faq-item-mood.active .faq-answer-mood {
  max-height: 200px;
  padding: 0 1.5rem 1.2rem 1.5rem;
}

.faq-item-mood.active .fa-chevron-down {
  transform: rotate(180deg);
}

/* Features Icons - EXTRA LARGER SIZE & NO FILTER */
.feature-item-mood img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  transition: 0.3s;
}

.feature-item-mood img:hover {
  transform: scale(1.08);
}

/* Footer - GOLD BACKGROUND (#D4AF37) with LARGER TEXT & LARGER FOOTER IMAGE */
.footer-mood {
  background: #D4AF37;
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-mood h5 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #1A1A2E;
}

.footer-links-mood {
  list-style: none;
  padding: 0;
}

.footer-links-mood li {
  margin-bottom: 0.7rem;
}

.footer-links-mood li a {
  color: #1A1A2E;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s;
  font-weight: 500;
}

.footer-links-mood li a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* LARGER FOOTER IMAGE - 260px */
.footer-app-box img {
  max-width: 260px;
  width: 100%;
  height: auto;
}

.copyright-mixed {
  font-size: 0.9rem;
  color: #1A1A2E;
  font-weight: 500;
}

.copyright-mixed a {
  color: #1A1A2E;
  text-decoration: none;
  font-weight: 700;
}

.copyright-mixed a:hover {
  color: #FFFFFF;
}

.footer-divider {
  border-color: rgba(0, 0, 0, 0.15);
  margin: 1.5rem 0;
}

/* Floating Buttons */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #25D366;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: var(--shadow-md);
  z-index: 100;
  transition: 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--accent-gold);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 100;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* Utility Classes */
.text-muted-custom {
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
  .main-title-mood {
    font-size: 2.8rem;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.7), 2px 2px 6px rgba(0, 0, 0, 0.5);
  }

  .subtitle-light {
    font-size: 1.2rem;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.6);
  }

  .hero-description-light {
    font-size: 0.95rem;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
    padding: 0.8rem 1rem;
  }

  .hero-badge-mood {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  }

  .hero-content-wrapper {
    padding: 1rem;
  }

  .stats-grid-mood {
    gap: 0.8rem;
  }

  .stat-item-mood {
    padding: 0.6rem 1rem;
    min-width: 85px;
  }

  .stat-number-mood {
    font-size: 1.2rem;
  }

  .navbar-mood {
    padding: 0.5rem 1rem;
  }

  .navbar-brand-logo {
    height: 55px;
  }

  .app-icon-circle-mood img {
    width: 60px;
    height: 60px;
  }

  .feature-item-mood img {
    width: 75px;
    height: 75px;
  }

  .footer-mood h5 {
    font-size: 1rem;
  }

  .footer-links-mood li a {
    font-size: 0.85rem;
  }

  .footer-app-box img {
    max-width: 180px;
  }
}

@media (max-width: 1200px) {
  .navbar-collapse {
    background: var(--primary-white);
    padding: 1rem;
    border-radius: 16px;
    margin-top: 0.5rem;
    box-shadow: var(--shadow-md);
  }
}


html,
body {
  overflow-x: hidden;
}

img,
iframe {
  max-width: 100%;
}