/* ========== LIGHT ROYAL LUXURIOUS THEME ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fef9f0;
  color: #2c2418;
  overflow-x: hidden;
}

/* Royal Font for Headings */
h1,
h2,
.royal-font {
  font-family: 'Playfair Display', serif;
}

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

.flix-spinner {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(184, 134, 11, 0.2);
  border-top: 5px solid #B8860B;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

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

/* Navbar - Light Royal */
.navbar-flix {
  background: rgba(255, 252, 245, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
  padding: 0.8rem 2rem;
  border-bottom: 1px solid rgba(184, 134, 11, 0.25);
}

.navbar-brand-logo {
  max-height: 120px;
  width: auto;
  transition: 0.3s;
}

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

  .navbar-flix {
    padding: 0.8rem 1rem;
  }
}

.nav-link-flix {
  color: #4a3b28 !important;
  font-weight: 600;
  margin: 0 0.5rem;
  transition: 0.3s;
  font-size: 0.95rem;
}

.nav-link-flix:hover,
.nav-link-flix.active {
  color: #B8860B !important;
}

.btn-flix-primary {
  background: linear-gradient(135deg, #B8860B, #9A7209);
  border: none;
  color: white;
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  border-radius: 40px;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.25);
}

.btn-flix-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(184, 134, 11, 0.35);
  color: white;
}

.btn-flix-outline {
  background: transparent;
  border: 2px solid #B8860B;
  color: #B8860B;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 40px;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-flix-outline:hover {
  background: #B8860B;
  color: white;
  transform: translateY(-2px);
}

/* Hero Section - Animated Gradient Background */
.hero-flix {
  position: relative;
  background: linear-gradient(135deg, #1a0f0f 0%, #2d1a1a 25%, #3d2317 50%, #2d1a1a 75%, #1a0f0f 100%);
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
  overflow: hidden;
  padding: 4rem 0 6rem 0;
}

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

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-flix::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 40%, rgba(212, 175, 55, 0.08), transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(212, 175, 55, 0.06), transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hero-royal {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.hero-left {
  flex: 1.2;
  min-width: 300px;
}

.hero-right {
  flex: 1;
  min-width: 300px;
}

.hero-badge-flix {
  background: rgba(212, 175, 55, 0.12);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #FFD700;
  margin-bottom: 2rem;
  border: 0.5px solid rgba(255, 215, 0, 0.3);
  animation: glowPulse 2s infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 0 0px rgba(212, 175, 55, 0);
  }

  50% {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  }
}

.main-title-flix {
  font-size: 4.8rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  background: linear-gradient(135deg, #FFD700, #DAA520, #B8860B);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -1px;
  animation: titleGlow 3s ease infinite;
}

@keyframes titleGlow {

  0%,
  100% {
    filter: drop-shadow(0 0 0px rgba(212, 175, 55, 0));
  }

  50% {
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
  }
}

.royal-divider {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #DAA520, #FFD700, transparent);
  margin: 1.5rem 0;
  animation: dividerPulse 2s ease infinite;
}

@keyframes dividerPulse {

  0%,
  100% {
    width: 100px;
    opacity: 0.7;
  }

  50% {
    width: 120px;
    opacity: 1;
  }
}

.subtitle {
  font-size: 1.35rem;
  color: #FFD700;
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.3px;
}

.hero-description {
  color: #f0e6d0;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.royal-image-frame {
  background: rgba(30, 20, 20, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 2rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  animation: frameGlow 3s ease infinite;
}

@keyframes frameGlow {

  0%,
  100% {
    border-color: rgba(255, 215, 0, 0.3);
  }

  50% {
    border-color: rgba(255, 215, 0, 0.6);
  }
}

.hero-image-large {
  width: 100%;
  border-radius: 1.5rem;
  transition: transform 0.5s ease;
}

.hero-image-large:hover {
  transform: scale(1.02);
}

/* Animated Elements */
.soft-circle {
  position: absolute;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 50%;
  pointer-events: none;
  animation: floatOrb 10s infinite ease-in-out;
}

@keyframes floatOrb {

  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }

  50% {
    transform: translateY(-30px) translateX(20px);
  }
}

.floating-particle {
  position: absolute;
  background: radial-gradient(circle, #FFD700, transparent);
  border-radius: 50%;
  opacity: 0.25;
  animation: floatParticle 8s infinite;
}

@keyframes floatParticle {

  0%,
  100% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0.15;
  }

  50% {
    transform: translateY(-40px) translateX(25px) scale(1.3);
    opacity: 0.3;
  }
}

.gold-dust {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #FFD700;
  border-radius: 50%;
  opacity: 0.6;
  animation: dustFloat 6s infinite linear;
}

@keyframes dustFloat {
  0% {
    transform: translateY(0px) translateX(0px);
    opacity: 0;
  }

  20% {
    opacity: 0.6;
  }

  80% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-100px) translateX(30px);
    opacity: 0;
  }
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-wave svg path {
  fill: #fef9f0;
}

/* Stats Grid */
.stats-grid-flix {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  background: white;
  border-radius: 80px;
  padding: 1.5rem 2.5rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 10;
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(184, 134, 11, 0.15);
}

.stat-number-flix {
  font-size: 2rem;
  font-weight: 800;
  color: #B8860B;
  display: block;
}

.stat-item-flix {
  text-align: center;
  padding: 0.5rem 1rem;
  color: #4a3b28;
}

/* Glass Cards */
.glass-card-flix {
  background: white;
  border-radius: 2rem;
  border: 1px solid rgba(184, 134, 11, 0.15);
  padding: 1.8rem;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.glass-card-flix-light {
  background: #fffbf5;
  border-radius: 2rem;
  border: 1px solid rgba(184, 134, 11, 0.2);
  padding: 2rem;
}

/* DOWNLOAD APPS SECTION - NO CIRCLE BACKGROUND, LARGER IMAGES */
.apps-section {
  background: #fffbf5;
  padding: 5rem 0;
}

.app-card-flix {
  background: white;
  border-radius: 1.5rem;
  padding: 1.8rem 1rem;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(184, 134, 11, 0.15);
}

.app-card-flix:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 35px -12px rgba(184, 134, 11, 0.2);
  border-color: #B8860B;
}

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

.app-icon-circle-flix img {
  width: 120px;
  height: auto;
  transition: 0.3s;
}

.app-card-flix:hover .app-icon-circle-flix img {
  transform: scale(1.1);
}

.app-card-flix h6 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c2418;
}

