/* MOOD PLAYER THEME - USA RED COLOR SCHEME */
:root {
  --mood-primary: #B22234;
  --mood-primary-dark: #8B1A1A;
  --mood-primary-light: #C63D3D;
  --mood-secondary: #D32F2F;
  --mood-accent: #E53935;
  --mood-dark: #1E1F2C;
  --mood-light-bg: #FFF8F8;
  --mood-card-bg: #FFFFFF;
  --mood-card-shadow: 0 10px 30px rgba(178, 34, 52, 0.08);
  --mood-text-dark: #1E1F2C;
  --mood-text-muted: #6B6B7A;
  --mood-white: #FFFFFF;
  --mood-gradient: linear-gradient(135deg, #B22234 0%, #C63D3D 100%);
  --mood-glass-bg: rgba(255, 255, 255, 0.98);
  --mood-border: rgba(178, 34, 52, 0.2);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--mood-light-bg);
  color: var(--mood-text-dark);
  overflow-x: hidden;
}

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

.mood-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(178, 34, 52, 0.2);
  border-top: 4px solid var(--mood-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

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

/* Navbar - WITH ORIGINAL HAMBURGER MENU */
.navbar-mood {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  padding: 0.3rem 1rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(178, 34, 52, 0.15);
  min-height: auto;
}

/* Desktop: single line navbar */
@media (min-width: 1200px) {
  .navbar-mood .container-fluid {
    flex-wrap: nowrap !important;
  }

  .navbar-mood .navbar-collapse {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
  }

  .navbar-mood .navbar-nav {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
  }

  .navbar-mood .navbar-nav .nav-link {
    white-space: nowrap;
  }

  .navbar-mood .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-mood .navbar-toggler {
    display: none !important;
  }
}

/* Mobile/Tablet: hamburger menu visible */
@media (max-width: 1199px) {
  .navbar-mood .navbar-toggler {
    display: block !important;
  }

  .navbar-mood .navbar-collapse {
    display: none !important;
  }

  .navbar-mood .navbar-collapse.show {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 1050;
  }

  .navbar-mood .navbar-nav {
    flex-direction: column !important;
    width: 100%;
  }

  .navbar-mood .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    text-align: center;
  }

  .navbar-mood .d-flex {
    flex-direction: column;
    width: 100%;
    margin-top: 0.5rem;
  }

  .navbar-mood .d-flex .btn-mood-primary,
  .navbar-mood .d-flex .btn-mood-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin: 0.25rem 0;
  }
}

/* LARGER navbar logo size */
.navbar-brand {
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  display: flex;
  align-items: center;
}

.navbar-brand-logo {
  height: 110px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0;
  padding: 0;
}

/* Nav link styling */
.nav-link-mood {
  color: var(--mood-text-dark) !important;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 0.2rem;
  padding: 0.5rem 0.9rem !important;
  border-radius: 50px;
  transition: all 0.3s;
  white-space: nowrap;
  line-height: 1.2;
}

.nav-link-mood:hover,
.nav-link-mood.active {
  background: rgba(178, 34, 52, 0.1);
  color: var(--mood-primary) !important;
}

/* Button sizes */
.btn-mood-primary {
  background: var(--mood-gradient);
  color: white;
  border: none;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(178, 34, 52, 0.3);
  white-space: nowrap;
}

.btn-mood-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(178, 34, 52, 0.4);
  color: white;
}

