/* #region RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-transform: capitalize;
}
/* #endregion RESET & BASE */
/* #region VARIABLES */
:root {
  --primary-color: #00f2d8; /* Ultra Vibrant Neon Teal */
  --secondary-color: #00c9b1;
  --accent-color: #ff3d3d; /* Neon Coral Red */
  --dark-bg: #050505; /* Deep Black for Neon Pop */
  --light-bg: #f8f9fa;
  --text-dark: #0f172a; /* Deep tech charcoal */
  --text-gray: #64748b; /* Balanced slate gray */
  --text-light: #f8fafc;
  --card-bg: rgba(0, 0, 0, 0.7); /* Standard dark glass */
  --card-bg-light: rgba(255, 255, 255, 0.9); /* Opaque light glass */
  --text-dim: rgba(255, 255, 255, 0.6);
  --text-vibrant: #00f2d8;

  /* Neon Glow System (Multi-layered for realism) */
  --neon-glow-teal:
    0 0 10px rgba(0, 242, 216, 0.4), 0 0 20px rgba(0, 242, 216, 0.2);
  --neon-glow-intense:
    0 0 5px #00f2d8, 0 0 15px #00f2d8, 0 0 30px #00f2d8,
    0 0 50px rgba(0, 242, 216, 0.5);
  --neon-text-intense:
    0 0 7px #00f2d8, 0 0 15px #00f2d8, 0 0 25px rgba(0, 242, 216, 0.8);
  --neon-glow-red:
    0 0 10px rgba(255, 61, 61, 0.5), 0 0 20px rgba(255, 61, 61, 0.3),
    0 0 40px rgba(255, 61, 61, 0.1);
  --neon-text-teal: 0 0 12px rgba(0, 242, 216, 0.8);
  --gradient-vibrant: linear-gradient(135deg, #00f2d8 0%, #00c9b1 100%);
  --gradient-neon: linear-gradient(90deg, #00f2d8, #00c9b1, #ff3d3d, #00f2d8);
  --gradient-accent: linear-gradient(135deg, #ff3d3d 0%, #ff6b6b 100%);
  --shadow-neon: 0 10px 40px rgba(0, 242, 216, 0.3);
  --glass-border: 1px solid rgba(255, 255, 255, 0.08);
  --neon-border: 1px solid rgba(0, 242, 216, 0.3);
}
/* #endregion VARIABLES */
/* #region BASE */
body {
  font-family: "Outfit", "Tajawal", "Inter", sans-serif;
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: -0.015em;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--primary-color);
  color: #000;
}

html {
  scroll-behavior: smooth;
}
/* #endregion BASE */
/* #region NAVIGATION */
.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1400px;
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem 0;
}

.navbar.scrolled {
  top: 0.5rem;
  border-radius: 50px;
  background: rgba(5, 5, 5, 0.85);
  padding: 0.3rem 0;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(0, 242, 216, 0.1);
  border-color: rgba(0, 242, 216, 0.2);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-height: 60px;
}
.nav-logo a {
  display: flex;
  align-items: center;
  width: 45px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex-shrink: 0;
}
.nav-logo:hover a {
  cursor: pointer;
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 0 10px var(--primary-color));
}
.nav-logo img {
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  transition: border-color 0.4s;
}
.nav-logo:hover img {
  border-color: var(--primary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-social {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-shrink: 0;
}

.nav-social a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-social a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
  filter: drop-shadow(0 0 15px var(--primary-color));
}

.nav-social-mobile {
  display: none;
}

.nav-social-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  flex: 0 0 40px;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  font-size: 0.95rem;
  white-space: nowrap;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-menu a:hover {
  color: var(--primary-color);
  text-shadow: var(--neon-text-teal);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  box-shadow: 0 0 12px var(--primary-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a.active {
  color: var(--primary-color);
  text-shadow: 0 0 15px rgba(0, 242, 216, 0.5);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  flex: 0 0 30px;
  align-items: flex-end;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  border-radius: 5px;
  background: var(--primary-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
}
/* #endregion */
/* #region HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Align container to the right */
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f7f7 0%, #e0f2f1 100%);
  background-image: url(../assets/img/Mostafa\ Shawky\ Cover.jpg);
  background-size: cover;
  background-position: center center;
  padding-right: 8%; /* Spacing from the right edge */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5, 5, 5, 0.4) 0%,
    rgba(5, 5, 5, 0.2) 50%,
    rgba(5, 5, 5, 0.1) 100%
  );
  z-index: 1;
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(0, 242, 216, 0.05),
    transparent 50%
  );
}

