:root {
  --font-primary: 'Montserrat', sans-serif;
  --font-display: 'Montserrat', sans-serif;
  --color-background: #0f0f1a;
  --color-background-alt: #1a1a2e;
  --color-primary: #e74cff;
  --color-secondary: #957dad;
  --color-accent: #00f7ff;
  --color-accent-alt: #f9f871;
  --color-text: #ffffff;
  --gradient-sunset: linear-gradient(135deg, #0f0f1a 0%, #6e45a8 50%, #e74cff 100%);
  --gradient-lavaLamp: linear-gradient(45deg, #e74cff 0%, #957dad 50%, #00f7ff 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  --motion-slowFade: opacity 8s ease-in-out infinite;
  --motion-ripple: transform 12s ease-in-out infinite;
  --motion-float: transform 6s ease-in-out infinite alternate;
  --layout-maxWidth: 1200px;
  --spacing-sectionPadding: 6rem 2rem;
  --spacing-cardGap: 2rem;
  --glow-purple: 0 0 15px rgba(231, 76, 255, 0.5);
  --glow-blue: 0 0 15px rgba(0, 247, 255, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23957dad' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.container {
  max-width: var(--layout-maxWidth);
  margin: 0 auto;
  padding: 0 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  margin-bottom: 1rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  background: var(--gradient-lavaLamp);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--color-accent);
}

/* Animation Base Classes */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animation classes for section elements */
section {
  padding: var(--spacing-sectionPadding);
  position: relative;
  opacity: 0;
  transform: translateY(40px); /* Start sections lower */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Animate both properties */
}

section.animate {
  opacity: 1;
  transform: translateY(0); /* Move sections to their final position */
}

.hero {
  opacity: 1;
  transform: none;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border-bottom: none;
  padding: 1rem 0;
  transition: all 0.4s ease;
}

header.scrolled {
  background-color: rgba(15, 15, 26, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(231, 76, 255, 0.1);
  padding: 0.5rem 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  max-width: var(--layout-maxWidth);
  margin: 0 auto;
}

/* Update the logo in the navigation */
.logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  text-shadow: var(--glow-purple);
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 40px;
  width: auto;
  filter: drop-shadow(var(--glow-purple));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  position: relative;
  color: var(--color-text);
  opacity: 0.8;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--color-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0;
  transition: all 0.3s ease;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  opacity: 1;
  bottom: -12px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-social-icon {
  font-size: 1.2rem;
  color: var(--color-text);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.nav-social-icon:hover {
  opacity: 1;
  color: var(--color-primary);
  transform: scale(1.1);
}

.nav-cta-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: #fff;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  box-shadow: 0 5px 15px rgba(231, 76, 255, 0.4);
  transition: all 0.3s ease;
}

.nav-cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(231, 76, 255, 0.6);
  color: #fff;
}

.nav-cta-button i {
  font-size: 0.9rem;
}

/* Header animation */
header.scrolled .nav-logo {
  height: 35px;
}

header.scrolled .nav-links a {
  font-size: 0.85rem;
}

header.scrolled .nav-cta-button {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001; /* Ensure it's above other elements */
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-text);
  margin-bottom: 5px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Responsive navigation */
@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(15, 15, 26, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.5s ease;
  }

  .nav-links.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }
  
  .nav-links li {
    margin: 2rem 0;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.5s ease;
  }

  .nav-links.active li {
    transform: translateY(0);
    opacity: 1;
  }
  
  /* Staggered animation for links */
  .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
  .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }

  .menu-toggle {
    display: flex;
  }

  .nav-right {
    gap: 1rem;
  }

  .nav-social-icon {
    display: none; /* Hide social icons in nav on smaller screens */
  }
}

@media (max-width: 768px) {
  .nav-cta-button span {
    display: none;
  }
  
  .nav-cta-button {
    padding: 0.75rem;
    border-radius: 50%;
  }
  
  .nav-cta-button i {
    margin-right: 0;
  }

  header.scrolled .nav-cta-button {
    padding: 0.6rem;
  }
}

/* Hero Section - Enhanced */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0;
  opacity: 1;
  transform: none;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('Assets/front cover.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
  filter: brightness(0.5) contrast(1.1);
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 15, 26, 0.9) 0%, rgba(110, 69, 168, 0.7) 50%, rgba(231, 76, 255, 0.5) 100%);
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-top: 100px; /* Add space for the fixed header */
  padding-bottom: 2rem;
  overflow-y: auto; /* Allow scrolling if content exceeds viewport */
}