.btn-mood-outline {
  background: transparent;
  color: var(--mood-primary);
  border: 1.5px solid var(--mood-primary);
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.btn-mood-outline:hover {
  background: rgba(178, 34, 52, 0.1);
  color: var(--mood-primary-dark);
  border-color: var(--mood-primary-dark);
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 1400px) and (min-width: 1200px) {
  .nav-link-mood {
    font-size: 0.85rem;
    padding: 0.45rem 0.7rem !important;
  }

  .btn-mood-primary,
  .btn-mood-outline {
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
  }

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

@media (max-width: 1200px) and (min-width: 992px) {
  .navbar-brand-logo {
    height: 80px;
  }
}

@media (max-width: 768px) {
  .navbar-brand-logo {
    height: 55px;
  }
}

/* Hero Section */
.hero-mood {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem 4rem 1rem;
  overflow: hidden;
}

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

.soft-circle {
  position: absolute;
  background: radial-gradient(circle, rgba(178, 34, 52, 0.15), transparent);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.floating-particle {
  position: absolute;
  background: rgba(178, 34, 52, 0.2);
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  margin-top: -60px;
}

.hero-badge-mood {
  display: inline-block;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.main-title-mood {
  font-size: 4.2rem;
  font-weight: 800;
  color: #FFFFFF;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.4);
  display: inline-block;
  padding: 0.2rem 1rem;
  border-radius: 20px;
  backdrop-filter: blur(3px);
  margin-bottom: 0.5rem;
}

.subtitle-light {
  font-size: 1.35rem;
  color: #FFFFFF;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.3);
  display: inline-block;
  padding: 0.2rem 1rem;
  border-radius: 20px;
  backdrop-filter: blur(3px);
  margin-bottom: 1rem;
}

.hero-description-light {
  max-width: 700px;
  margin: 0 auto;
  color: #FFFFFF;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  backdrop-filter: blur(3px);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

/* Stats - SIMPLE STATS BAR */
.stats-grid-mood {
  background: var(--mood-card-bg);
  border-radius: 50px;
  padding: 0.2rem;
  margin-top: -3rem;
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  box-shadow: var(--mood-card-shadow);
  border: 1px solid rgba(178, 34, 52, 0.15);
}

.stat-item-mood {
  text-align: center;
  padding: 0.5rem;
}

.stat-number-mood {
  font-size: 2rem;
  font-weight: 800;
  color: var(--mood-primary);
}

/* Glass Cards */
.glass-card-mood {
  background: var(--mood-glass-bg);
  backdrop-filter: blur(12px);
  border-radius: 36px;
  padding: 1.8rem;
  border: 1px solid var(--mood-border);
  transition: all 0.3s;
  box-shadow: var(--mood-card-shadow);
}

.glass-card-mood:hover {
  transform: translateY(-5px);
}

.glass-card-mood-light {
  background: white;
  border-radius: 36px;
  padding: 2rem;
  border: 1px solid rgba(178, 34, 52, 0.15);
  box-shadow: var(--mood-card-shadow);
}

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

/* Apps Section */
.apps-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF5F5 100%);
  padding: 5rem 0;
}

.app-card-mood {
  background: white;
  border-radius: 32px;
  padding: 1.8rem 1.2rem;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid rgba(178, 34, 52, 0.12);
  box-shadow: var(--mood-card-shadow);
}

.app-card-mood:hover {
  transform: translateY(-8px);
  border-color: var(--mood-primary);
}

.app-icon-circle-mood {
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.app-icon-circle-mood img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.app-card-mood h6 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.btn-app-mood {
  background: var(--mood-primary);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  margin: 0.2rem;
  display: inline-block;
}

.btn-app-mood:hover {
  background: var(--mood-primary-dark);
  color: white;
}

/* Pricing - ORIGINAL CUSTOMER PLAN SECTION */
.pricing-section {
  background: #FFF5F5;
}

.pricing-card-mood {
  background: white;
  border-radius: 36px;
  padding: 2rem;
  transition: all 0.3s;
  height: 100%;
  border: 1px solid rgba(178, 34, 52, 0.12);
  box-shadow: var(--mood-card-shadow);
}

.pricing-card-mood:hover {
  transform: translateY(-8px);
  border-color: var(--mood-primary);
}

.price-amount-mood {
  font-size: 3rem;
  font-weight: 800;
  color: var(--mood-primary);
}

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

.price-features li {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: var(--mood-text-muted);
}

/* FAQ */
.faq-item-mood {
  background: white;
  border-radius: 28px;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid rgba(178, 34, 52, 0.12);
  box-shadow: var(--mood-card-shadow);
}

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

.faq-question-mood:hover {
  background: rgba(178, 34, 52, 0.05);
}

.faq-answer-mood {
  padding: 0 1.8rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--mood-text-muted);
  font-size: 0.95rem;
}

.faq-item-mood.active .faq-answer-mood {
  padding: 0 1.8rem 1.3rem 1.8rem;
  max-height: 300px;
}

/* Features Section */
.feature-item-mood {
  background: white;
  border-radius: 60px;
  padding: 2rem 1.5rem;
  width: 160px;
  text-align: center;
  transition: 0.3s;
  box-shadow: var(--mood-card-shadow);
}

.feature-item-mood:hover {
  transform: translateY(-8px);
}

.feature-item-mood img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  opacity: 0.9;
}

/* Footer */
.footer-mood {
  background: #B22234;
  background: linear-gradient(135deg, #B22234 0%, #C63D3D 100%);
  padding: 3.5rem 0 2.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

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

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

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

.footer-links-mood li a {
  color: #F5E6E6;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.2s;
}

.footer-links-mood li a:hover {
  color: #FFD700;
  padding-left: 5px;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 1.8rem 0;
}

.copyright-mixed {
  color: #F5E6E6;
  font-size: 1rem;
}

.copyright-mixed a {
  color: #FFD700;
  text-decoration: none;
}

.copyright-mixed a:hover {
  text-decoration: underline;
}

.footer-app-box img {
  max-width: 260px;
  width: 100%;
  height: auto;
  filter: none;
  opacity: 1;
}

.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #25D366;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 99;
  transition: 0.3s;
}

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

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--mood-primary);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 99;
  text-decoration: none;
}

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

.back-to-top:hover {
  background: var(--mood-primary-dark);
  color: white;
}

.text-muted-custom {
  color: var(--mood-text-muted) !important;
}

@media (max-width: 768px) {
  .main-title-mood {
    font-size: 2.4rem;
  }

  .stats-grid-mood {
    margin-top: -2rem;
    padding: 1rem;
  }

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

  .feature-item-mood {
    width: 110px;
    padding: 1rem 0.8rem;
  }

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

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

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

  .subtitle-light {
    font-size: 1.1rem;
  }

  .hero-description-light {
    font-size: 0.9rem;
  }

  .hero-content-wrapper {
    margin-top: -30px;
  }

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

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

  .copyright-mixed {
    font-size: 0.85rem;
  }
}


html,
body {
  overflow-x: hidden;
}

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