.hero-bg-icon {
  position: absolute;
  font-size: clamp(15rem, 40vw, 30rem);
  opacity: 0.03;
  z-index: 0;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
  will-change: transform;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  text-align: center; /* Keep internal content centered */
  padding: 0 2rem;
  margin: 0; /* Remove auto centering */
  will-change: transform, opacity;
}

.hero-content > * {
  opacity: 0;
  transform: translateX(50px);
  filter: blur(10px);
}

.hero-content.animate > * {
  animation: revealRight 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.hero-content.animate h1 {
  animation-delay: 0.2s;
}
.hero-content.animate p {
  animation-delay: 0.4s;
}
.hero-content.animate .hero-stats {
  animation-delay: 0.6s;
}
.hero-content.animate .btn-primary {
  animation-delay: 0.8s;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: fadeInDown 1s ease;
}

.hero-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 1000;
  margin-bottom: 2rem;
  color: #fff;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -4px;
  text-shadow:
    0 0 10px rgba(0, 242, 216, 0.8),
    0 0 30px rgba(0, 242, 216, 0.4),
    0 0 50px rgba(0, 242, 216, 0.2);
}

.hero-content.animate .hero-title {
  animation:
    revealUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards,
    neonBreath 4s infinite ease-in-out 1.2s;
}

.hero-description {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: var(--text-light);
  margin-bottom: 3.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto; /* Centered in container */
  line-height: 1.6;
  opacity: 0.9;
  font-weight: 500;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center; /* Centered in container */
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: var(--gradient-vibrant);
  color: #000;
  padding: 1.25rem 3.5rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 15px rgba(0, 242, 216, 0.3);
  position: relative;
  overflow: hidden;
  animation: fadeIn 2s ease;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: var(--neon-glow-intense);
  color: #fff;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px var(--neon-glow-intense);
}

/* #endregion */
/* #region SECTIONS - General */
section {
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

/* Base hidden state for all section/footer content */
section .section-title,
section .section-divider,
section .lead-text,
section .about-content,
section .music-container,
section .videos-grid,
section .collab-grid,
section .events-content,
section .testimonials-grid,
section .contact-content,
section .social-grid,
section .platforms-grid,
footer .footer-content {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(10px);
  transition: all 1s cubic-bezier(0.33, 1, 0.68, 1);
}

/* Reveal sequence when section or footer is visible */
section.visible .section-title,
footer.visible .footer-brand {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.1s;
}

section.visible .section-divider {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.2s;
}

section.visible .lead-text,
section.visible .about-content,
section.visible .music-container,
section.visible .videos-grid,
section.visible .collab-grid,
section.visible .events-content,
section.visible .testimonials-grid,
section.visible .contact-content,
section.visible .social-grid,
section.visible .platforms-grid,
footer.visible .footer-content {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.4s;
}

section.visible .lead-text {
  transition-delay: 0.3s;
}
section.visible .videos-grid,
section.visible .testimonials-grid {
  transition-delay: 0.5s;
}

/* Individual card staggers if triggered by animate-in */
.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
  filter: blur(0) !important;
  transition: all 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 90%;
  position: relative;
}

.section-title {
  font-size: clamp(2rem, 7vw, 4rem);
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 900;
  color: var(--secondary-color);
  letter-spacing: -1px;
  text-transform: uppercase;
}