.hero-content {
  max-width: 800px;
  width: 100%;
  padding: 0;
  margin: 0;
  text-align: center;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  border: none;
  box-shadow: none;
  overflow: visible;
  position: relative;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transform: skewX(-15deg);
  pointer-events: none;
  z-index: 1;
  transition: all 0.8s ease;
  animation: shimmer 6s infinite;
}

@keyframes shimmer {
  0% {
    left: -150%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.artist-image-container {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.artist-image-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(231, 76, 255, 0.3);
  box-shadow: 
    0 0 20px rgba(231, 76, 255, 0.5),
    0 0 40px rgba(0, 247, 255, 0.3);
  animation: float 6s ease-in-out infinite alternate;
}

.artist-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-glow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(231, 76, 255, 0.2) 0%,
    transparent 70%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-title {
  font-size: 6rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 
    0 0 10px rgba(231, 76, 255, 0.7),
    0 0 20px rgba(231, 76, 255, 0.5),
    0 0 30px rgba(231, 76, 255, 0.3);
  position: relative;
  z-index: 2;
  letter-spacing: 2px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  transform: scale(1, 1.05);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  font-weight: 600;
  opacity: 0.9;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-text);
  opacity: 0.8;
}

.hero-tagline {
  font-family: 'Kalam', cursive;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  text-shadow: 0 0 15px rgba(0, 247, 255, 0.6);
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  transform: rotate(-2deg);
  position: relative;
  display: inline-block;
}

.hero-tagline::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 10%;
  width: 80%;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--color-accent), transparent);
}

/* Social Bar */
.social-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  width: 100%;
  padding: 1rem;
}

.social-bar .social-icon {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.social-bar .social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(231, 76, 255, 0.3);
}

.social-bar .social-icon i {
  font-size: 1.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.cta-button {
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  color: #0f0f1a;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  font-size: 1rem;
  box-shadow:
    0 5px 15px rgba(231, 76, 255, 0.4),
    0 0 20px rgba(231, 76, 255, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.5s ease;
  z-index: -1;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow:
    0 8px 25px rgba(231, 76, 255, 0.6),
    0 0 30px rgba(231, 76, 255, 0.4);
  color: #0f0f1a;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button.alt {
  background: transparent;
  border: 2px solid rgba(231, 76, 255, 0.5);
  color: var(--color-text);
  box-shadow:
    0 5px 15px rgba(0, 0, 0, 0.2),
    0 0 10px rgba(231, 76, 255, 0.2);
}

.cta-button.alt:hover {
  background: rgba(231, 76, 255, 0.1);
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(231, 76, 255, 0.4);
}

.cta-button i {
  font-size: 1rem;
}

/* About Section */
.about {
  background-color: var(--color-background);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(231, 76, 255, 0.05), rgba(0, 247, 255, 0.05));
  pointer-events: none;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
  margin-top: 4rem;
}

.about-text {
  padding: 0;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  border: none;
  box-shadow: none;
  text-align: left;
}

.about-text h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient-lavaLamp);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.8;
}

.about-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--glow-purple);
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(231, 76, 255, 0.2), rgba(0, 247, 255, 0.2));
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  position: relative;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Music Section */
.music {
  background: linear-gradient(to bottom, var(--color-background), #000);
  position: relative;
}

.neon-text-heading {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.music::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23e74cff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.music-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-cardGap);
  position: relative;
  z-index: 2;
}

.music-player, .spotify-embed {
  background: rgba(15, 15, 26, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(231, 76, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  padding: 1.5rem;
}

.music-player h3, .spotify-embed h3 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--color-primary);
  text-shadow: var(--glow-purple);
}

.music-player video {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--glow-purple);
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(15, 15, 26, 0.9), transparent);
}

