:root {
  --primary: #dc2626;
  --secondary: #b91c1c;
  --accent: #f59e0b;
  --gradient: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
  --dark: #1a1a2e;
  --light: #ffffff;
  --gray: #6c757d;
  --light-bg: #f8f9fa;
  --shadow: 0 10px 40px rgba(220, 38, 38, 0.2);
  --shadow-hover: 0 15px 50px rgba(220, 38, 38, 0.3);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
  background: var(--light-bg);
  width: 100%;
  max-width: 100vw;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.hide {
  display: none !important;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(15px, -15px);
  }
  66% {
    transform: translate(-10px, 10px);
  }
}

@keyframes wave-animation {
  0%,
  100% {
    transform: scaleY(0.5);
  }
  50% {
    transform: scaleY(1);
  }
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes musical-note {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* ========================================
   PRELOADER
   ======================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

#preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader-wrapper {
  display: flex;
  gap: 10px;
}

.wave-loader {
  width: 12px;
  height: 50px;
  background: white;
  border-radius: 10px;
  animation: wave-animation 1s ease-in-out infinite;
}

.wave-loader:nth-child(2) {
  animation-delay: 0.1s;
}
.wave-loader:nth-child(3) {
  animation-delay: 0.2s;
}

/* ========================================
   NAVIGATION BAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--gradient);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 22px;
  font-weight: 800;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.logo img {
  height: 36px;
  width: 36px;
  object-fit: contain;
  border-radius: 8px;
}

.logo i {
  font-size: 28px;
  animation: pulse 2s infinite;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav-link {
  color: white;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.btn-listen {
  background: white;
  color: var(--primary);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-listen:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 20;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Nav Wave */
.nav-wave {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  height: 25px;
  margin-top: -1px;
}

.nav-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.nav-wave .shape-fill {
  fill: #ffffff;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  background: var(--gradient);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  color: white;
  animation: slideInLeft 0.8s ease-out;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  line-height: 1.1;
  word-wrap: break-word;
}

.hero-tagline {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0.95;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 25px;
}

/* Phone Mockup */
.phone-mockup {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
  animation: slideInRight 0.8s ease-out;
}

.phone-frame {
  position: relative;
  background: linear-gradient(145deg, #2d2d3f, #1a1a2e);
  padding: 16px 14px;
  border-radius: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.phone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: #000;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.phone-screen {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9/19.5;
}

.slider-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slider img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
}

/* Hero Action Buttons */
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-outline:hover {
  background: white;
  color: var(--primary);
}

/* Hero Wave Bottom */
.wave-bottom {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  height: 60px;
  transform: rotate(180deg);
}

.wave-bottom svg {
  display: block;
  width: 100%;
  height: 100%;
}

.wave-bottom .shape-fill {
  fill: #ffffff;
}

/* ========================================
   ENHANCED AUDIO PLAYER
   ======================================== */
.enhanced-audio-player {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.15);
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.player-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
}