.section-divider {
  width: 140px;
  height: 4px;
  background: var(--gradient-vibrant);
  margin: 0 auto 5rem;
  border-radius: 10px;
  box-shadow:
    0 0 10px var(--primary-color),
    0 0 20px var(--primary-color);
  position: relative;
  overflow: hidden;
}

.section-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  animation: lightSweep 3s infinite linear;
}

@keyframes lightSweep {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.lead-text {
  font-size: 1.25rem;
  text-align: center;
  color: var(--text-gray);
  max-width: 750px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  font-weight: 500;
}
/* #endregion */
/* #region ABOUT SECTION */
#about {
  background: var(--light-bg);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.info-card {
  background: var(--card-bg); /* Use the new global glass bg */
  padding: 3.5rem 2rem;
  border-radius: 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
}

.info-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--primary-color);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(0, 242, 216, 0.2);
  background: rgba(10, 10, 10, 0.9);
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(0, 242, 216, 0.15),
    transparent 70%
  );
  opacity: 0;
  transition: 0.4s;
}

.info-card:hover::before {
  opacity: 1;
}

.info-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.info-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 800;
  color: #fff;
}

.info-card p {
  color: var(--text-gray);
  line-height: 1.6;
  font-weight: 400;
}
/* #endregion */
/* #region ALBUMS SECTION */
.albums-section {
  background: var(--dark-bg);
  color: #fff;
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.album-card {
  background: var(--card-bg);
  padding: 3.5rem 2rem;
  border-radius: 24px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  position: relative;
}

.album-card:hover {
  transform: translateY(-15px) scale(1.05);
  border-color: var(--primary-color);
  box-shadow: var(--neon-glow-intense);
  background: rgba(15, 15, 15, 1);
}

.album-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.album-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 800;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(0, 242, 216, 0.3);
}

.album-card p {
  color: var(--text-light);
  line-height: 1.6;
  opacity: 0.8;
}
/* #endregion */
/* #region MUSIC SECTION */
#music {
  background: linear-gradient(to bottom, var(--light-bg), var(--dark-bg));
}

.music-container {
  max-width: 1200px;
  margin: 0 auto;
}

.music-player-card {
  display: flex;
  background: rgba(10, 10, 10, 0.4);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(0, 242, 216, 0.15);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(0, 242, 216, 0.05);
  min-height: 600px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.music-player-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
  opacity: 0.3;
}

.music-player-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 242, 216, 0.4);
  box-shadow:
    0 30px 60px -12px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(0, 242, 216, 0.1);
}

.player-image {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
}

.player-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 60%,
    rgba(10, 10, 10, 0.8) 100%
  );
}

.player-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.music-player-card:hover .player-image img {
  transform: scale(1.05);
}

.player-interface {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  background: rgba(10, 10, 10, 0.2);
}

.player-header {
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.album-title {
  font-family: "Outfit", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -1px;
}

.btn-listen-full {
  background: transparent;
  border: 1px solid var(--primary-color);
  padding: 0.7rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(0, 242, 216, 0.1);
}

.btn-listen-full a {
  text-decoration: none;
  color: var(--primary-color);
}

.btn-listen-full:hover {
  background: var(--primary-color);
  box-shadow: var(--neon-glow-teal);
}

.btn-listen-full:hover a {
  color: #000;
}

/* Track List */
.track-list {
  flex: 1;
  padding: 1.5rem 2rem;
  overflow-y: auto;
  max-height: 350px;
}

.track-item {
  display: flex;
  align-items: center;
  padding: 1.25rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.track-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transform: translateX(8px);
}

.track-item.active {
  background: rgba(0, 242, 216, 0.1);
  border-color: rgba(0, 242, 216, 0.3);
  color: var(--primary-color);
  animation: neonPulse 2s infinite ease-in-out;
}

.item-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--primary-color);
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--primary-color);
  z-index: 5;
}

