:root {
  --primary: #ef4444;
  --primary-dark: #dc2626;
  --primary-light: #fee2e2;
  --secondary: #1e293b;
  --dark: #0f172a;
  --light: #f8fafc;
  --gray: #64748b;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
  --gradient-dark: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  --shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --radius: 20px;
  --radius-lg: 32px;
  --radius-sm: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== HEADER ========== */
.main-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo {
  height: 48px;
  width: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.site-name {
  font-size: 24px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  color: var(--secondary);
  font-weight: 500;
  transition: color 0.2s;
  font-size: 15px;
}

.main-nav a:hover {
  color: var(--primary);
}

.upload-btn {
  background: var(--gradient);
  color: white;
  padding: 10px 22px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.upload-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--secondary);
}

/* ========== HERO SECTION ========== */
.hero-main {
  background: linear-gradient(135deg, #fff5f5 0%, #fff9f0 100%);
  padding: 40px 0 60px;
  text-align: center;
}

.hero-content-center {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* CLS FIX - Logo with fixed dimensions */
.logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
  min-height: 200px;
}

.logo-with-waves {
  position: relative;
  display: inline-block;
  width: 170px;
  height: 170px;
}

.hero-logo {
  position: relative;
  z-index: 10;
  width: 170px;
  height: 170px;
}

.hero-logo-img {
  width: 170px;
  height: 170px;
  border-radius: 50px;
  background: white;
  padding: 15px;
  object-fit: contain;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: block;
}

.hero-logo-img:hover {
  transform: scale(1.02);
}

/* Waves Container */
.waves-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.wave-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50px;
  border: 2px solid var(--primary);
  opacity: 0;
  animation: waveExpand 2s ease-out infinite;
}

.ring-1 { width: 100%; height: 100%; animation-delay: 0s; }
.ring-2 { width: 100%; height: 100%; animation-delay: 0.5s; }
.ring-3 { width: 100%; height: 100%; animation-delay: 1s; }
.ring-4 { width: 100%; height: 100%; animation-delay: 1.5s; }

@keyframes waveExpand {
  0% { width: 100%; height: 100%; opacity: 0.8; border-width: 2px; }
  50% { width: 130%; height: 130%; opacity: 0.4; border-width: 1px; }
  100% { width: 160%; height: 160%; opacity: 0; border-width: 0px; }
}

/* LIVE Tag - CLS Fix */
.live-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.1);
  padding: 6px 20px;
  border-radius: 50px;
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 15px;
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  min-height: 40px;
}

.live-dot {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* Title - CLS Fix */
.hero-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  text-align: center;
  min-height: 80px;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Description - CLS Fix */
.hero-description {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.5;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  min-height: 70px;
}

/* Buttons - CLS Fix */
.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 35px;
  flex-wrap: wrap;
  min-height: 70px;
}

.btn-primary-custom, .btn-secondary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 24px;
  min-width: 190px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  cursor: pointer;
  border: none;
}

.btn-primary-custom {
  background: var(--gradient);
  color: white;
}

.btn-secondary-custom {
  background: var(--secondary);
  color: white;
  position: relative;
  animation: btnPulse 1.5s infinite;
}

@keyframes btnPulse {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.btn-secondary-custom:hover {
  animation: none;
  transform: translateY(-2px);
  background: var(--primary);
}

.btn-primary-custom:hover, .btn-secondary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.2);
}

.btn-primary-custom:hover {
  box-shadow: 0 8px 20px -5px rgba(239, 68, 68, 0.4);
}

/* Stats - CLS Fix */
.hero-stats {
  display: flex;
  gap: 45px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 5px;
  min-height: 80px;
}

.stat-box {
  text-align: center;
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.stat-label {
  font-size: 13px;
  color: var(--gray);
}

/* ========== RADIO SECTION ========== */
.radio-section {
  padding: 60px 0;
  background: var(--gradient-dark);
  transition: all 0.5s ease;
  margin-top: 20px;
}

.radio-card-modern {
  background: var(--secondary);
  border-radius: var(--radius-lg);
  padding: 35px 40px;
  text-align: center;
  color: white;
  box-shadow: var(--shadow);
}

.radio-wave-animation {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 25px;
}

.radio-wave-animation span {
  width: 5px;
  height: 40px;
  background: var(--primary);
  border-radius: 3px;
  animation: wave 1s ease-in-out infinite;
}

.radio-wave-animation span:nth-child(2) { animation-delay: 0.1s; height: 55px; }
.radio-wave-animation span:nth-child(3) { animation-delay: 0.2s; height: 70px; }
.radio-wave-animation span:nth-child(4) { animation-delay: 0.3s; height: 55px; }
.radio-wave-animation span:nth-child(5) { animation-delay: 0.4s; height: 40px; }

@keyframes wave {
  0%, 100% { transform: scaleY(0.6); }
  50% { transform: scaleY(1); }
}

.radio-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.radio-audio {
  width: 100%;
  border-radius: 50px;
  margin-bottom: 20px;
}

.radio-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.7;
}

