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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #667eea;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #5a6fd8;
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

/* Navigation */
.navbar {
  /* background: rgba(0, 0, 0, 0.9) !important; */
  /* backdrop-filter: blur(10px); */
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar.scrolled {
  /* background: rgba(0, 0, 0, 0.95) !important; */
  padding: 0.5rem 0;
}

.navbar-brand .logo {
  height: 40px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  transition: width 0.3s ease;
}

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

.navbar-nav .nav-link:hover {
  color: #667eea !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

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

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide.active {
  opacity: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-image {
  animation: fadeInRight 1s ease-out 0.6s both;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.05);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 10;
}

.slider-controls button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.slider-controls button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Slider Indicators */
.slider-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #fff;
  transform: scale(1.2);
}

/* Artists Section */
.artist-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.artist-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
  background: linear-gradient(45deg, #f8f9fa, #e9ecef);
}

.artist-card:hover .artist-info h4 {
  color: #667eea;
}

.artist-image {
  position: relative;
  overflow: hidden;
}

.artist-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.artist-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.artist-card:hover .artist-overlay {
  opacity: 1;
}

.artist-card:hover .artist-image img {
  transform: scale(1.1);
}

.artist-social {
  display: flex;
  gap: 1rem;
}

.artist-social a {
  color: #fff;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.artist-social a:hover {
  color: #667eea;
  transform: scale(1.2);
}

.artist-info {
  padding: 1.5rem;
  text-align: center;
}

.artist-info h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Artists Scroll */
.artists-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0;
  scrollbar-width: thin;
}

.artist-item {
  /* background: linear-gradient(45deg, #667eea, #764ba2); */
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 25px;
  white-space: nowrap;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.artist-item:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 10px 20px rgba(111, 119, 156, 0.3); */
}

/* About Section */
.about-content h3 {
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.about-content p {
  margin-bottom: 1.5rem;
  color: #666;
  line-height: 1.8;
}

.about-image img {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.02);
}

/* Vision Mission Cards */
.vision-mission-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}

.vision-mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  background: linear-gradient(45deg, #f8f9fa, #e9ecef);
}

.vision-mission-card h4 {
  margin-bottom: 1rem;
  color: #333;
}

.vision-mission-card ul {
  list-style: none;
  padding: 0;
}

.vision-mission-card li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.vision-mission-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
}

/* VMV Cards */
.vmv-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.vmv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #667eea, #764ba2);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s ease;
}

.vmv-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.vmv-card:hover::before {
  opacity: 1;
}

.vmv-card:hover h4,
.vmv-card:hover p {
  color: #fff;
}

.vmv-icon {
  font-size: 2.5rem;
  color: #667eea;
  margin-bottom: 1.5rem;
  transition: all 0.5s ease;
}

.vmv-card:hover .vmv-icon {
  color: #fff;
  transform: scale(1.2) rotate(10deg);
}

.vmv-card h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  transition: color 0.5s ease;
}

.vmv-card p {
  color: #666;
  transition: color 0.5s ease;
}

/* Core Values */
.value-card {
  background: #fff;
  padding: 2rem 1rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
  background: linear-gradient(45deg, #f8f9fa, #e9ecef);
}

.value-card:hover i {
  transform: scale(1.2) rotate(10deg);
  color: #764ba2;
}

.value-card:hover h5 {
  color: #667eea;
}

.value-card i {
  font-size: 2.5rem;
  color: #667eea;
  margin-bottom: 1rem;
}

.value-card h5 {
  margin-bottom: 1rem;
  color: #333;
  font-weight: 600;
}

.value-card p {
  color: #666;
  font-size: 0.9rem;
}

/* Team Section */
.team-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
  background: linear-gradient(45deg, #f8f9fa, #e9ecef);
}

.team-card:hover .team-info h4 {
  color: #667eea;
}

.team-card:hover .position {
  color: #764ba2;
  font-weight: 600;
}

.team-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 1.5rem;
}

.team-info h4 {
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 600;
}

.position {
  color: #667eea;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.experience {
  color: #666;
  font-size: 0.9rem;
}

/* Coming Soon */
.coming-soon {
  padding: 4rem 2rem;
}

.coming-soon i {
  opacity: 0.5;
}

.coming-soon h4 {
  margin-bottom: 1rem;
  color: #333;
}

.coming-soon p {
  color: #666;
}

/* Demo Form */
.demo-form-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.demo-form-card .form-control,
.demo-form-card .form-select {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.demo-form-card .form-control:focus,
.demo-form-card .form-select:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
  background: #fff;
}