@keyframes neonPulse {
  0% {
    box-shadow: 0 0 5px rgba(0, 242, 216, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 242, 216, 0.4);
  }
  100% {
    box-shadow: 0 0 5px rgba(0, 242, 216, 0.2);
  }
}

.play-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  margin-right: 1.2rem;
  font-size: 0.75rem;
  transition: all 0.3s ease;
}

.track-item:hover .play-icon,
.track-item.active .play-icon {
  background: var(--primary-color);
  color: #000;
  box-shadow: 0 0 10px var(--primary-color);
}

.track-details {
  flex: 1;
}

.track-name {
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.track-duration {
  font-size: 0.85rem;
  font-family: monospace;
  opacity: 0.5;
  margin-left: 1rem;
}

/* Bottom Player Bar */
.active-track-bar {
  background: rgba(10, 10, 10, 0.8);
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: auto;
  position: relative;
  backdrop-filter: blur(10px);
}

.player-progress-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.player-progress-bar {
  height: 100%;
  background: var(--gradient-vibrant);
  width: 0%;
  position: relative;
  box-shadow: 0 0 15px var(--primary-color);
}

.player-progress-bar::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-color);
}

.current-track-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.current-track-info .label {
  font-size: 0.7rem;
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.2rem;
  opacity: 0.8;
}

.current-track-info .name {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.player-controls {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.ctrl-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctrl-btn:hover {
  color: var(--primary-color);
  transform: scale(1.1);
}

.ctrl-btn.play-pause {
  background: var(--primary-color);
  color: #000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 20px rgba(0, 242, 216, 0.3);
  position: relative;
}

.ctrl-btn.play-pause:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0, 242, 216, 0.5);
  background: #fff;
}

.time-display {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  font-family: monospace;
  min-width: 100px;
  text-align: right;
  flex: 1;
}

/* Scrollbar for track list */
.track-list::-webkit-scrollbar {
  width: 6px;
}
.track-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
}
.track-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

@media (max-width: 900px) {
  .music-player-card {
    flex-direction: column;
    min-height: auto;
  }

  .player-image {
    height: 350px;
    flex: none;
  }

  .player-image::after {
    background: linear-gradient(
      to bottom,
      transparent 60%,
      rgba(10, 10, 10, 0.9) 100%
    );
  }

  .player-header {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
  }

  .track-list {
    max-height: 300px;
    padding: 1rem;
  }

  .active-track-bar {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .current-track-info {
    order: 1;
    text-align: center;
    width: 100%;
  }

  .current-track-info .name {
    max-width: 100%;
  }

  .player-controls {
    order: 2;
    width: 100%;
    justify-content: center;
  }

  .time-display {
    order: 3;
    text-align: center;
    width: 100%;
  }
}

.track {
  background: var(--card-bg);
  backdrop-filter: blur(15px);
  border: var(--glass-border);
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.track:hover {
  border-color: var(--primary-color);
  transform: translateX(-5px);
  background: rgba(255, 255, 255, 0.05);
}

.track.active {
  border-color: var(--primary-color);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
  background: rgba(212, 175, 55, 0.05);
}

.track-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.track-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.track-info p {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--dark-bg);
  font-size: 1.3rem;
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(201, 150, 61, 0.5);
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(201, 150, 61, 0.2);
  border-radius: 10px;
  overflow: hidden;
  display: none;
}

.progress-bar.active {
  display: block;
}

.progress {
  height: 100%;
  background: var(--gradient-gold);
  width: 0%;
  transition: width 0.3s ease;
}

.streaming-platforms {
  margin-top: 4rem;
  text-align: center;
}

.streaming-platforms h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.platform-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--card-bg);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: var(--glass-border);
  backdrop-filter: blur(10px);
}

.platform-btn:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 242, 216, 0.25);
  background: rgba(10, 10, 10, 0.9);
}

.platform-btn i {
  font-size: 2.5rem;
}

.platform-btn div {
  text-align: left;
}