/* ========== FEATURES SECTION ========== */
.features-section {
  padding: 80px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 18px;
  color: var(--gray);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.feature-card {
  text-align: center;
  padding: 25px 15px;
  background: var(--light);
  border-radius: var(--radius);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #eef2ff;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.feature-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.feature-icon {
  font-size: 48px;
}

.music-notes {
  position: absolute;
  top: -10px;
  right: -15px;
  display: flex;
  gap: 4px;
}

.music-notes span {
  font-size: 18px;
  color: var(--primary);
  animation: floatNote 1.8s ease-in-out infinite;
  opacity: 0;
}

.music-notes span:nth-child(1) { animation-delay: 0s; }
.music-notes span:nth-child(2) { animation-delay: 0.4s; }
.music-notes span:nth-child(3) { animation-delay: 0.8s; }

@keyframes floatNote {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
  100% { transform: translateY(-25px) rotate(15deg); opacity: 0; }
}

.app-screen-animation {
  position: absolute;
  bottom: -5px;
  right: -10px;
  display: flex;
  gap: 3px;
  align-items: flex-end;
  background: var(--secondary);
  padding: 4px 5px;
  border-radius: 8px;
}

.app-screen-animation span {
  width: 3px;
  background: var(--primary);
  border-radius: 2px;
  animation: barWave 0.8s ease-in-out infinite;
}

.app-screen-animation span:nth-child(1) { height: 8px; animation-delay: 0s; }
.app-screen-animation span:nth-child(2) { height: 14px; animation-delay: 0.2s; }
.app-screen-animation span:nth-child(3) { height: 5px; animation-delay: 0.4s; }

@keyframes barWave {
  0%, 100% { height: 6px; }
  50% { height: 18px; }
}

.download-arrow {
  position: absolute;
  bottom: -8px;
  left: -8px;
  background: var(--gradient);
  color: white;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  animation: pulse 1.5s infinite;
}

.mic-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.pulse-ring {
  position: absolute;
  width: 70px;
  height: 70px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseRing 1.5s ease-out infinite;
  opacity: 0;
}

.pulse-ring.delay {
  animation-delay: 0.75s;
}

@keyframes pulseRing {
  0% { transform: translate(-50%, -50%) scale(0.6); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

.artist-tag {
  position: absolute;
  bottom: -8px;
  right: -8px;
  background: var(--gradient);
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
}

.live-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--gradient);
  color: white;
  padding: 4px 10px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: 11px;
  animation: pulse 1.5s infinite;
  box-shadow: 0 2px 8px rgba(239,68,68,0.3);
}

.live-dot-small {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1s infinite;
}

.radio-waves {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 3px;
}

.radio-waves span {
  width: 3px;
  background: var(--primary);
  border-radius: 2px;
  animation: wave 1s ease-in-out infinite;
}

.radio-waves span:nth-child(1) { height: 10px; animation-delay: 0s; }
.radio-waves span:nth-child(2) { height: 16px; animation-delay: 0.2s; }
.radio-waves span:nth-child(3) { height: 6px; animation-delay: 0.4s; }

.feature-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 10px;
  background: #fef2f2;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 600;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* ========== ARTISTS SECTION ========== */
.artists-section {
  padding: 80px 0;
  background: var(--light);
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.artist-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 15px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #eef2ff;
}

.artist-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.artist-avatar {
  font-size: 56px;
  margin-bottom: 12px;
}

.artist-card h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.artist-song-title {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 13px;
}

.artist-location {
  display: inline-block;
  background: var(--light);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  color: var(--gray);
}

.artist-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--primary);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}

/* ========== APP INSTALL SECTION ========== */
.app-install-section {
  padding: 50px 0;
  background: var(--gradient);
  display: block;
}

.app-install-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
  box-shadow: var(--shadow);
}

.app-icon img {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.app-install-content h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: var(--dark);
}

.app-install-content p {
  color: var(--gray);
  margin-bottom: 10px;
  font-size: 13px;
}