/* Gallery Section */
.gallery {
  background-color: var(--color-background);
  position: relative;
  text-align: center;
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 247, 255, 0.05), rgba(231, 76, 255, 0.05));
  pointer-events: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.gallery-item {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  box-shadow: var(--glow-purple);
  transition: all 0.3s ease;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(231, 76, 255, 0.2), rgba(0, 247, 255, 0.2));
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.2);
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, rgba(15, 15, 26, 0.9), rgba(15, 15, 26, 0.8)), url('Assets/SÓR(Front Art).png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  text-align: center;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(231, 76, 255, 0.2), rgba(0, 247, 255, 0.2));
  z-index: 1;
  pointer-events: none;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-cardGap);
  position: relative;
  z-index: 2;
}

.social-links {
  padding: 2rem;
  background: rgba(15, 15, 26, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(231, 76, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.social-links h3 {
  margin-bottom: 1.5rem;
  color: var(--color-primary);
  text-shadow: var(--glow-purple);
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: translateX(5px);
}

.social-icons i {
  font-size: 1.5rem;
  color: var(--color-accent);
  text-shadow: var(--glow-blue);
}

.social-icon:first-child i {
  color: #ff0000;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.social-icon:last-child i {
  color: #E1306C;
  text-shadow: 0 0 10px rgba(225, 48, 108, 0.5);
}

.social-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.social-platform {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
}

.social-description {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

.scroll-icon {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(231, 76, 255, 0.5);
  border-radius: 25px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.scroll-dot {
  width: 6px;
  height: 10px;
  background-color: var(--color-primary);
  border-radius: 3px;
  animation: pulse 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.5;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
  }
  100% {
    opacity: 0.5;
    transform: translateY(0);
  }
}

/* Section Intro */
.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  opacity: 0.8;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.feature {
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature i {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
  text-shadow: var(--glow-purple);
}

.feature h3 {
  margin-bottom: 1rem;
  color: var(--color-text);
}

/* Featured Track */
.featured-track {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 4rem;
  overflow: hidden;
}

.featured-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(231, 76, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(231, 76, 255, 0.5);
}

.play-button i {
  color: #0f0f1a;
  font-size: 1.5rem;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(0, 247, 255, 0.8);
  box-shadow: 0 0 30px rgba(0, 247, 255, 0.6);
}

.featured-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.track-header {
  margin-bottom: 1.5rem;
}

.label {
  display: inline-block;
  background: var(--color-primary);
  color: #0f0f1a;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.track-meta {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.track-description {
  margin-bottom: 2rem;
  line-height: 1.8;
}

.track-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.action-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--gradient-lavaLamp);
  color: #0f0f1a;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.action-button.alt {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-text);
  border: 1px solid rgba(231, 76, 255, 0.3);
}

.action-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(231, 76, 255, 0.4);
  color: #0f0f1a;
}

.action-button.alt:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-primary);
}

.streaming-links {
  display: flex;
  gap: 1rem;
}

.streaming-icon {
  font-size: 1.5rem;
  color: var(--color-text);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.streaming-icon:hover {
  color: var(--color-primary);
  opacity: 1;
  transform: scale(1.1);
}

/* Track Cards */
.sub-heading {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--color-text);
}

.track-card {
  display: flex;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
  transition: all 0.3s ease;
}

.track-thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.track-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.duration {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background: rgba(15, 15, 26, 0.7);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.7rem;
}

.track-info {
  flex: 1;
}

.track-info h4 {
  margin-bottom: 0.25rem;
}

.track-info p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0;
}

.track-controls {
  display: flex;
  gap: 0.5rem;
}

.control-button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.control-button:hover {
  background: var(--color-primary);
  color: #0f0f1a;
}

.center-button {
  text-align: center;
  margin-top: 3rem;
}

.view-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  color: var(--color-text);
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(231, 76, 255, 0.4);
  color: var(--color-primary);
}

/* Instagram Follow */
.instagram-follow {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 2.5rem;
  margin-top: 4rem;
  gap: 2rem;
}

.follow-text {
  flex: 1;
  text-align: left;
}

.follow-text h3 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.follow-text p {
  opacity: 0.8;
  max-width: 500px;
}

.follow-buttons {
  display: flex;
  gap: 1rem;
}

.instagram-button, .x-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.instagram-button {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.x-button {
  background: #000;
  border: 1px solid #fff;
}

.instagram-button:hover, .x-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: white;
}

.instagram-button:hover {
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4);
}

.x-button:hover {
    border-color: var(--color-primary);
    box-shadow: 0 5px 15px rgba(231, 76, 255, 0.4);
}