.platform-btn span {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
}

.platform-btn small {
  color: var(--text-gray);
  font-size: 0.85rem;
}

.platform-btn.anghami i {
  color: #a942c4;
}
.platform-btn.spotify i {
  color: #1db954;
}
.platform-btn.youtube i {
  color: #ff0000;
}
/* #endregion */
/* #region VIDEOS SECTION */
.videos-section {
  background: var(--dark-bg);
  position: relative;
}

.videos-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 242, 216, 0.2),
    transparent
  );
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.video-card {
  background: rgba(10, 10, 10, 0.4);
  border-radius: 40px;
  overflow: hidden;
  transition: all 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 0%,
    rgba(0, 242, 216, 0.1),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.video-card:hover {
  transform: translateY(-15px);
  border-color: rgba(0, 242, 216, 0.4);
  background: rgba(15, 15, 15, 0.7);
  box-shadow:
    0 30px 60px -15px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 242, 216, 0.1);
}

.video-card:hover::before {
  opacity: 1;
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  cursor: pointer;
  overflow: hidden;
  margin: 15px;
  border-radius: 25px;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.1) rotate(1deg);
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.play-overlay i {
  font-size: 2.2rem;
  color: #fff;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-card:hover .play-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.video-card:hover .play-overlay i {
  transform: scale(1.15);
  background: var(--primary-color);
  color: #000;
  border-color: var(--primary-color);
  box-shadow:
    0 0 20px var(--primary-color),
    0 0 40px rgba(0, 242, 216, 0.4);
}

.video-info {
  padding: 0 2rem 2.5rem;
  text-align: center;
}

.video-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.5px;
  transition: color 0.3s ease;
}

.video-card:hover .video-info h3 {
  color: var(--primary-color);
}

.video-info p {
  color: var(--text-gray);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.6;
}

.section-action {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  width: 100%;
}

.btn-watch-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.9rem 2.2rem;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1.5px;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 15px rgba(0, 242, 216, 0.15);
}

.btn-watch-more i {
  font-size: 1.25rem;
  color: #ff0000;
  transition: all 0.4s ease;
}

.btn-watch-more:hover {
  background: var(--primary-color);
  color: #000;
  box-shadow: var(--neon-glow-teal);
  transform: translateY(-3px);
}

.btn-watch-more:hover i {
  color: #000;
  transform: scale(1.1);
}
/* #endregion */
/* #region COLLABORATIONS SECTION */
#collaborations {
  background: var(--dark-bg);
}

.collab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.collab-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  border: var(--glass-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.collab-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.collab-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.collab-card h4 {
  font-size: 1.3rem;
}
/* #endregion */
/* #region EVENTS SECTION */
.events-section {
  background: var(--light-bg);
}

.events-content {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.events-category {
  background: var(--dark-bg);
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid rgba(0, 242, 216, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #fff;
}

.events-category:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 40px rgba(0, 242, 216, 0.2);
}

.events-category h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.events-category h3 i {
  color: var(--primary-color);
}

.events-category p {
  text-align: center;
  color: var(--text-gray);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  #events .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* #endregion */
/* #region SOCIAL MEDIA SECTION */
.social-section {
  background: var(--dark-bg);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.social-card {
  background: var(--card-bg); /* Dark glass */
  padding: 3.5rem 2rem;
  border-radius: 24px;
  text-align: center;
  text-decoration: none;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.social-card:hover {
  transform: translateY(-15px) scale(1.03);
  border-color: var(--primary-color);
  box-shadow: var(--neon-glow-intense);
  background: rgba(10, 10, 10, 0.9);
}

.social-card i {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.social-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.followers {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
}

.social-card.facebook:hover i {
  color: #1877f2;
}
.social-card.youtube:hover i {
  color: #ff0000;
}
.social-card.tiktok:hover i {
  color: #000000;
  background: linear-gradient(45deg, #25f4ee, #fe2c55);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.social-card.instagram:hover i {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* #endregion */
/* #region TESTIMONIALS SECTION */
#testimonials {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 10rem) 1rem;
  color: #fff;
  z-index: 1;
}

.testimonials-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 242, 216, 0.05),
    transparent 70%
  );
  z-index: -1;
}

#testimonials .section-title {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 0.8rem;
}

#testimonials .section-divider {
  margin: 0 auto 4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  background: rgba(15, 15, 15, 0.6);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 1;
  opacity: 0;
  transform: translateY(40px);
  min-height: 250px;
}

.testimonial-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 242, 216, 0.4);
  background: rgba(20, 20, 20, 0.9);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(0, 242, 216, 0.15);
  z-index: 10;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(0, 242, 216, 0.15),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  pointer-events: none;
}