.btn-app-flix {
  background: rgba(184, 134, 11, 0.12);
  color: #B8860B;
  border-radius: 30px;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  text-decoration: none;
  margin: 0.25rem;
  display: inline-block;
  font-weight: 600;
  transition: 0.3s;
}

.btn-app-flix:hover {
  background: #B8860B;
  color: white;
}

/* Pricing Cards */
.pricing-section {
  background: linear-gradient(145deg, #ffffff, #faf7f0);
  padding: 4rem 0;
}

.pricing-card-flix {
  background: white;
  border-radius: 1.8rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  transition: 0.3s;
  border: 1px solid rgba(184, 134, 11, 0.15);
}

.pricing-card-flix:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px rgba(184, 134, 11, 0.08);
  border-color: #B8860B;
}

.price-amount-flix {
  font-size: 3rem;
  font-weight: 800;
  color: #B8860B;
}

.price-period {
  color: #8a7a62;
}

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

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(184, 134, 11, 0.08);
  color: #4a3b28;
}

/* FAQ */
.faq-section-new {
  padding: 4rem 0;
  background: #ffffff;
}

.faq-item-flix {
  background: #faf7f0;
  border-radius: 1.2rem;
  margin-bottom: 1rem;
  border-left: 4px solid #B8860B;
}

.faq-question-flix {
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  color: #8B0000;
}

.faq-answer-flix {
  padding: 0 1.5rem 1.2rem 1.5rem;
  display: none;
  color: #5a4a32;
}

.faq-item-flix.active .faq-answer-flix {
  display: block;
}

/* Features Section */
.features-section {
  background: #faf7f0;
  padding: 4rem 0;
}

.feature-item-flix {
  transition: 0.3s;
}

.feature-icon {
  width: 120px;
  transition: 0.3s;
}

.feature-item-flix:hover .feature-icon {
  transform: scale(1.1);
  filter: brightness(0) saturate(100%) invert(59%) sepia(79%) saturate(1234%) hue-rotate(2deg) brightness(94%);
}

/* Footer - WITH INCREASED TEXT SIZE */
.footer-flix {
  position: relative;
  background: linear-gradient(135deg, #1a0f0f 0%, #2d1a1a 25%, #3d2317 50%, #2d1a1a 75%, #1a0f0f 100%);
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
  color: #c8bcab;
  padding: 3rem 0 2rem;
  overflow: hidden;
}

.footer-flix::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 40%, rgba(212, 175, 55, 0.08), transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(212, 175, 55, 0.06), transparent 50%);
  pointer-events: none;
}

.footer-flix .container {
  position: relative;
  z-index: 2;
}

/* INCREASED FOOTER TEXT SIZE */
.footer-flix h5 {
  color: #DAA520;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

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

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

.footer-links-flix a {
  color: #c8bcab;
  text-decoration: none;
  transition: 0.3s;
  font-size: 1rem;
  font-weight: 500;
}

.footer-links-flix a:hover {
  color: #DAA520;
}

.footer-divider {
  border-color: rgba(212, 175, 55, 0.2);
  margin: 2rem 0;
}

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

.copyright-mixed p {
  font-size: 1rem;
}

.copyright-mixed a {
  font-size: 1rem;
  color: #DAA520;
  text-decoration: none;
}

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

.highlight-project {
  color: #DAA520;
  font-size: 1rem;
}

.footer-particle {
  position: absolute;
  background: radial-gradient(circle, #FFD700, transparent);
  border-radius: 50%;
  opacity: 0.15;
  animation: floatParticle 8s infinite;
  pointer-events: none;
}

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

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

.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #DAA520;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a0f0f;
  opacity: 0;
  transition: 0.3s;
  z-index: 99;
  text-decoration: none;
  font-weight: bold;
}

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

.back-to-top:hover {
  background: #B8860B;
  color: #1a0f0f;
}

.tv-img {
  max-width: 100%;
  border-radius: 1rem;
}

h2,
h3,
h5 {
  color: #8B0000;
  font-family: 'Playfair Display', serif;
}

.text-muted-custom {
  color: #7a6a52;
}

@media (max-width: 992px) {
  .hero-royal {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .main-title-flix {
    font-size: 3rem;
  }

  .stats-grid-flix {
    gap: 1rem;
    margin-top: 0;
    border-radius: 40px;
  }

  .hero-left {
    text-align: center;
  }

  .royal-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .app-icon-circle-flix img {
    width: 65px;
  }
}

html,
body {
  overflow-x: hidden;
}

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