.app-features {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.app-features span {
  font-size: 11px;
  color: var(--primary);
  background: var(--primary-light);
  padding: 3px 10px;
  border-radius: 30px;
}

.install-btn {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.install-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

/* ========== CTA SECTION ========== */
.cta-section {
  padding: 50px 0;
  background: var(--light);
}

.cta-card {
  background: var(--gradient-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  color: white;
}

.cta-text h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.cta-text p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 25px;
}

.cta-btn {
  background: var(--gradient);
  color: white;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  transition: transform 0.2s;
}

.cta-btn:hover {
  transform: translateX(5px);
}

/* ========== FOOTER ========== */
.main-footer {
  background: var(--dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: white;
}

.footer-col p {
  opacity: 0.7;
  line-height: 1.6;
  color: #cbd5e1;
}

.footer-col a {
  display: block;
  color: #cbd5e1;
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0.6;
  font-size: 14px;
  color: #9ca3af;
}

/* ========== UTILITY CLASSES ========== */
.notice {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.success {
  background: #d1fae5;
  color: #065f46;
  border-left: 4px solid #10b981;
}

.error {
  background: #fee2e2;
  color: #991b1b;
  border-left: 4px solid #ef4444;
}

/* ========== CLS FIX - Additional ========== */
/* Reserve space for all dynamic elements */
img:not([width]) {
  width: auto;
  max-width: 100%;
}

/* Prevent any unexpected shifts */
.hero-main,
.radio-section,
.features-section,
.artists-section,
.app-install-section,
.cta-section {
  contain: content;
}

/* Smooth transitions only on user interaction */
* {
  transition-property: transform, opacity, box-shadow;
}

/* Ensure all images have proper dimensions */
.hero-logo-img,
.site-logo,
.app-icon img,
.artist-avatar {
  aspect-ratio: 1 / 1;
}

/* Fix for waves container */
.waves-container {
  pointer-events: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .features-grid,
  .artists-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow);
    border-radius: 0 0 20px 20px;
  }
  
  .main-nav.active {
    display: block;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .features-grid,
  .artists-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 28px;
    min-height: 70px;
  }
  
  .hero-description {
    font-size: 13px;
    min-height: 65px;
  }
  
  .hero-stats {
    gap: 30px;
    min-height: 70px;
  }
  
  .stat-number {
    font-size: 22px;
  }
  
  .hero-buttons {
    min-height: 60px;
  }
  
  .logo-wrapper {
    min-height: 150px;
  }
  
  .hero-logo-img {
    width: 130px;
    height: 130px;
  }
  
  .logo-with-waves,
  .hero-logo {
    width: 130px;
    height: 130px;
  }
  
  .app-install-card {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-card {
    padding: 30px;
  }
  
  .cta-text h2 {
    font-size: 24px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .radio-card-modern {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .hero-logo-img {
    width: 110px;
    height: 110px;
  }
  
  .logo-with-waves,
  .hero-logo {
    width: 110px;
    height: 110px;
  }
  
  .logo-wrapper {
    min-height: 130px;
  }
  
  .hero-title {
    font-size: 24px;
    min-height: 60px;
  }
  
  .hero-description {
    font-size: 12px;
    min-height: 60px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary-custom, .btn-secondary-custom {
    width: 85%;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .stat-number {
    font-size: 20px;
  }
  
  .cta-card {
    padding: 25px 20px;
  }
  
  .cta-text h2 {
    font-size: 20px;
  }
  
  .radio-card-modern {
    padding: 20px;
  }
  
  .radio-title {
    font-size: 18px;
  }
}
/* ===== FINAL STABILITY FIX ===== */

/* Stop horizontal scroll completely */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Universal image control */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container safe */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
}

/* Fix logo waves overflow */
.logo-with-waves {
  max-width: 100%;
  overflow: hidden;
}

/* Fix hero logo */
.hero-logo-img {
  max-width: 100%;
  height: auto;
}

/* Fix sections width */
.hero-main,
.radio-section,
.features-section,
.artists-section,
.app-install-section,
.cta-section,
.main-footer {
  width: 100%;
  max-width: 100%;
}

/* ===== MOBILE PERFECT ===== */
@media (max-width: 768px) {

  /* Header fix */
  .header-container {
    flex-direction: row;
    align-items: center;
  }

  /* Mobile menu width */
  .main-nav {
    width: 100%;
  }

  /* Hero padding */
  .hero-main {
    padding: 20px 10px 35px;
  }

  /* Logo size fix */
  .hero-logo-img {
    width: 105px !important;
    height: 105px !important;
  }

  .logo-with-waves,
  .hero-logo {
    width: 105px !important;
    height: 105px !important;
  }

  .logo-wrapper {
    min-height: 110px;
  }

  /* Title */
  .hero-title {
    font-size: 22px;
    line-height: 1.3;
    min-height: auto;
  }

  /* Description */
  .hero-description {
    font-size: 13px;
    padding: 0 5px;
  }

  /* Buttons */
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .btn-primary-custom,
  .btn-secondary-custom {
    width: 90%;
    max-width: 280px;
  }

  /* Stats */
  .hero-stats {
    gap: 15px;
  }

  /* Grid fix */
  .features-grid,
  .artists-grid,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  /* App section */
  .app-install-card {
    flex-direction: column;
    text-align: center;
  }

}

/* ===== SMALL DEVICES ===== */
@media (max-width: 480px) {

  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-logo-img {
    width: 90px !important;
    height: 90px !important;
  }

  .logo-with-waves,
  .hero-logo {
    width: 90px !important;
    height: 90px !important;
  }

  .hero-title {
    font-size: 20px;
  }

  .btn-primary-custom,
  .btn-secondary-custom {
    width: 100%;
  }

  .radio-meta {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

}

/* Smooth experience */
html {
  scroll-behavior: smooth;
}

/* ===== CTA FIX (VISIBLE & PREMIUM) ===== */
.cta-card {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.cta-text h2 {
  color: #ffffff !important;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.cta-text p {
  color: #e2e8f0 !important;
  opacity: 1 !important;
  font-size: 15px;
}

.cta-btn {
  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
  color: #ffffff;
  font-weight: 600;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
}

/* ===== FOOTER PROFESSIONAL SPACING ===== */
.footer-grid {
  gap: 50px !important;
}

.footer-col h3 {
  margin-bottom: 15px !important;
}

.footer-col p {
  line-height: 1.7 !important;
}

.footer-col a {
  margin-bottom: 10px !important;
  display: block;
}

/* Links hover smooth */
.footer-col a:hover {
  padding-left: 6px;
  transition: all 0.3s ease;
}

/* Footer bottom clean */
.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
}

/* ===== MOBILE FOOTER PERFECT ===== */
@media (max-width: 768px) {

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    text-align: center;
  }

}

/* ===== EXTRA SMALL ===== */
@media (max-width: 480px) {

  .footer-bottom p {
    font-size: 12px;
  }

}

/* Remove white gap between sections */
.features-section,
.artists-section,
.app-install-section {
  margin-bottom: 0 !important;
}

.cta-section {
  margin-top: 0 !important;
  padding-top: 60px;
}

/* Extra safety */
.cta-section {
  background: var(--light);
}

/* अगर फिर भी line दिखे तो ये भी add करें */
.cta-section::before {
  content: "";
  display: block;
  height: 0;
}
.cta-section {
  margin-top: -5px;
}

/* ===== ORIGINAL YOUR FULL CSS (UNCHANGED) ===== */
/* (मैं यहाँ पूरा आपका original CSS नहीं काट रहा, बल्कि नीचे fix add कर रहा हूँ) */


/* ================================================= */
/* ===== FINAL FIXES (IMPORTANT - ADDED PART) ===== */
/* ================================================= */

/* ===== 1. REMOVE CTA CONFLICT ===== */
.cta-section {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

/* ===== 2. CTA CARD FIX ===== */
.cta-card {
  margin: 60px auto !important;
  padding: 40px 30px !important;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
  border-radius: 25px !important;
  text-align: center;
  color: #ffffff !important;
}

/* ===== 3. CTA TEXT FIX (MAIN ISSUE) ===== */
.cta-text h2 {
  color: #ffffff !important;
  font-weight: 700 !important;
}

.cta-text p {
  color: #ffffff !important;
  opacity: 1 !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
}

/* ===== 4. CTA BUTTON FIX ===== */
.cta-btn {
  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%) !important;
  color: #ffffff !important;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
}

/* ===== 5. REMOVE WHITE GAP ===== */
.features-section,
.artists-section,
.app-install-section {
  margin-bottom: 0 !important;
}

/* ===== 6. FOOTER SPACING FIX ===== */
.footer-grid {
  gap: 50px !important;
}

.footer-col h3 {
  margin-bottom: 15px !important;
}

.footer-col a {
  margin-bottom: 10px !important;
}

/* ===== 7. MOBILE FIX ===== */
@media (max-width: 768px) {

  .cta-card {
    margin: 40px 10px !important;
    padding: 30px 20px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    text-align: center;
  }

}

/* ===== 8. SMALL MOBILE ===== */
@media (max-width: 480px) {

  .cta-text h2 {
    font-size: 20px !important;
  }

  .cta-text p {
    font-size: 14px !important;
  }

}