.testimonial-card:hover .card-glow {
  opacity: 1;
}

.testimonial-content {
  position: relative;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.quote-icon {
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.15;
  position: absolute;
  top: -15px;
  left: -10px;
  z-index: 0;
  transition: all 0.5s ease;
}

.testimonial-card:hover .quote-icon {
  opacity: 0.3;
  transform: scale(1.1) rotate(-10deg);
  text-shadow: 0 0 20px var(--primary-color);
}

.testimonial-content p {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.7;
  font-style: italic;
  font-weight: 300;
  position: relative;
  z-index: 1;
  margin-top: 1rem;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.author-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(0, 242, 216, 0.2),
    rgba(0, 201, 177, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(0, 242, 216, 0.3);
  color: var(--primary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.testimonial-card:hover .author-avatar {
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(0, 242, 216, 0.4);
  background: rgba(0, 242, 216, 0.1);
  transform: scale(1.05);
}

.author-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.author-info strong {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
  transition: color 0.3s ease;
}

.testimonial-card:hover .author-info strong {
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(0, 242, 216, 0.3);
}

.stars {
  color: var(--primary-color);
  font-size: 0.85rem;
  display: flex;
  gap: 0.2rem;
}

.stars i {
  filter: drop-shadow(0 0 5px rgba(0, 242, 216, 0.5));
}

/* Hide extras gracefully like previously handled */
.testimonial-card:nth-child(n + 9) {
  display: none;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  #testimonials {
    padding: 6rem 1rem;
  }
}

@media (max-width: 768px) {
  #testimonials {
    padding: 5rem 1rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
  }
}
/* #endregion */
/* #region CONTACT SECTION */
.contact-section {
  background: var(--dark-bg);
  text-align: center;
}

.btn-booking {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 1rem;
  background: var(--gradient-vibrant);
  color: #000; /* High contrast black on teal */
  padding: 1.5rem 4rem;
  border: none;
  border-radius: 60px;
  font-size: 1.4rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 25px rgba(0, 242, 216, 0.4);
}

.btn-booking:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: var(--neon-glow-intense);
  color: #000;
}
/* #endregion */
/* #region FOOTER */
.footer {
  background: #000;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--primary-color);
  box-shadow: 0 -5px 25px rgba(0, 242, 216, 0.1);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 201, 177, 0.5),
    transparent
  );
}

.footer-content {
  display: flex;
  gap: 2rem;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
}

.footer-brand {
  max-width: 250px;
}

.footer-logo-img img {
  height: 100px;
  width: auto;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 10px rgba(0, 201, 177, 0.2));
}

.footer-brand p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 1rem;
}

.footer-links-group h4,
.footer-social-group h4 {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.footer-links-group h4::after,
.footer-social-group h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-vibrant);
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.footer-nav a {
  color: var(--text-gray);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-nav a::before {
  content: "→";
  margin-right: 10px;
  opacity: 0;
  color: var(--primary-color);
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: var(--primary-color);
}

.footer-nav a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-social-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--primary-color);
  color: #000;
  transform: translateY(-5px) rotate(8deg);
  box-shadow: 0 0 20px var(--primary-color);
  border-color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  text-align: center;
  color: #666;
  font-size: 1rem;
}

