/* ========== GOLD & BLACK LUXURY THEME FOR iTEL SMARTERS PLAYER ========== */
:root {
  --gold-primary: #FFD700;
  --gold-dark: #DAA520;
  --gold-glow: rgba(255, 215, 0, 0.25);
  --black-bg: #0A0A0A;
  --black-card: #111111;
  --black-surface: #1A1A1A;
  --black-elevated: #1E1E1E;
  --text-gold: #FFD700;
  --text-white: #FFFFFF;
  --text-gray: #B0B0B0;
  --text-muted: #808080;
  --border-gold: rgba(255, 215, 0, 0.2);
  --shadow-gold: 0 8px 20px rgba(255, 215, 0, 0.15);
  --section-gap: 5rem;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--black-bg);
  color: var(--text-white);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
.navbar-brand,
.main-title-elegant {
  font-family: 'Bree Serif', serif;
}

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

.elegant-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 215, 0, 0.2);
  border-top: 3px solid var(--gold-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

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

/* Navbar - Gold & Black Theme */
.navbar-elegant {
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-gold);
  padding: 0.5rem 2rem;
}

.nav-link-elegant {
  color: var(--text-gray) !important;
  font-weight: 500;
  margin: 0 0.25rem;
  padding: 0.5rem 1rem !important;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.nav-link-elegant:hover,
.nav-link-elegant.active {
  color: var(--gold-primary) !important;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 40px;
}

/* Buttons - Gold Theme */
.btn-blue {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 40px;
  font-weight: 700;
  color: #000000;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 0.85rem;
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: #000000;
}

.btn-outline-red {
  background: transparent;
  border: 1.5px solid var(--gold-primary);
  padding: 0.6rem 1.5rem;
  border-radius: 40px;
  font-weight: 600;
  color: var(--gold-primary);
  transition: all 0.2s;
  text-decoration: none;
  font-size: 0.85rem;
}

.btn-outline-red:hover {
  background: var(--gold-primary);
  color: #000000;
  transform: translateY(-2px);
}

.btn-red {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 40px;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  display: inline-block;
}

.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: #000000;
}

/* Hero Section - Black & Gold WITH FULL VISIBILITY HERO IMAGE */
.hero-fullscreen {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at 30% 20%, #1A1A1A, #050505);
  overflow: hidden;
}

/* Hero BG Image - FULL VISIBILITY, NO OPACITY */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 48px;
  backdrop-filter: blur(8px);
}

.hero-title-wrapper {
  font-size: 0.85rem;
  letter-spacing: 2px;
  background: rgba(255, 215, 0, 0.15);
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border-radius: 40px;
  margin-bottom: 1.5rem;
  color: var(--gold-primary);
  font-weight: 600;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.main-title-elegant {
  font-size: 4.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-primary), #FFB347);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

.title-sub-elegant {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.hero-desc-elegant {
  font-size: 1rem;
  color: var(--text-gray);
  max-width: 650px;
  margin: 1rem auto;
}

/* Stats Block - Black & Gold */
.stats-wrapper {
  background: transparent;
  margin-top: -2rem;
  position: relative;
  z-index: 5;
  padding: 0 1rem;
}

.stats-modern {
  background: var(--black-card);
  border-radius: 32px;
  padding: 1.8rem 1rem;
  border: 1px solid var(--border-gold);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.stat-card {
  padding: 0 1.2rem;
}

.stat-number-elegant {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-primary), #FFB347);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-gray);
}

.whatsapp-stat a {
  color: #25D366;
  text-decoration: none;
  font-weight: 700;
}

.whatsapp-stat a:hover {
  color: #25D366;
}

.stat-divider {
  width: 1px;
  height: 30px;
  background: var(--border-gold);
}

/* Glass Card - Black & Gold */
.glass-card-elegant {
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: 32px;
  padding: 2rem;
  transition: all 0.3s;
}

.glass-card-elegant:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

/* App Cards */
.app-card-elegant {
  background: var(--black-card);
  border-radius: 28px;
  padding: 1.5rem 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-gold);
  height: 100%;
}

.app-card-elegant:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.app-icon-elegant {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: brightness(0.9) contrast(1.1);
}

.btn-app-elegant {
  background: rgba(255, 215, 0, 0.12);
  border-radius: 30px;
  padding: 0.3rem 0.8rem;
  font-size: 0.7rem;
  margin: 0.2rem;
  display: inline-block;
  text-decoration: none;
  color: var(--gold-primary);
  font-weight: 500;
  transition: all 0.2s;
}

.btn-app-elegant:hover {
  background: var(--gold-primary);
  color: #000000;
}

/* Pricing Cards */
.pricing-card-professional {
  background: var(--black-card);
  border-radius: 32px;
  padding: 1.8rem;
  border: 1px solid var(--border-gold);
  transition: 0.2s;
  height: 100%;
}

.pricing-card-professional:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

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

.price-period {
  color: var(--text-gray);
}

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

.price-features-elegant li i {
  color: var(--gold-primary);
  margin-right: 0.5rem;
}

/* FAQ */
.faq-item-new {
  background: var(--black-card);
  border-radius: 24px;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

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

.faq-question-new i:first-child {
  color: var(--gold-primary);
  margin-right: 10px;
}

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

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

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

.fa-chevron-down {
  transition: transform 0.2s;
  color: var(--gold-primary);
}

/* Features Section */
.features-section {
  padding: var(--section-gap) 0;
}

.feature-grid-elegant {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.feature-item-elegant {
  background: var(--black-card);
  border-radius: 24px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid var(--border-gold);
  text-align: center;
}

.feature-item-elegant:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.feature-item-elegant img {
  width: 100px;
  height: auto;
  filter: brightness(0.9) contrast(1.1);
}

/* Footer - INCREASED TEXT SIZE */
.footer-elegant {
  background: #080808;
  border-top: 1px solid var(--border-gold);
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}

.footer-heading-elegant {
  color: var(--gold-primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

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

.footer-links-elegant li {
  margin-bottom: 0.6rem;
}

.footer-links-elegant li a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.footer-links-elegant li a:hover {
  color: var(--gold-primary);
}

.footer-links-elegant li i {
  margin-right: 6px;
  font-size: 0.9rem;
}

.footer-copyright {
  border-top: 1px solid var(--border-gold);
  margin-top: 2rem;
  padding-top: 1.5rem;
}

.footer-copyright p {
  font-size: 1rem;
  color: var(--text-gray);
}

.footer-copyright a {
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 600;
}

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

.footer-app-box img {
  border-radius: 20px;
}

/* Floating Elements */
.whatsapp-float-elegant {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 99;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.back-to-top-elegant {
  position: fixed;
  bottom: 25px;
  right: 180px;
  background: var(--gold-primary);
  width: 45px;
  height: 45px;
  border-radius: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  opacity: 0;
  transition: 0.2s;
  text-decoration: none;
  z-index: 99;
  font-weight: bold;
  font-size: 1.2rem;
}

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

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

h2,
h3,
.h4,
h5 {
  color: var(--text-white) !important;
}

.section-header-elegant h2 {
  color: var(--text-white) !important;
}

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

  .stat-divider {
    display: none;
  }

  .hero-content {
    background: rgba(0, 0, 0, 0.75);
    margin: 1rem;
    padding: 1.5rem;
  }

  .footer-heading-elegant {
    font-size: 1.1rem;
  }

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

  .footer-copyright p {
    font-size: 0.85rem;
  }

  .feature-item-elegant img {
    width: 70px;
  }
}


html,
body {
  overflow-x: hidden;
}

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