/* Contact Info */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.info-card {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  gap: 1rem;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(231, 76, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.info-content h4 {
  margin-bottom: 0.25rem;
}

.info-content p {
  margin: 0;
  opacity: 0.8;
}

.collab-opportunities {
  grid-column: span 2;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.collab-opportunities h4 {
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.collab-opportunities ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.collab-opportunities li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.collab-opportunities li i {
  font-size: 0.5rem;
  color: var(--color-accent);
}

/* Footer */
footer {
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(231, 76, 255, 0.1);
  margin-bottom: 2rem;
}

.footer-brand h3 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.footer-brand p {
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--color-primary);
  color: #0f0f1a;
  transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--color-text);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-primary);
  opacity: 1;
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-tagline {
  opacity: 0.8;
}

.footer-tagline i {
  color: var(--color-primary);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 26, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 2rem;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  color: var(--color-primary);
  transform: rotate(90deg);
}

/* Additional Button Styles */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.cta-button.alt {
  background: transparent;
  border: 1px solid rgba(231, 76, 255, 0.5);
  color: var(--color-text);
}

.cta-button.alt:hover {
  background: rgba(231, 76, 255, 0.2);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Responsive adjustments for new elements */
@media (max-width: 992px) {
  .featured-track {
    grid-template-columns: 1fr;
  }
  
  .instagram-follow {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .follow-buttons {
    justify-content: center;
  }
  
  .collab-opportunities {
    grid-column: span 1;
  }

  .about-content {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .hero-content-wrapper {
    padding: 1rem;
  }
  
  .hero-title {
    font-size: 4.5rem;
  }
}

@media (max-width: 768px) {
  .hero-content-wrapper {
    padding: 1rem;
    padding-top: 80px;
    min-height: 100vh;
    justify-content: flex-start;
  }
  
  .social-bar {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 1.5rem;
    padding: 0.5rem;
  }
  
  .social-bar .social-icon {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 300px;
    gap: 1rem;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons .cta-button {
    width: 100%;
    justify-content: center;
  }
  
  .track-actions {
    flex-direction: column;
  }
  
  .footer-content {
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-tagline {
    font-size: 1.8rem;
  }
  
  .artist-image-wrapper {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 576px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .track-card {
    flex-direction: column;
    text-align: center;
  }

  .track-controls {
    justify-content: center;
  }
  
  .hero-content-wrapper {
    padding: 0.5rem;
    padding-top: 70px;
  }
  
  .hero-content {
    padding: 0;
  }

  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .artist-image-container {
    margin-bottom: 1.5rem;
  }
  
  .artist-image-wrapper {
    width: 120px;
    height: 120px;
  }

  .social-bar {
    gap: 0.5rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }
  
  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .social-bar .social-icon {
    padding: 0.6rem 1rem;
  }
  
  .social-bar .social-icon i {
    font-size: 1.3rem;
  }
  
  .social-text {
    font-size: 0.9rem;
  }
  
  .scroll-indicator {
    bottom: 1rem;
  }
} 

/* Pulse glow animation for hero title */
.pulse-glow {
  animation: pulse-glow 4s infinite alternate;
}

@keyframes pulse-glow {
  0% {
    text-shadow: 
      0 0 10px rgba(231, 76, 255, 0.7),
      0 0 20px rgba(231, 76, 255, 0.5),
      0 0 30px rgba(231, 76, 255, 0.3);
  }
  50% {
    text-shadow: 
      0 0 15px rgba(231, 76, 255, 0.8),
      0 0 25px rgba(231, 76, 255, 0.6),
      0 0 35px rgba(231, 76, 255, 0.4),
      0 0 45px rgba(231, 76, 255, 0.2);
  }
  100% {
    text-shadow: 
      0 0 10px rgba(0, 247, 255, 0.7),
      0 0 20px rgba(0, 247, 255, 0.5),
      0 0 30px rgba(0, 247, 255, 0.3);
  }
} 

/* Contact Form */
.contact-form {
  padding: 2rem;
  background: rgba(15, 15, 26, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(231, 76, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
  color: var(--color-primary);
  text-shadow: var(--glow-purple);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(231, 76, 255, 0.2);
  border-radius: 12px;
  color: var(--color-text);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--color-primary);
  box-shadow: var(--glow-purple);
}

.submit-btn {
  background: var(--gradient-lavaLamp);
  color: #0f0f1a;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  font-size: 1rem;
  box-shadow: var(--glow-purple);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(231, 76, 255, 0.4);
}

.submit-btn.success {
  background: linear-gradient(45deg, #00c853, #64dd17);
  box-shadow: 0 5px 15px rgba(100, 221, 23, 0.4);
} 

@media (max-width: 768px) {
  .hero-content-wrapper {
    padding: 1rem;
    padding-top: 80px;
    min-height: 100vh;
    justify-content: flex-start;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-tagline {
    font-size: 1.8rem;
  }
  
  .artist-image-wrapper {
    width: 150px;
    height: 150px;
  }
} 

@media (max-width: 400px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-tagline {
    font-size: 1.2rem;
  }
  
  .artist-image-wrapper {
    width: 100px;
    height: 100px;
  }
  
  .hero-content-wrapper {
    padding-top: 60px;
  }
  
  .cta-button {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
  }
} 

.x-button {
  background: var(--gradient-lavaLamp);
  color: #0f0f1a;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
}

.x-button:hover {
  background: var(--gradient-lavaLamp);
  color: #0f0f1a;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(231, 76, 255, 0.4);
}

/* FAQ Section */
.faq {
  background-color: var(--color-background);
  position: relative;
  text-align: center;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(231, 76, 255, 0.05), rgba(0, 247, 255, 0.05));
  pointer-events: none;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.faq-item {
  text-align: left;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  position: relative;
}

.faq-question h3 {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
  color: var(--color-text);
  transition: color 0.3s ease;
}

.faq-question:hover h3 {
  color: var(--color-primary);
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(231, 76, 255, 0.2);
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.faq-toggle i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 2rem;
  transition: all 0.3s ease;
}

.faq-answer p {
  opacity: 0.8;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding-bottom: 2rem;
}

.faq-item.active .faq-toggle {
  background: var(--color-primary);
  color: #0f0f1a;
}

.faq-item.active .faq-toggle i {
  transform: rotate(45deg);
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(231, 76, 255, 0.2);
}

@media (max-width: 768px) {
  .faq-question {
    padding: 1.2rem 1.5rem;
  }
  
  .faq-question h3 {
    font-size: 1.1rem;
  }
  
  .faq-answer {
    padding: 0 1.5rem;
  }
} 

/* Featured Section Carousel */
.featured {
    background: linear-gradient(to bottom, #0c0c16, var(--color-background));
    position: relative;
    padding: var(--spacing-sectionPadding);
}

.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: var(--layout-maxWidth);
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    flex: 0 0 100%;
    padding: 2rem;
    text-align: center;
    min-width: 0;
    margin: 1rem;
    border-radius: 20px;
}

.item-icon {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    text-shadow: var(--glow-blue);
}

.carousel-item h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.carousel-item p {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(231, 76, 255, 0.2);
    color: var(--color-text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-button:hover {
    background: var(--color-primary);
    color: #0f0f1a;
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

@media (min-width: 768px) {
    .carousel-item {
        flex-basis: 50%;
    }
}

@media (min-width: 992px) {
    .carousel-item {
        flex-basis: 33.333%;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        padding: 1.5rem;
    }

    .carousel-item h3 {
        font-size: 1.2rem;
    }

    .carousel-item p {
        font-size: 0.9rem;
    }

    .carousel-button {
        width: 35px;
        height: 35px;
    }

    .carousel-button.prev {
        left: 5px;
    }

    .carousel-button.next {
        right: 5px;
    }
} 

/* About Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    height: 80vh;
    padding: 3rem;
    border-radius: 20px;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: var(--color-text);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--color-primary);
    transform: rotate(90deg);
}

.modal-body {
    overflow-y: auto;
    padding-right: 1rem;
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 2rem;
        height: 85vh;
    }

    .modal-close {
        font-size: 2rem;
    }
} 

@media (max-width: 576px) {
    .follow-buttons {
        flex-direction: column;
        align-items: center;
    }

    .instagram-button, .x-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
} 

@media (max-width: 400px) {
    .instagram-follow {
        padding: 2rem 1.5rem;
    }

    .follow-text h3 {
        font-size: 1.5rem;
    }

    .follow-text p {
        font-size: 0.9rem;
    }
} 