.footer-bottom a {
  color: var(--primary-color);
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s;
}

.footer-bottom a:hover {
  color: #9f4bd8;
}
/* #endregion */
/* #region ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleGlow {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(0, 201, 177, 0.2);
  }
  50% {
    text-shadow:
      0 0 25px rgba(0, 201, 177, 0.5),
      0 0 35px rgba(0, 201, 177, 0.3);
  }
}

@keyframes neonBreath {
  0%,
  100% {
    text-shadow: var(--neon-text-teal);
    filter: brightness(1);
  }
  50% {
    text-shadow:
      0 0 20px rgba(0, 242, 216, 1),
      0 0 40px rgba(0, 242, 216, 0.6);
    filter: brightness(1.2);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-15px);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(12px);
    opacity: 0;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 201, 177, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(0, 201, 177, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 201, 177, 0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(0, 201, 177, 0.5);
  }
  50% {
    box-shadow:
      0 0 20px rgba(0, 201, 177, 0.8),
      0 0 30px rgba(0, 201, 177, 0.6);
  }
}

@keyframes revealUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes revealLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes revealRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-200deg);
  }
  to {
    opacity: 1;
    transform: rotate(0);
  }
}
/* #endregion */
/* #region RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .navbar {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    margin: 0 auto;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    background: rgba(5, 5, 5, 0.95);
    padding: 0.6rem 0;
  }

  .nav-container {
    justify-content: space-between;
    padding: 0 1.2rem;
  }

  .nav-logo {
    position: relative;
    left: 0;
    transform: none;
    width: 60px; /* Adjusted size for mobile */
    z-index: 1001;
    margin-right: auto; /* Push everything else to the right */
  }

  .nav-logo:hover {
    transform: scale(1.1);
  }

  .nav-logo a {
    width: 50px;
  }

  .nav-social {
    display: none !important;
  }

  .nav-menu {
    position: fixed;
    right: -100%;
    top: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: flex-start;
    background: rgba(10, 10, 10, 0.98);
    width: 250px; /* Balanced width */
    padding: 4rem 1.5rem 2rem;
    gap: 0.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(0, 242, 216, 0.15);
    backdrop-filter: blur(25px);
    margin: 0;
    text-align: right;
    left: auto;
    transform: none;
    z-index: 1000;
    visibility: hidden;
    height: 100vh;
    border-radius: 0;
    overflow-y: hidden;
  }

  .nav-social-mobile {
    display: block;
    margin-top: auto; /* Push to bottom */
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
  }

  .social-icons-wrapper {
    display: flex;
    justify-content: flex-end;
    gap: 1.2rem;
  }

  .social-icons-wrapper i {
    font-size: 1.3rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
  }

  .social-icons-wrapper a:hover i {
    transform: translateY(-3px);
    filter: drop-shadow(0 0 8px var(--primary-color));
  }

  .nav-menu.active {
    right: 0; /* Align to edge */
    visibility: visible;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    width: 100%;
    padding: 0.8rem 0;
    font-size: 1.2rem; /* Larger font for mobile */
  }

  .nav-toggle {
    display: flex;
    z-index: 1002;
  }

  .hero-content {
    padding: 2rem 1rem;
    margin: 0 auto;
    max-width: 100%;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-description {
    margin: 0 auto 2.5rem;
  }

  .hero {
    background-size: cover;
    justify-content: center;
    padding-right: 0;
  }
  .stat-number {
    font-size: 2rem;
  }

  section {
    padding: 4rem 1.5rem;
  }
  .testimonial-card {
    max-width: 90%;
  }

  .info-grid,
  .albums-grid,
  .platforms-grid,
  .videos-grid,
  .collab-grid,
  .social-grid,
  .testimonials-grid,
  .music-content-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-brand {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-links-group h4::after,
  .footer-social-group h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-nav {
    gap: 0.5rem;
    align-items: center;
  }

  .footer-social-icons {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .hero-description {
    font-size: 1rem;
    padding: 0 1rem;
  }
  .hero {
    background-size: cover;
    background-position: center left 35%;
    justify-content: center;
    padding: 2rem 1rem;
  }
  .hero-stats {
    gap: 1.5rem;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .btn-primary,
  .btn-booking {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .btn-watch-more {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
    width: 100%;
    max-width: 280px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .nav-logo {
    width: 100px;
  }
  .nav-logo img {
    border-radius: 50%;
  }

  /* Fix Testimonials on Mobile */
  .testimonials-grid {
    gap: 3rem;
    padding: 2rem 0;
  }

  .testimonial-card {
    max-width: 100%;
    padding: 2rem;
    margin: 0 !important; /* Override staggered margins */
    align-self: center !important; /* Center all cards */
    transform: scale(0.8) translateY(50px) !important; /* Simple fade up */
  }

  .testimonial-card.animate-in {
    transform: scale(1) translateY(0) !important;
  }

  .testimonial-card:hover {
    transform: scale(1.02) !important;
  }

  /* Footer Refinements for Mobile */
  .footer {
    padding-top: 3rem;
  }

  .footer-content {
    gap: 2.5rem;
    padding-bottom: 2rem;
  }

  .footer-brand h3 {
    font-size: 1.8rem;
  }

  .footer-links-group h4,
  .footer-social-group h4 {
    margin-bottom: 1.5rem;
  }
}

/* Smartwatch & Small Phones */
@media (max-width: 320px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .nav-logo {
    width: 50px;
  }
  .nav-social {
    gap: 0.5rem;
    margin-right: 0.5rem;
  }
  .nav-social a {
    font-size: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .footer-links-group a,
  .social-icon {
    font-size: 1rem;
  }
}

/* Custom Responsive additions for tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
  .hero {
    background-position: 30% center;
  }
  .info-grid,
  .albums-grid,
  .videos-grid,
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Retain vertical flow for testimonials on Tablet but adjust spacing */
  .testimonials-grid {
    gap: 8rem;
    padding: 3rem 0;
  }

  .testimonial-card {
    max-width: 40%;
  }
}

/* Large Screens */
@media (min-width: 1440px) {
  .container {
    max-width: 1600px;
  }

  .hero-title {
    font-size: 7rem;
  }

  .testimonials-grid {
    gap: 5rem;
    width: 100%;
    padding: 4rem;
  }

  .testimonial-card {
    width: 100%;
    padding: 3rem;
  }

  /* Footer Optimizations for Large Screens */
  .footer-content {
    gap: 8rem; /* More breathing room */
    padding-bottom: 6rem;
  }

  .footer-brand h3 {
    font-size: 2.5rem;
  }

  .footer-links-group h4,
  .footer-social-group h4 {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .footer-nav {
    gap: 1.5rem;
  }

  .footer-nav a {
    font-size: 1.1rem;
  }

  .social-icon {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }

  .footer-bottom {
    padding: 3rem 0 4rem;
    font-size: 1.1rem;
  }
}

/* ====================================
   VIDEO MODAL POPUP
==================================== */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-modal.active {
  display: flex;
  opacity: 1;
}

.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  background: var(--dark-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  animation: modalSlideIn 0.4s ease;
}

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: var(--primary-color);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--dark-bg);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.video-modal-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: var(--secondary-color);
}

.video-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-container iframe {
  border: none;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .video-modal-content {
    width: 95%;
  }

  .video-modal-close {
    top: -45px;
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}
/* #endregion */
/* #region Developer Credit */
.developer-credit {
  width: 100%;
  text-align: center;
  align-self: center;
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.developer-credit a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  font-family: monospace;
}

.developer-credit a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: #4361ee;
  transition: width 0.3s ease;
}

.developer-credit a:hover {
  color: #4361ee;
}
.developer-credit a:hover::after {
  width: 100%;
}
/* #endregion */