/* Spotify Featured Player */
.spotify-featured-player {
  background: #000000d1;
  border-radius: 20px;
  padding: 2rem;
  color: white;

  transition: all 0.3s ease;
}

.spotify-featured-player:hover {
  transform: translateY(-5px);
}

.spotify-player-header {
  text-align: center;
  margin-bottom: 2rem;
}

.spotify-player-header i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.spotify-player-header h4 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.spotify-player-header p {
  opacity: 0.9;
  font-size: 1.1rem;
}

.spotify-embed-container {
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.spotify-actions {
  text-align: center;
}

.btn-spotify {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-spotify:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Streaming Platforms */
.streaming-platforms {
  text-align: center;
}

.platforms-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 2rem;
  font-size: 1.3rem;
}

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

.platform-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  padding: 1.2rem;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-width: 100px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-link:hover {
  color: #fff;
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
  background: linear-gradient(45deg, #667eea, #764ba2);
}

.platform-link:hover i {
  transform: scale(1.2) rotate(10deg);
  color: #fff;
}

.platform-link:hover span {
  color: #fff;
}

.platform-link i {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.platform-link span {
  font-weight: 500;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #1a2a6c 0%, #2a3a7c 50%, #1e3c72 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1511379938547-c1f69419868d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 100%;
  text-align: left;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-item:hover i {
  transform: scale(1.2) rotate(10deg);
  background: rgba(255, 255, 255, 0.3);
}

.contact-item i {
  font-size: 1.5rem;
  color: #fff;
  margin-right: 1.5rem;
  margin-top: 0.25rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-item h5 {
  color: #fff;
  margin-bottom: 0.25rem;
  font-weight: 600;
  font-size: 1rem;
}

.contact-item p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  font-size: 0.9rem;
}

.contact-info h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-links a {
  color: #fff;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.contact-form {
  position: relative;
  z-index: 2;
}

.contact-form .form-control {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25), 0 10px 25px rgba(0, 0, 0, 0.15);
  color: #fff;
  transform: translateY(-3px);
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.contact-form .form-control:focus::placeholder {
  color: rgba(255, 255, 255, 0.9);
}

.contact-form .btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 600;
  padding: 12px 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-form .btn::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: left 0.5s ease;
  z-index: -1;
}

.contact-form .btn:hover::before {
  left: 100%;
}

.contact-form .btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* News Section */
.news-section {
  background: #f8f9fa;
}

.news-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 2rem;
}

.news-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
  background: linear-gradient(45deg, #f8f9fa, #e9ecef);
}

.news-card:hover h5 {
  color: #667eea;
}

.news-card:hover .read-more {
  color: #764ba2;
  transform: translateX(5px);
}

.news-image {
  height: 200px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-content {
  padding: 1.5rem;
}

.news-date {
  color: #667eea;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.news-content h5 {
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}

.news-content p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.read-more {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #5a6fd8;
  text-decoration: none;
}

/* Link Styling Fix */
a {
  color: inherit;
  text-decoration: none;
}

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

/* Footer Links Styling */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 10px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  transition: width 0.3s ease;
}

.footer-links a:hover::before {
  width: 100%;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  margin-right: 10px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.social-link:hover {
  background: linear-gradient(45deg, #667eea, #764ba2);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
  color: #fff;
}

/* Buttons */
.btn {
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(45deg, #667eea, #764ba2);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(45deg, #5a6fd8, #6a4190);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.btn-outline-light:hover {
  background: #fff;
  color: #333;
  transform: translateY(-2px);
}

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

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

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

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .slider-controls {
    padding: 0 1rem;
  }

  .slider-controls button {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .streaming-platforms {
    gap: 1rem;
  }

  .news-card {
    margin-bottom: 1.5rem;
  }

  .news-content {
    padding: 1rem;
  }

  .streaming-platforms {
    gap: 1rem;
  }

  .platform-link {
    min-width: 100px;
    padding: 1rem;
  }

  .platform-link i {
    font-size: 2rem;
  }

  .value-card {
    margin-bottom: 1rem;
  }

  .artists-scroll {
    gap: 0.5rem;
  }

  .artist-item {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    text-align: center;
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .demo-form-card {
    padding: 1.5rem;
  }

  .streaming-platforms {
    flex-direction: column;
    align-items: center;
  }

  .news-card {
    margin-bottom: 1.5rem;
  }

  .news-content {
    padding: 1rem;
  }

  .streaming-platforms {
    gap: 1rem;
  }

  .platform-link {
    width: 200px;
  }
}

/* Loading Animation */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading.hidden {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loading-logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  animation: pulse 2s infinite;
}

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