.player-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.player-album-art {
  width: 55px;
  height: 55px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.player-album-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-center-info {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.now-playing-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #dc2626;
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.now-playing-label::before {
  content: "♫";
  font-size: 14px;
  animation: musical-note 2s ease-in-out infinite;
}

.song-title-container {
  background: #f5f5f5;
  border-radius: 6px;
  padding: 6px 10px;
  overflow: hidden;
  width: 100%;
}

.song-title-scroll {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 20s linear infinite;
  color: #1a1a2e;
  font-weight: 600;
  font-size: 13px;
}

.player-phone-box {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 3px 10px rgba(220, 38, 38, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.player-phone-box:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

.player-controls-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.main-play-button {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.main-play-button:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

.main-play-button:active {
  transform: scale(0.95);
}

.progress-container {
  flex: 1;
  min-width: 0;
}

.progress-bar-wrapper {
  width: 100%;
  height: 6px;
  background: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 4px;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #dc2626, #b91c1c);
  border-radius: 10px;
  width: 0%;
  transition: width 0.3s ease;
  position: relative;
}

.progress-bar::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: white;
  border: 2px solid #dc2626;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.time-display {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #999;
  font-weight: 600;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.volume-icon {
  color: #dc2626;
  font-size: 16px;
  cursor: pointer;
}

.volume-slider {
  width: 70px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: #e9ecef;
  border-radius: 5px;
  outline: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: #dc2626;
  border-radius: 50%;
  cursor: pointer;
}

.volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: #dc2626;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

/* ========================================
   SCHEDULE SECTION
   ======================================== */
.schedule-section {
  padding: 70px 0;
  background: white;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeInUp 0.6s ease-out;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 17px;
  color: #666;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.schedule-card {
  background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.5s ease-out backwards;
}

.schedule-card:nth-child(1) {
  animation-delay: 0.1s;
}
.schedule-card:nth-child(2) {
  animation-delay: 0.15s;
}
.schedule-card:nth-child(3) {
  animation-delay: 0.2s;
}
.schedule-card:nth-child(4) {
  animation-delay: 0.25s;
}
.schedule-card:nth-child(5) {
  animation-delay: 0.3s;
}
.schedule-card:nth-child(6) {
  animation-delay: 0.35s;
}

.schedule-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient);
}

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

.schedule-card .time {
  font-size: 13px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.schedule-card .show {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.schedule-card .desc {
  font-size: 14px;
  color: #888;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  padding: 70px 0;
  background: #f9f9f9;
  position: relative;
}

.about-wave-top {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  height: 60px;
}

.about-wave-top svg {
  display: block;
  width: 100%;
  height: 100%;
}

.about-wave-top .shape-fill {
  fill: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text {
  animation: slideInLeft 0.7s ease-out;
}

.section-badge {
  display: inline-block;
  background: var(--gradient);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 25px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 25px;
}

.stat-card {
  text-align: center;
  padding: 28px 16px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.stat-card i {
  font-size: 40px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.stat-card h3 {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

.stat-card p {
  font-size: 14px;
  color: #888;
}

.btn-playstore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-playstore:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.btn-playstore i {
  font-size: 20px;
}

.about-image {
  animation: slideInRight 0.7s ease-out;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

/* ========================================
   SONG REQUEST FORM
   ======================================== */
.request-form-section {
  background: white;
  padding: 60px 0;
}

.form-container {
  max-width: 750px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.04),
    rgba(185, 28, 28, 0.04)
  );
  padding: 35px;
  border-radius: 20px;
  border: 1px solid rgba(220, 38, 38, 0.1);
  animation: fadeInUp 0.6s ease-out;
}

.section-title-box {
  text-align: center;
  margin-bottom: 30px;
}

.section-title-box h2 {
  font-size: 30px;
  font-weight: 800;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.section-title-box p {
  color: #888;
  font-size: 15px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-field label {
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 6px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-field label i {
  color: #dc2626;
  font-size: 12px;
}

.form-field input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  background: white;
}

.form-field input:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.25);
  margin-top: 8px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.35);
}

.form-status {
  margin-top: 16px;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  display: none;
}

.form-status.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.form-status.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--gradient);
  color: white;
  padding: 70px 0 25px;
  position: relative;
}

.footer-wave-top {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  height: 60px;
}

.footer-wave-top svg {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-wave-top .shape-fill {
  fill: #f9f9f9;
}

.footer-content {
  margin-bottom: 30px;
}

.footer h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.footer-contact {
  margin: 25px 0;
}

.footer-contact p {
  margin: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  word-break: break-word;
}

.footer-contact p i {
  margin-top: 3px;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  color: white;
}

.social-links a:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
}

.developer-credit {
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.85;
}

.developer-credit a {
  color: white;
  font-weight: 600;
  border-bottom: 1px solid white;
  transition: all 0.3s ease;
}

.developer-credit a:hover {
  opacity: 0.7;
  border-bottom-color: transparent;
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 48px;
  height: 48px;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

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

.back-to-top:hover {
  transform: translateY(-3px);
}

/* ========================================
   RESPONSIVE - TABLET (769px - 968px)
   ======================================== */
@media (max-width: 968px) {
  .hero-title {
    font-size: 40px;
  }
  .hero-tagline {
    font-size: 22px;
  }
  .section-title {
    font-size: 32px;
  }
  .section-header h2 {
    font-size: 32px;
  }
  .hero-grid {
    gap: 30px;
  }
  .phone-mockup {
    max-width: 250px;
  }
}

/* ========================================
   RESPONSIVE - MOBILE (768px and below)
   ======================================== */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  /* ---- NAV ---- */
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 15;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .nav-link {
    padding: 16px 0;
    font-size: 20px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .btn-listen {
    display: none;
  }

  .nav-wave {
    height: 15px;
  }

  /* ---- HERO ---- */
  .hero {
    padding: 90px 0 50px;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .hero-text {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .phone-mockup {
    order: 1;
    max-width: 180px;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-tagline {
    font-size: 18px;
  }

  .hero-desc {
    font-size: 14px;
    margin-bottom: 18px;
    max-width: 100%;
  }

  .badge {
    font-size: 12px;
    padding: 6px 16px;
  }

  .hero-actions {
    justify-content: center;
    width: 100%;
  }

  .btn-primary,
  .btn-outline {
    padding: 11px 20px;
    font-size: 13px;
  }

  .wave-bottom {
    height: 30px;
  }

  /* ---- AUDIO PLAYER (compact on mobile) ---- */
  .enhanced-audio-player {
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }

  .player-top-row {
    gap: 8px;
  }

  .player-left {
    width: 100%;
    gap: 8px;
  }

  .player-album-art {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .now-playing-label {
    font-size: 10px;
    margin-bottom: 2px;
  }

  .song-title-container {
    padding: 4px 8px;
    border-radius: 4px;
  }

  .song-title-scroll {
    font-size: 11px;
  }

  .player-phone-box {
    display: none;
  }

  .player-controls-row {
    gap: 8px;
  }

  .main-play-button {
    width: 36px;
    height: 36px;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(220, 38, 38, 0.2);
  }

  .progress-bar-wrapper {
    height: 4px;
  }

  .progress-bar::after {
    width: 10px;
    height: 10px;
    right: -4px;
  }

  .time-display {
    font-size: 9px;
  }

  .volume-control {
    display: none;
  }

  /* ---- SCHEDULE ---- */
  .schedule-section {
    padding: 40px 0;
    text-align: center;
  }

  .section-header {
    margin-bottom: 25px;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .section-header p {
    font-size: 14px;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .schedule-card {
    padding: 16px 16px 16px 20px;
    text-align: left;
  }

  .schedule-card .show {
    font-size: 15px;
  }

  .schedule-card .desc {
    font-size: 13px;
  }

  /* ---- ABOUT ---- */
  .about-section {
    padding: 40px 0;
    text-align: center;
  }

  .about-wave-top {
    height: 30px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .about-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 26px;
  }

  .about-desc {
    font-size: 14px;
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stat-card {
    padding: 16px 10px;
  }

  .stat-card h3 {
    font-size: 24px;
  }

  .stat-card i {
    font-size: 28px;
  }

  .stat-card p {
    font-size: 12px;
  }

  .btn-playstore {
    padding: 12px 22px;
    font-size: 13px;
  }

  .about-image img {
    border-radius: 14px;
    max-width: 80%;
    margin: 0 auto;
  }

  /* ---- REQUEST FORM ---- */
  .request-form-section {
    padding: 40px 0;
    text-align: center;
  }

  .form-container {
    padding: 20px 14px;
    border-radius: 14px;
  }

  .section-title-box h2 {
    font-size: 22px;
  }

  .section-title-box p {
    font-size: 13px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .form-field label {
    font-size: 12px;
  }

  .form-field input {
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 8px;
  }

  .submit-btn {
    padding: 12px;
    font-size: 14px;
    border-radius: 12px;
  }

  /* ---- FOOTER ---- */
  .footer {
    padding: 40px 0 18px;
    text-align: center;
  }

  .footer-wave-top {
    height: 30px;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer h3 {
    font-size: 22px;
  }

  .footer-contact {
    margin: 16px 0;
  }

  .footer-contact p {
    font-size: 12px;
    justify-content: center;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    font-size: 11px;
  }

  .developer-credit {
    font-size: 11px;
  }

  /* ---- BACK TO TOP ---- */
  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 15px;
    bottom: 16px;
    right: 16px;
  }
}

/* ========================================
   RESPONSIVE - SMALL PHONE (480px and below)
   ======================================== */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .logo {
    font-size: 16px;
    gap: 6px;
  }

  .logo img {
    height: 28px;
    width: 28px;
  }

  .nav-content {
    padding: 10px 12px;
  }

  .hero {
    padding: 80px 0 40px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-tagline {
    font-size: 16px;
  }

  .hero-desc {
    font-size: 13px;
  }

  .phone-mockup {
    max-width: 150px;
  }

  .phone-frame {
    padding: 10px 8px;
    border-radius: 26px;
  }

  .phone-notch {
    width: 70px;
    height: 16px;
    top: 10px;
  }

  .phone-screen {
    border-radius: 20px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 10px 18px;
    font-size: 13px;
  }

  /* Player even more compact */
  .enhanced-audio-player {
    padding: 8px;
    border-radius: 10px;
  }

  .player-album-art {
    width: 32px;
    height: 32px;
    border-radius: 6px;
  }

  .main-play-button {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .song-title-scroll {
    font-size: 10px;
  }

  .progress-bar-wrapper {
    height: 3px;
  }

  .progress-bar::after {
    width: 8px;
    height: 8px;
    right: -3px;
  }

  /* Sections */
  .section-header h2 {
    font-size: 22px;
  }

  .section-header p {
    font-size: 13px;
  }

  .section-title {
    font-size: 22px;
  }

  .schedule-card {
    padding: 14px 14px 14px 18px;
  }

  .schedule-card .show {
    font-size: 14px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .stat-card {
    padding: 14px 8px;
  }

  .stat-card h3 {
    font-size: 20px;
  }

  .stat-card i {
    font-size: 24px;
  }

  .stat-card p {
    font-size: 11px;
  }

  .section-title-box h2 {
    font-size: 20px;
  }

  .footer h3 {
    font-size: 20px;
  }
}
