/* Audio Player Styles */
.audio-player {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1));
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.player-track-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 0 1 250px;
}

.player-cover {
  width: 60px;
  height: 60px;
  border-radius: 0.5rem;
  overflow: hidden;
}

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

.player-info h5 {
  color: var(--text-primary);
  margin: 0;
  font-size: 0.95rem;
}

.player-info p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.85rem;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 0 1 auto;
}

.player-btn {
  background: none;
  border: 2px solid var(--primary);
  color: var(--primary);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.player-btn:hover {
  background: var(--primary);
  color: var(--background);
  transform: scale(1.1);
}

.player-btn.play-pause {
  width: 50px;
  height: 50px;
  border-color: var(--secondary);
  color: var(--secondary);
  font-size: 1.4rem;
}

.player-btn.play-pause:hover {
  background: var(--secondary);
}

.player-progress {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 300px;
  min-width: 300px;
}

.player-progress span {
  color: var(--text-secondary);
  font-size: 0.85rem;
  min-width: 40px;
}

.progress-bar-container {
  position: relative;
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  cursor: pointer;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  transition: width 0.1s linear;
  position: relative;
}

.progress-bar::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.seek-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  appearance: none;
  background: transparent;
  border: none;
  outline: none;
  z-index: 5;
}

.seek-bar::-webkit-slider-thumb {
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.seek-bar::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.player-volume {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 1 200px;
  min-width: 150px;
}

.volume-icon {
  font-size: 1.2rem;
  color: var(--primary);
}

.volume-slider {
  flex: 1;
  height: 4px;
  appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
}

.volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: none;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.account-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  width: fit-content;
  max-width: 100%;
  position: relative;
}

.account-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 12px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1;
  border: 1px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  min-width: 0;
  max-width: 100%;
}

.account-nav a span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.account-nav a:hover {
  color: var(--primary);
  background: rgba(0, 212, 255, 0.06);
  border-color: rgba(0, 212, 255, 0.15);
}

.account-nav a.active {
  color: var(--background);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: rgba(255, 255, 255, 0.08);
}

.account-nav a i {
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .account-nav {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    position: relative;
  }

  .account-nav::-webkit-scrollbar {
    height: 0;
  }

  .account-nav::before,
  .account-nav::after {
    content: "";
    position: sticky;
    top: 0;
    width: 18px;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  }

  .account-nav::before {
    left: 0;
    margin-left: -1.25rem;
    background: linear-gradient(90deg, rgba(10, 16, 33, 1), rgba(10, 16, 33, 0));
    content: "‹";
  }

  .account-nav::after {
    right: 0;
    margin-right: -1.25rem;
    background: linear-gradient(270deg, rgba(10, 16, 33, 1), rgba(10, 16, 33, 0));
    content: "›";
  }

  .account-nav a {
    flex: 0 0 auto;
  }
}

@media (max-width: 480px) {
  .account-nav a {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(0, 212, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
}

/* Ensure native dropdown options are readable (browser draws these outside DOM) */
.form-group select option {
  background: #ffffff;
  color: #111827;
}

.form-group select optgroup {
  background: #ffffff;
  color: #111827;
}

.error-message {
  color: var(--accent);
  font-size: 0.85rem;
  display: none;
}

.error-message.show {
  display: block;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: var(--accent);
  background: rgba(236, 72, 153, 0.05);
}

/* Loading States */
.loading {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes slideIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Track Cards - Professional Design */
.track-card {
  animation: slideIn 0.5s ease-out;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: pointer;
}

.track-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  border-color: rgba(0, 212, 255, 0.2);
}

.track-card.active {
  border-color: var(--primary);
  background: rgba(0, 212, 255, 0.03);
}

.track-artwork {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1));
}

.track-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.track-card:hover .track-artwork img {
  transform: scale(1.08);
}

.play-btn-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.track-card:hover .play-btn-card {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.play-btn-card:hover {
  background: var(--primary);
  color: white;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 32px rgba(0, 212, 255, 0.4);
}

/* Spotify-style centered play button */
.track-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.2s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  z-index: 10;
  pointer-events: auto;
}

.track-play-btn i {
  font-size: 18px;
  margin-left: 2px;
}

.track-play-btn:hover {
  background: #1db954;
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 12px 24px rgba(29, 185, 84, 0.4);
}

/* Desktop hover - show play button and darken artwork */
@media (hover: hover) {
  .track-artwork:hover .track-play-btn {
    opacity: 1;
  }
  
  .track-artwork:hover img {
    filter: brightness(0.85);
  }
}

/* Mobile/touch - hide play button completely */
@media (hover: none) {
  .track-play-btn {
    display: none;
  }
}

.track-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  z-index: 5;
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.track-badge.trending {
  background: rgba(245, 158, 11, 0.9);
  color: white;
}

.track-badge.popular {
  background: rgba(16, 185, 129, 0.9);
  color: white;
}

.track-badge.new-release {
  background: rgba(0, 212, 255, 0.9);
  color: white;
}

.spotify-indicator {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1DB954;
  font-size: 0.85rem;
  z-index: 5;
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
  cursor: pointer;
  opacity: 0.8;
}

.track-card:hover .spotify-indicator {
  opacity: 1;
}

.track-content {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.track-header {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  justify-content: space-between;
}

.track-info {
  flex: 1;
  min-width: 0;
}

.track-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.track-card:hover .track-title {
  color: var(--primary);
}

.track-artist {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 400;
  margin-top: 2px;
}

.like-btn-mini {
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  opacity: 0.6;
}

.like-btn-mini:hover {
  color: #ef4444;
  transform: scale(1.1);
  opacity: 1;
}

.like-btn-mini.liked {
  color: #ef4444;
  opacity: 1;
}

.like-btn-mini.liked i {
  font-weight: 900;
}

.track-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.track-genre {
  font-size: 0.7rem;
  color: var(--primary);
  background: rgba(0, 212, 255, 0.08);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 500;
}

.track-duration {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

.track-socials {
  display: flex;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.track-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.8rem;
  transition: all 0.2s ease;
  text-decoration: none;
  opacity: 0.6;
}

.track-socials a:hover {
  color: var(--primary);
  opacity: 1;
}

.track-socials a i {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Track Cards Responsive Design */
@media (max-width: 1200px) {
  .track-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  }

  .play-btn-card {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
  }

  .track-stats {
    gap: 12px;
  }

  .track-socials {
    gap: 10px;
  }

  .track-socials a {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .track-card {
    border-radius: 12px;
  }

  .track-artwork {
    border-radius: 10px;
  }

  .track-content {
    padding: 12px;
    gap: 6px;
  }

  .track-header {
    gap: 6px;
  }

  .track-title {
    font-size: 0.95rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .track-artist {
    font-size: 0.8rem;
  }

  .like-btn-mini {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }

  .track-genre {
    font-size: 0.7rem;
    padding: 3px 8px;
  }

  .track-duration {
    font-size: 0.7rem;
  }

  .track-stats {
    gap: 10px;
    padding-top: 6px;
  }

  .stat {
    font-size: 0.75rem;
    gap: 4px;
  }

  .stat i {
    font-size: 0.8rem;
  }

  .track-socials {
    gap: 8px;
    padding-top: 6px;
  }

  .track-socials a {
    width: 26px;
    height: 26px;
    font-size: 0.8rem;
  }

  .play-btn-card {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }

  .play-btn-overlay {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .overlay-btn {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .track-badge {
    padding: 3px 10px;
    font-size: 0.65rem;
    top: 8px;
    left: 8px;
  }

  .spotify-indicator {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
    top: 8px;
    right: 8px;
  }

  .overlay-actions {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .track-card {
    border-radius: 10px;
  }

  .track-artwork {
    border-radius: 8px;
  }

  .track-content {
    padding: 10px;
    gap: 4px;
  }

  .track-header {
    gap: 4px;
  }

  .track-title {
    font-size: 0.9rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .track-artist {
    font-size: 0.75rem;
  }

  .like-btn-mini {
    width: 26px;
    height: 26px;
    font-size: 0.8rem;
    min-width: 26px;
    min-height: 26px;
  }

  .track-meta {
    gap: 6px;
    margin-top: 2px;
  }

  .track-genre {
    font-size: 0.68rem;
    padding: 2px 8px;
  }

  .track-duration {
    font-size: 0.68rem;
  }

  .track-stats {
    gap: 8px;
    padding-top: 6px;
  }

  .stat {
    font-size: 0.7rem;
    gap: 3px;
  }

  .stat i {
    font-size: 0.75rem;
  }

  .track-socials {
    gap: 6px;
    padding-top: 6px;
  }

  .track-socials a {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
    min-width: 24px;
    min-height: 24px;
  }

  .play-btn-card {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }

  .play-btn-overlay {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    min-width: 44px;
    min-height: 44px;
  }

  .overlay-btn {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
    min-width: 32px;
    min-height: 32px;
  }

  .track-badge {
    padding: 2px 8px;
    font-size: 0.65rem;
    top: 6px;
    left: 6px;
  }

  .spotify-indicator {
    width: 26px;
    height: 26px;
    font-size: 0.85rem;
    top: 6px;
    right: 6px;
  }

  .overlay-actions {
    gap: 8px;
  }

  .track-overlay {
    padding: 12px;
  }
}

/* Touch device optimizations - devices without hover capability */
@media (hover: none) and (pointer: coarse) {
  /* Remove hover transform effects on touch devices */
  .track-card {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
  }

  .track-card:hover,
  .track-card:active {
    transform: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 212, 255, 0.15);
  }

  .track-card:active {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.3);
  }

  /* Remove hover effects on artwork */
  .track-card:hover .track-artwork img {
    transform: none;
  }

  .track-card:active .track-artwork img {
    transform: scale(1.02);
  }

  /* Hide play button on touch devices - tap card navigates to detail page */
  .play-btn-card {
    display: none;
  }

  /* Like button touch behavior */
  .like-btn-mini {
    opacity: 0.8;
    width: 28px;
    height: 28px;
  }

  .like-btn-mini:active {
    transform: scale(0.9);
    opacity: 1;
  }

  /* Remove hover color changes */
  .track-card:hover .track-title {
    color: var(--text-primary);
  }

  .track-card:active .track-title {
    color: var(--primary);
  }

  /* Social links touch behavior */
  .track-socials a {
    opacity: 0.7;
  }

  .track-socials a:active {
    opacity: 1;
    color: var(--primary);
  }

  /* Badge and indicator touch adjustments */
  .spotify-indicator {
    opacity: 1;
  }

  .spotify-indicator:active {
    background: rgba(29, 185, 84, 0.9);
    color: white;
  }
}

/* Additional mobile touch optimizations for small screens */
@media (max-width: 480px) and (hover: none) {
  .track-play-btn {
    display: none;
  }

  .overlay-actions {
    gap: 8px;
  }

  .play-btn-overlay {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .overlay-btn {
    width: 34px;
    height: 34px;
    font-size: 0.75rem;
  }

  .track-overlay {
    padding: 8px;
  }
}

/* Responsive Audio Player */
@media (max-width: 1024px) {
  .audio-player {
    flex-direction: column;
    align-items: stretch;
  }

  .player-track-info {
    flex: 1;
  }

  .player-controls {
    justify-content: center;
    flex: 1;
  }

  .player-progress {
    min-width: auto;
    flex: 1;
  }

  .player-volume {
    min-width: auto;
    flex: 1;
  }
}

@media (max-width: 768px) {
  .audio-player {
    padding: 1rem;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .player-progress {
    font-size: 0.8rem;
    min-width: auto;
    flex: 1;
  }

  .player-progress span {
    min-width: 35px;
  }

  .player-volume {
    min-width: auto;
    flex: 1;
  }

  .contact-form {
    gap: 1rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.65rem 0.85rem;
  }
}

@media (max-width: 480px) {
  .audio-player {
    flex-direction: column;
    padding: 0.75rem;
  }

  .player-controls {
    width: 100%;
  }

  .player-progress {
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
    min-width: auto;
  }

  .player-volume {
    width: 100%;
    min-width: auto;
  }

  .player-track-info {
    min-width: auto;
    flex: 1;
  }
}


/* Savings Page Styles */
.savings-dashboard {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.savings-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.stat-card h4 {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

/* Goals Container */
.goals-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.goal-card {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
}

.goal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.goal-card.completed {
    border-color: var(--primary);
}

.goal-card.almost-there {
    border-color: var(--secondary);
}

.goal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.goal-header h4 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.1rem;
}

.service-badge {
    background: var(--primary);
    color: var(--background);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Progress Bars for Goals */
.goal-progress {
    margin-bottom: 1rem;
}

.progress-bar-container {
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.goal-card .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.goal-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.detail-item i {
    color: var(--primary);
    width: 16px;
}

.goal-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
}

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

.completion-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary);
    color: var(--background);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.no-goals {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
    grid-column: 1 / -1;
}

/* Toast Messages */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Savings Form */
.savings-form-container {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: 2rem;
}

/* Progress Charts */
.progress-charts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* Responsive Design for Savings */
@media (max-width: 768px) {
    .savings-stats {
        grid-template-columns: 1fr;
    }
    
    .goals-container {
        grid-template-columns: 1fr;
    }
    
    .goal-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .goal-actions {
        justify-content: center;
    }
    
    .savings-form-container {
        padding: 1.5rem;
    }
}

/* Payment Methods Styles */
.payment-methods {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border);
}

.payment-methods h6 {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.payment-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.payment-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.payment-icon:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.payment-icon i {
    font-size: 1.2rem;
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.payment-icon span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Playlist Modal Styles */
.playlist-modal-content {
    max-width: 520px;
    width: 90%;
    background: linear-gradient(135deg, rgba(20, 25, 45, 0.95), rgba(30, 35, 60, 0.95));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 212, 255, 0.1);
}

.playlist-modal-track-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(168, 85, 247, 0.08));
    border-radius: 12px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.playlist-modal-track-info img {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.playlist-modal-track-details h4 {
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
    font-size: 1.05rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.playlist-modal-track-details p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.85rem;
}

.playlist-modal-search {
    margin-bottom: 1rem;
    position: relative;
}

.playlist-modal-search input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 0.85rem 1rem 0.85rem 2.75rem;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.playlist-modal-search input::placeholder {
    color: var(--text-tertiary);
}

.playlist-modal-search input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.playlist-modal-search::before {
    content: '\f002';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.playlist-modal-list {
    max-height: 320px;
    overflow-y: auto;
    margin-bottom: 1rem;
    padding-right: 0.5rem;
}

.playlist-modal-list::-webkit-scrollbar {
    width: 8px;
}

.playlist-modal-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
}

.playlist-modal-list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 4px;
}

.playlist-modal-list::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00d4ff, #a855f7);
}

.playlist-modal-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.playlist-modal-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.playlist-modal-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(6px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.15);
}

.playlist-modal-item:hover::before {
    opacity: 1;
}

.playlist-modal-item.duplicate {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.02);
}

.playlist-modal-item.duplicate:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.playlist-modal-item.duplicate::before {
    background: var(--secondary);
}

.playlist-modal-item-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(168, 85, 247, 0.15));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.2);
}

.playlist-modal-item-info {
    flex: 1;
    min-width: 0;
}

.playlist-modal-item-info h4 {
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.playlist-modal-item-info p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.8rem;
}

.playlist-modal-item-status {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.playlist-modal-item:hover .playlist-modal-item-status {
    background: var(--primary);
    color: var(--background);
    transform: scale(1.1);
}

.playlist-modal-item.duplicate .playlist-modal-item-status {
    color: var(--secondary);
    background: rgba(168, 85, 247, 0.1);
}

.playlist-modal-item.duplicate:hover .playlist-modal-item-status {
    background: var(--secondary);
    color: var(--background);
}

.playlist-modal-empty,
.playlist-modal-error {
    text-align: center;
    padding: 2.5rem 2rem;
    color: var(--text-secondary);
}

.playlist-modal-empty i,
.playlist-modal-error i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.4;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.playlist-modal-empty p,
.playlist-modal-error p {
    margin: 0.5rem 0 0 0;
    font-size: 0.9rem;
}

.playlist-modal-error {
    color: var(--accent);
}

.playlist-modal-error i {
    background: var(--accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.playlist-modal-create {
    margin-top: 1rem;
}

.btn-full {
    width: 100%;
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    to {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
}

.text-muted {
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

/* Contact Info in Footer */
.contact-info-footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info-footer p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.contact-info-footer i {
    color: var(--primary);
    width: 16px;
    text-align: center;
}

/* Footer Socials */
.footer-socials {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

.footer-socials a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.3rem;
}

.footer-socials a:hover {
    color: var(--primary);
    transform: scale(1.2);
}

/* Responsive Payment Methods */
@media (max-width: 768px) {
    .payment-icons {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .payment-icon {
        padding: 0.4rem;
    }
    
    .contact-info-footer p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .payment-icons {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer-cta {
    background: var(--surface);
    position: relative;
    padding: var(--spacing-2xl) 0 0;
    margin-bottom: -96px;
    z-index: 3;
}

.footer-cta-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: none;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.55) 0%, rgba(168, 85, 247, 0.45) 45%, rgba(26, 31, 58, 0.15) 100%);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-xl);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 74%, rgba(0, 0, 0, 0.25) 90%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 74%, rgba(0, 0, 0, 0.25) 90%, transparent 100%);
}

.footer-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.05;
    margin: 0 0 1rem;
    letter-spacing: 0.5px;
}

.footer-cta-title span {
    color: rgba(255, 255, 255, 0.75);
}

.footer-cta-text {
    color: rgba(255, 255, 255, 0.75);
    max-width: 52ch;
    margin: 0 0 1.25rem;
}

.footer-cta-copy {
    transition: opacity 300ms ease, transform 300ms ease;
}

.footer-cta-copy.is-swapping {
    opacity: 0;
    transform: translateY(-18px);
}

.footer-cta-form {
    margin: 0;
}

.footer-cta-label {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-cta-inputrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: min(520px, 100%);
    padding: 0.35rem 0.35rem 0.35rem 0.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-cta-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 0.7rem 0.25rem;
    outline: none;
}

.footer-cta-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.footer-cta-input:focus {
    outline: none;
}

.footer-cta-inputrow:focus-within {
    border-bottom-color: rgba(0, 212, 255, 0.65);
}

.footer-cta-submit {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.35), rgba(236, 72, 153, 0.2) 55%, rgba(10, 14, 39, 0.15) 100%);
    color: var(--text-primary);
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 220ms ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.footer-cta-submit:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 212, 255, 0.45);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
}

.footer-cta-submit:active {
    transform: translateY(0);
}

.footer-cta-submit::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.26), transparent 60%);
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 200ms ease, transform 200ms ease;
    pointer-events: none;
}

.footer-cta-submit:hover::before {
    opacity: 1;
    transform: scale(1);
}

.footer-cta-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-cta-art {
    width: min(280px, 100%);
    aspect-ratio: 1 / 1;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.35), rgba(236, 72, 153, 0.18) 50%, rgba(10, 14, 39, 0) 72%);
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.55));
}

.footer-cta-image {
    width: min(260px, 88%);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.35));
    transform: rotate(-10deg);
}

.footer {
    position: relative;
    z-index: 1;
    padding-top: calc(var(--spacing-xl) + 96px);
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 48px;
    background: linear-gradient(to bottom, rgba(26, 31, 58, 0) 0%, rgba(26, 31, 58, 0.35) 55%, var(--surface) 100%);
    pointer-events: none;
}

.footer-signup {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.btn-footer {
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.95) 0%, rgba(168, 85, 247, 0.85) 55%, rgba(0, 212, 255, 0.85) 120%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #0a0e27;
    box-shadow: 0 20px 55px rgba(236, 72, 153, 0.18), 0 18px 40px rgba(0, 212, 255, 0.12);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.btn-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 65px rgba(236, 72, 153, 0.22), 0 22px 55px rgba(0, 212, 255, 0.18);
    filter: brightness(1.05);
}

.btn-footer:active {
    transform: translateY(0);
}

@media (min-width: 769px) {
    .footer-content {
        grid-template-columns: repeat(3, minmax(250px, 1fr)) auto;
        align-items: start;
    }

    .footer-signup {
        justify-content: flex-end;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .footer-cta-card {
        grid-template-columns: 1fr;
    }

    .footer-cta-right {
        order: -1;
        justify-content: flex-start;
    }

    .footer-cta-art {
        width: 190px;
    }

    .footer-cta-image {
        width: min(190px, 86%);
        transform: rotate(-8deg);
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .footer-cta {
        margin-bottom: -72px;
    }

    .footer {
        padding-top: calc(var(--spacing-xl) + 72px);
    }

    .footer-signup {
        justify-content: center;
    }
}

/* Payment Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--surface);
    border-radius: var(--radius);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--border);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: var(--text-primary);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-body {
    padding: 1.5rem;
}

.payment-details {
    background: rgba(0, 212, 255, 0.1);
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    border: 1px solid var(--primary);
}

.payment-details p {
    margin: 0.5rem 0;
    color: var(--text-primary);
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.payment-option:hover {
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.1);
}

.payment-option.selected {
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.2);
}

.payment-option i {
    font-size: 2rem;
    color: var(--primary);
}

.payment-option span {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.payment-instructions {
    background: rgba(168, 85, 247, 0.1);
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--secondary);
}

.payment-instructions h5 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.payment-instructions p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Loading State */
.payment-processing {
    text-align: center;
    padding: 2rem;
}

.payment-processing .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

/* Success State */
.payment-success {
    text-align: center;
    padding: 2rem;
}

.payment-success i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Responsive Payment Modal */
@media (max-width: 768px) {
    .payment-options {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
}

/* Payment Status Styles */
.payment-status {
    text-align: center;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: var(--radius);
    font-weight: 600;
    border: 1px solid;
}

.status-waiting {
    background: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
    color: #ffc107;
}

.status-verified {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
    color: #10b981;
}

.status-mismatch {
    background: rgba(245, 158, 11, 0.1);
    border-color: #f59e0b;
    color: #f59e0b;
}

.status-timeout {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #ef4444;
}

/* Add retry verification method */
.retry-verification {
    text-align: center;
    margin-top: 1rem;
}
/* Music Lessons Styles */
.lessons-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
}

.lesson-category {
    background: var(--surface);
    padding: var(--spacing-lg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.lesson-category h4 {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lesson-category h4 i {
    font-size: 1.5rem;
}

.lesson-category ul {
    color: var(--text-secondary);
    padding-left: 0;
}

.lesson-category li {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.lesson-category li i {
    color: var(--primary);
    margin-top: 0.2rem;
    font-size: 0.9rem;
}

/* Lesson Benefits */
.lesson-benefits {
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--border);
}

.lesson-benefits h4 {
    text-align: center;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-xl);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.benefit {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.benefit:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.benefit i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
}

.benefit h5 {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.benefit p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Service Features for Lessons */
.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(168, 85, 247, 0.05));
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.feature {
    text-align: center;
}

.feature h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Design for Lessons */
@media (max-width: 768px) {
    .lessons-categories {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .lesson-category {
        padding: var(--spacing-md);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .service-features {
        grid-template-columns: repeat(2, 1fr);
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .lesson-category h4 {
        font-size: 1.1rem;
    }
    
    .benefit {
        padding: var(--spacing-md);
    }
}
/* Compact Lesson Tags */
.lesson-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 1rem 0;
    justify-content: center;
}

.lesson-tag {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
    padding: 0.3rem 0.6rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(0, 212, 255, 0.3);
}
/* Enhanced Track Cards */
.track-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
}

.track-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.track-artwork {
    position: relative;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
}

.track-artwork img {
    
    object-fit: cover;
    border-radius: 12px;
}

.play-btn-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
}

.track-artwork:hover .play-btn-card {
    opacity: 1;
}

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

.track-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.track-artist {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.track-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.track-genre {
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.track-duration {
    color: var(--text-tertiary);
    font-weight: 500;
}

/* Enhanced Artist Cards */
.artist-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.artist-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.artist-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-light);
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.artist-genre {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.artist-bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.artist-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

.artist-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.artist-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--background);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition);
    text-decoration: none;
}

.artist-socials a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Grid Layout Updates */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .music-grid {
        gap: 1.5rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .music-grid {
        gap: 1rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .artists-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .artist-card {
        padding: 1.5rem;
    }
    
    .artist-image {
        width: 120px;
        height: 120px;
    }
}
/* Latest Releases Timeline Styles */
.releases-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.releases-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    z-index: 1;
}

.release-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.release-date-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.release-date-circle span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
}

.release-date-circle strong {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1;
}

.release-content {
    display: flex;
    align-items: center;
    background: var(--surface);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    flex-grow: 1;
    transition: var(--transition);
    gap: 1.5rem;
}

.release-content:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.release-artwork {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}

.release-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.release-info {
    flex-grow: 1;
}

.release-info h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.release-info p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.release-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.release-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--background);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Responsive Design for Releases Timeline */
@media (max-width: 768px) {
    .releases-timeline::before {
        left: 25px;
    }
    
    .release-date-circle {
        width: 50px;
        height: 50px;
        margin-right: 1rem;
    }
    
    .release-date-circle span {
        font-size: 0.65rem;
    }
    
    .release-date-circle strong {
        font-size: 1rem;
    }
    
    .release-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .release-artwork {
        width: 60px;
        height: 60px;
    }
    
    .release-info h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .release-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .release-date-circle {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: flex-start;
    }
    
    .releases-timeline::before {
        left: 25px;
    }
    
    .release-content {
        margin-left: 0;
        width: 100%;
    }
}

/* Optional: Add background color variable if not already defined */
:root {
    --background-alt: #0f142e; /* Slightly lighter than main background */
}

/* Optional: Add animation for the timeline */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.release-item {
    animation: fadeInUp 0.6s ease-out;
}

.release-item:nth-child(1) { animation-delay: 0.1s; }
.release-item:nth-child(2) { animation-delay: 0.2s; }
.release-item:nth-child(3) { animation-delay: 0.3s; }


.map-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    border: 4px solid var(--primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
}
.map-link i {
    margin-left: 0.4rem;
    transition: var(--transition);
}
.map-link:hover {
    text-decoration: underline;
}
.map-link:hover i {
    transform: translateX(4px);
}
.seek-bar::-webkit-slider-thumb {
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
}
.seek-bar::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
border: none;
}

/* Enhanced Music Page Styles */

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Section Header with Controls */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-controls {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
}

.filter-btn:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--background);
}

/* Enhanced Audio Player */
.enhanced-player {
    position: relative;
    overflow: hidden;
}

.vinyl-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 60%, rgba(0,0,0,0.3) 100%);
    border-radius: 0.5rem;
    pointer-events: none;
}

.track-progress-mobile {
    display: none;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.track-progress-mobile .progress-bar-container {
    flex: 1;
    height: 3px;
}

.player-volume {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.volume-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
}

.volume-btn:hover {
    color: var(--primary);
}

.volume-control {
    width: 80px;
    transition: all 0.3s ease;
}

.player-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.player-action-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 0.25rem;
}

.player-action-btn:hover {
    color: var(--primary);
    background: rgba(0, 212, 255, 0.1);
}

.player-action-btn.active {
    color: var(--primary);
}

/* Enhanced Track Cards */
.track-card {
    position: relative;
    transition: all 0.3s ease;
}

.track-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.track-artwork {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.track-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: var(--transition);
    border-radius: 12px;
}

.track-artwork:hover .track-overlay {
    opacity: 1;
}

.overlay-actions {
    display: flex;
    gap: 0.75rem;
}

.overlay-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-primary);
}

.overlay-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* Genre Cards */
.genre-card {
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.genre-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.genre-card:hover::before {
    left: 100%;
}

.genre-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

/* Floating Music Player */
.floating-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    display: none;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    max-width: 350px;
    animation: slideInUp 0.3s ease;
}

.floating-player.active {
    display: flex;
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.floating-track-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.floating-cover {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
}

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

.floating-info h5 {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.floating-info p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.floating-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.floating-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 0.25rem;
}

.floating-btn:hover {
    color: var(--primary);
    background: rgba(0, 212, 255, 0.1);
}

.floating-btn.play-pause {
    background: var(--primary);
    color: var(--background);
    border-radius: 50%;
    width: 35px;
    height: 35px;
}

.floating-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
}

.floating-progress .progress-bar-container {
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.floating-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.8rem;
    padding: 0.25rem;
    border-radius: 0.25rem;
}

.floating-close:hover {
    color: var(--accent);
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1));
    padding: 4rem 0;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-text h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.newsletter-text p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-family: var(--font-primary);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

/* Active Navigation Link */
.nav-link.active {
    color: var(--primary);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-controls {
        width: 100%;
        justify-content: center;
    }
    
    .enhanced-player {
        flex-direction: column;
        gap: 1rem;
    }
    
    .player-track-info {
        flex-direction: column;
        text-align: center;
    }
    
    .track-progress-mobile {
        display: flex;
    }
    
    .player-progress {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .floating-player {
        max-width: calc(100vw - 40px);
        right: 20px;
        left: 20px;
    }
    
    .overlay-actions {
        gap: 0.5rem;
    }
    
    .overlay-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .section-controls {
        flex-direction: column;
        width: 100%;
    }
    
    .filter-btn {
        width: 100%;
        text-align: center;
    }
    
    .floating-player {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .floating-track-info {
        flex-direction: column;
        text-align: center;
    }
    
    .player-actions {
        justify-content: center;
    }
}
/* Studio Membership Styles */
.membership {
    background: var(--background-alt);
    padding: 5rem 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.membership-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.plan-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
    text-align: center;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.plan-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
}

.plan-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--background);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.plan-header h4 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.plan-price {
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.plan-savings {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-block;
}

.plan-features {
    margin-bottom: 2rem;
    text-align: left;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.plan-features i {
    width: 20px;
    text-align: center;
}

.plan-features .fa-check {
    color: var(--primary);
}

.plan-features .fa-times {
    color: var(--text-tertiary);
}

.plan-actions {
    margin-top: auto;
}

.membership-benefits {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 2.5rem;
    border: 1px solid var(--border);
}

.membership-benefits h4 {
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: var(--radius);
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--primary);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.benefit-item span {
    color: var(--text-primary);
    font-weight: 500;
}

/* Membership Modal */
.membership-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.membership-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--surface);
    border-radius: var(--radius);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--border);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.membership-modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: var(--text-primary);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-body {
    padding: 1.5rem;
}

.plan-summary {
    background: rgba(0, 212, 255, 0.1);
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    border: 1px solid var(--primary);
}

.plan-summary h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.plan-summary p {
    color: var(--text-secondary);
    margin: 0.25rem 0;
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.payment-option:hover {
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.1);
}

.payment-option.selected {
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.2);
}

.payment-option i {
    font-size: 2rem;
    color: var(--primary);
}

.payment-option span {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.subscription-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.submit-btn {
    margin-top: 1rem;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .plan-card.popular {
        transform: scale(1);
    }
    
    .plan-card.popular:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .membership-plans {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-options {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
}

@media (max-width: 480px) {
    .membership {
        padding: 3rem 0;
    }
    
    .plan-card {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .membership-benefits {
        padding: 1.5rem;
    }
}
/* Enhanced Payment Modal Styles */
.membership-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.membership-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--surface);
    border-radius: var(--radius);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--border);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.membership-modal.active .modal-content {
    transform: scale(1);
}

.payment-section {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.payment-section h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.payment-option:hover {
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.1);
}

.payment-option.selected {
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.1);
}

.payment-option i {
    font-size: 1.5rem;
    color: var(--primary);
}

.payment-option span {
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 500;
}

.payment-instructions {
    background: rgba(168, 85, 247, 0.1);
    padding: 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--secondary);
}

.payment-instructions h5 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.payment-instructions p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    white-space: pre-line;
}

.transaction-input {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.transaction-input label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.transaction-input input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.transaction-input input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.05);
}

/* Payment Status Styles */
.payment-status {
    text-align: center;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: var(--radius);
    font-weight: 600;
    border: 1px solid;
}

.status-waiting {
    background: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
    color: #ffc107;
}

.status-verified {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
    color: #10b981;
}

.status-mismatch {
    background: rgba(245, 158, 11, 0.1);
    border-color: #f59e0b;
    color: #f59e0b;
}

.status-timeout {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #ef4444;
}

/* Payment Success States */
.payment-success {
    text-align: center;
    padding: 2rem;
}

.payment-success i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.payment-success h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.payment-success p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Payment Processing */
.payment-processing {
    text-align: center;
    padding: 2rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .payment-options {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .payment-section {
        padding: 1rem;
    }
}

/* Enhanced Payment Option Styles */
.payment-option {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.05);
}

.payment-option:hover {
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
}

.payment-option.selected {
    border-color: var(--primary) !important;
    background: rgba(0, 212, 255, 0.2) !important;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

.payment-option.selected::after {
    content: '✓';
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Make sure payment options are properly sized */
.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: var(--radius);
    text-align: center;
    min-height: 80px;
    justify-content: center;
}

.payment-option i {
    font-size: 1.5rem;
    color: var(--primary);
}

.payment-option span {
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Ensure modal is properly positioned */
.membership-modal {
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    z-index: 10001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Loading spinner */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 8px;
}

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

/* Toast messages */
.toast-message {
    animation: slideInRight 0.3s ease, fadeOut 0.3s ease 4.7s forwards;
}

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

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}
/* Enhanced Music Grid - layout handled by responsive media queries below */

/* Enhanced Track Cards */
.track-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.track-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.track-artwork {
    position: relative;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
}

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

.track-card:hover .track-artwork img {
    transform: scale(1.05);
}

.play-btn-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(32, 20, 139, 0.95);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    color: var(--text-primary);
    font-size: 1.2rem;
}

.track-artwork:hover .play-btn-card {
    opacity: 1;
}

.play-btn-card:hover {
    background: blueviolet;
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.track-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.track-badge.new-release {
    background: var(--primary);
    color: var(--background);
}

.track-badge.popular {
background: var(--accent);
color: white;
}

.track-badge.trending {
background: var(--secondary);
color: white;
}

.spotify-indicator {
position: absolute;
top: 12px;
right: 12px;
width: 32px;
height: 32px;
background: #1DB954;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1rem;
z-index: 2;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.track-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.8);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: var(--transition);
border-radius: 12px;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    border-radius: 12px;
}

.track-artwork:hover .track-overlay {
    opacity: 1;
}

.overlay-actions {
    display: flex;
    gap: 0.75rem;
}

.overlay-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-primary);
}

.overlay-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.track-content {
    padding: 0.5rem 0;
}

.track-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.track-artist {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.track-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.track-genre {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.track-duration {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
}

.track-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.track-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.track-stats .stat i {
    color: var(--primary);
    font-size: 0.8rem;
}

.release-date {
    color: var(--text-tertiary);
    font-size: 0.85rem;
    text-align: center;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
}

/* Responsive Grid Layout */
@media (min-width: 1400px) {
    .music-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .music-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .music-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .music-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .music-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .track-card {
        padding: 1rem;
    }
}

@media (max-width: 575px) {
    .music-grid {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
        gap: 0.5rem;
        padding: 0;
    }
    
    .track-card {
        padding: 0.75rem;
    }
    
    .track-stats {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
}

/* Filter Animation */
.track-card {
    animation: slideInUp 0.6s ease-out;
}

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

/* Stagger animation for cards */
.track-card:nth-child(1) { animation-delay: 0.1s; }
.track-card:nth-child(2) { animation-delay: 0.2s; }
.track-card:nth-child(3) { animation-delay: 0.3s; }
.track-card:nth-child(4) { animation-delay: 0.4s; }
.track-card:nth-child(5) { animation-delay: 0.5s; }
.track-card:nth-child(6) { animation-delay: 0.6s; }

/* Enhanced Repeat and Shuffle Buttons */
.player-action-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  padding: 0.5rem;
  border-radius: 0.25rem;
  position: relative;
}

.player-action-btn:hover {
  color: var(--primary);
  background: rgba(0, 212, 255, 0.1);
}

.player-action-btn.active {
  color: var(--primary);
}

/* Repeat button states */
.repeat-one {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--primary);
  color: var(--background);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Like button states */
.player-action-btn.liked {
  color: var(--accent);
}

.player-action-btn.liked i {
  animation: heartBeat 0.3s ease;
}

@keyframes heartBeat {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Volume control for mobile */
.volume-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .volume-control {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--surface);
    padding: 0.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
  }
  
  .volume-control.show {
    opacity: 1;
    visibility: visible;
  }
}

/* Active track card */
.track-card.active {
  border-color: var(--primary);
  background: rgba(0, 212, 255, 0.05);
}

.track-card.active .track-title {
  color: var(--primary);
}

/* Enhanced button tooltips */
.player-action-btn {
  position: relative;
}

.player-action-btn::before {
  content: attr(title);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.player-action-btn:hover::before {
  opacity: 1;
  visibility: visible;
}

/* Floating player enhancements */
.floating-player.active {
  display: flex;
  animation: slideInUp 0.3s ease;
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Shuffle and Repeat active states with better visual feedback */
.player-action-btn.active {
  position: relative;
}

.player-action-btn.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
}

/* === ENHANCED FILTER BUTTONS === */
.section-controls {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

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

.filter-btn:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--background);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.filter-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.filter-btn:hover i {
    transform: scale(1.1);
}

.filter-btn.active i {
    transform: scale(1.1);
}

/* Filter button animations */
.filter-btn {
    animation: slideInRight 0.5s ease-out;
}

.filter-btn:nth-child(1) { animation-delay: 0.1s; }
.filter-btn:nth-child(2) { animation-delay: 0.2s; }
.filter-btn:nth-child(3) { animation-delay: 0.3s; }
.filter-btn:nth-child(4) { animation-delay: 0.4s; }

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

/* Enhanced section header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 10;
}

/* Responsive filter buttons */
@media (max-width: 768px) {
    .section-controls {
        gap: 0.5rem;
        width: 100%;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .filter-btn span {
        display: none;
    }

    .filter-btn i {
        margin-right: 0;
        font-size: 1rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .section-controls {
        width: 100%;
        justify-content: flex-start;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .section-controls {
        justify-content: center;
        width: 100%;
    }
    
    .filter-btn {
        flex: 1;
        min-width: 60px;
        justify-content: center;
    }
    
    .section-header {
        text-align: center;
    }
}

/* Filter animations for track cards */
.track-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.track-card.filter-visible {
    animation: slideInUp 0.5s ease-out forwards;
}

.track-card.filter-hidden {
    animation: slideOutDown 0.3s ease-in forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* No results message */
.no-results-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.no-results-content i {
    font-size: 3rem;
    color: var(--text-tertiary);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-results-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.no-results-content p {
    color: var(--text-secondary);
    font-size: 1rem;
}

@media (max-width: 480px) {
    .no-results-message {
        padding: 2rem 1rem;
    }
    
    .no-results-content i {
        font-size: 2rem;
    }
    
    .no-results-content h4 {
        font-size: 1.25rem;
    }
}

/* === SEARCH SECTION STYLES === */
.search-section {
    margin: 1.5rem 0 2rem;
    padding: 0;
}

.search-container {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.search-icon {
    position: absolute;
    left: 1rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    z-index: 2;
}

.search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 2rem;
    padding: 0.75rem 1rem 0.75rem 3rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.search-input::placeholder {
    color: var(--text-secondary);
}

.search-clear {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.search-clear.show {
    opacity: 1;
    visibility: visible;
}

.search-clear:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.search-results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

#resultsCount {
    font-weight: 500;
}

.search-filter-toggle {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.search-filter-toggle:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.search-filter-toggle.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--background);
}

/* Search Filters Dropdown */
.search-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.search-filters.show {
    opacity: 1;
    visibility: visible;
    max-height: 200px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.filter-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.05);
}

/* Search highlight */
.search-highlight {
    background: rgba(0, 212, 255, 0.2);
    color: var(--primary);
    padding: 0.1rem 0.2rem;
    border-radius: 0.2rem;
    font-weight: 600;
}

/* No search results */
.no-search-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-secondary);
}

.no-search-results i {
    font-size: 3rem;
    color: var(--text-tertiary);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-search-results h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.no-search-results p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Responsive search */
@media (max-width: 768px) {
    .search-container {
        padding: 1rem 0.75rem;
    }
    
    .search-filters {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .search-results-info {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .search-filter-toggle {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .search-section {
        margin: 1rem 0 1.5rem;
    }

    .search-container {
        padding: 0.75rem 0.5rem;
    }
    
    .no-search-results {
        padding: 2rem 1rem;
    }
    
    .no-search-results i {
        font-size: 2rem;
    }
    
    .no-search-results h4 {
        font-size: 1.25rem;
    }
}

/* === Services Hero Section === */
.services-hero {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--background);
}

.services-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
}

.services-hero-left {
    display: flex;
    align-items: center;
}

.services-hero-content {
    max-width: 600px;
}

.services-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
}

.services-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1.5rem;
    color: var(--text-primary);
}

.services-hero-title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.services-hero-title-line:nth-child(1) {
    animation-delay: 0.1s;
}

.services-hero-title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.services-hero-title-line:nth-child(3) {
    animation-delay: 0.3s;
}

.services-hero-title-accent {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

.services-hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.5s forwards;
}

.services-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.services-hero-btn span {
    position: relative;
    z-index: 1;
}

.services-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.services-hero-btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

.services-hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
}

.services-hero-stat {
    text-align: center;
}

.services-hero-stat-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.services-hero-stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.services-hero-stat-divider {
    width: 1px;
    height: 2.5rem;
    background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

.services-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}

.services-hero-image-shape {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.1;
    animation: morphShape 8s ease-in-out infinite;
}

.services-hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
    z-index: 1;
}

.services-hero-float {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    z-index: 2;
}

.services-hero-float-1 {
    top: 10%;
    left: -10%;
    animation: float 6s ease-in-out infinite;
}

.services-hero-float-2 {
    top: 60%;
    right: -15%;
    animation: float 6s ease-in-out infinite 1.5s;
}

.services-hero-float-3 {
    bottom: 15%;
    left: 5%;
    animation: float 6s ease-in-out infinite 3s;
}

.services-hero-float-4 {
    top: 25%;
    right: 5%;
    animation: float 6s ease-in-out infinite 4.5s;
}

.services-hero-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.2), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.services-hero-wave {
    position: absolute;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0;
    z-index: 0;
}

.services-hero-wave-1 {
    inset: 0;
    animation: pulseWave 3s ease-out infinite;
}

.services-hero-wave-2 {
    inset: 0;
    animation: pulseWave 3s ease-out infinite 1s;
}

.services-hero-wave-3 {
    inset: 0;
    animation: pulseWave 3s ease-out infinite 2s;
}

.services-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.services-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
}

.services-hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes morphShape {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg);
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
        transform: rotate(180deg);
    }
}

@keyframes pulseWave {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 1.5rem;
    }

    .services-hero-title {
        font-size: 2.5rem;
    }

    .services-hero-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .services-hero {
        min-height: auto;
        padding: 4rem 0;
    }

    .services-hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
        text-align: left;
    }

    .services-hero-content {
        align-items: flex-start;
    }

    .services-hero-badge {
        margin: 0;
        font-size: 0.7rem;
        padding: 0.35rem 0.75rem;
    }

    .services-hero-title {
        font-size: 2rem;
    }

    .services-hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .services-hero-cta {
        flex-direction: row;
        gap: 0.75rem;
        justify-content: flex-start;
    }

    .services-hero-btn,
    .services-hero-btn-outline {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        flex: 1;
        justify-content: center;
        white-space: nowrap;
    }

    .services-hero-stats {
        display: none;
    }

    .services-hero-right {
        max-width: 100%;
        order: 2;
    }

    .services-hero-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .services-hero-float {
        display: none;
    }

    .services-hero-glow {
        display: none;
    }

    .services-hero-wave {
        display: none;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 3rem 0;
    }

    .services-hero-container {
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .services-hero-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.75rem;
    }

    .services-hero-title {
        font-size: 1.5rem;
    }

    .services-hero-subtitle {
        font-size: 0.9rem;
    }

    .services-hero-cta {
        flex-direction: row;
        gap: 0.5rem;
    }

    .services-hero-btn,
    .services-hero-btn-outline {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
        flex: 1;
        white-space: nowrap;
    }

    .services-hero-stats {
        display: none;
    }

    .services-hero-right {
        display: none;
    }

    .services-hero-float {
        display: none;
    }
}

/* === About Hero Section === */
.about-hero {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--background);
}

.about-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
}

.about-hero-left {
    display: flex;
    align-items: center;
}

.about-hero-content {
    max-width: 600px;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
}

.about-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1.5rem;
    color: var(--text-primary);
}

.about-hero-title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.about-hero-title-line:nth-child(1) {
    animation-delay: 0.1s;
}

.about-hero-title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.about-hero-title-line:nth-child(3) {
    animation-delay: 0.3s;
}

.about-hero-title-accent {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

.about-hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.5s forwards;
}

.about-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-hero-btn span {
    position: relative;
    z-index: 1;
}

.about-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
}

.about-hero-btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.about-hero-btn-outline:hover {
    background: var(--accent);
    color: white;
}

.about-hero-story {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 1.5rem;
    padding: 1.5rem;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
}

.about-hero-story-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.about-hero-story-text {
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.about-hero-story-author {
    color: var(--accent);
    font-weight: 600;
    margin: 0;
}

.about-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}

.about-hero-image-shape {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
    opacity: 0.1;
    animation: morphShapeAbout 10s ease-in-out infinite;
}

.about-hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
    z-index: 1;
}

.about-hero-float {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
    z-index: 2;
}

.about-hero-float-1 {
    top: 5%;
    right: -5%;
    animation: float 7s ease-in-out infinite;
}

.about-hero-float-2 {
    top: 70%;
    left: -10%;
    animation: float 7s ease-in-out infinite 1.75s;
}

.about-hero-float-3 {
    bottom: 20%;
    right: 10%;
    animation: float 7s ease-in-out infinite 3.5s;
}

.about-hero-float-4 {
    top: 30%;
    left: 5%;
    animation: float 7s ease-in-out infinite 5.25s;
}

.about-hero-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.2), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.about-hero-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.6;
    z-index: 2;
}

.about-hero-particle-1 {
    top: 20%;
    right: 20%;
    animation: particleFloat 8s ease-in-out infinite;
}

.about-hero-particle-2 {
    bottom: 30%;
    left: 15%;
    animation: particleFloat 8s ease-in-out infinite 2.5s;
}

.about-hero-particle-3 {
    top: 60%;
    right: 30%;
    animation: particleFloat 8s ease-in-out infinite 5s;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.about-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
}

.about-hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Animations */
@keyframes morphShapeAbout {
    0%, 100% {
        border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
        transform: rotate(0deg);
    }
    50% {
        border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%;
        transform: rotate(180deg);
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(10px, -20px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-5px, -30px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(-15px, -10px) scale(1.1);
        opacity: 0.7;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 1.5rem;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .about-hero-container {
        padding: 2rem 1rem;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .about-hero-cta {
        flex-direction: column;
    }

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

    .about-hero-image-wrapper {
        max-width: 300px;
    }

    .about-hero-float {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 1.75rem;
    }

    .about-hero-badge {
        font-size: 0.8rem;
    }

    .about-hero-story {
        padding: 1.25rem;
    }

    .about-hero-image-wrapper {
        max-width: 250px;
    }
}

/* === Services Detail Sections === */
.services-detail-section {
    padding: 6rem 0;
    position: relative;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 2rem;
    padding: 3rem;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.service-detail-card-left {
    grid-template-columns: 1fr 1.5fr;
}

.service-detail-card-right {
    grid-template-columns: 1.5fr 1fr;
}

.service-detail-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
}

.service-visual-icon {
    font-size: 8rem;
    color: var(--primary);
    opacity: 0.2;
    z-index: 2;
}

.service-visual-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    opacity: 0.1;
    animation: morphShape 10s ease-in-out infinite;
}

.service-detail-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
}

.service-detail-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.service-detail-info > p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}

.service-list li i {
    color: var(--primary);
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.pricing-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pricing-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.pricing-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.pricing-unit {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.pricing-divider {
    width: 1px;
    height: 2.5rem;
    background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

/* Lessons Categories */
.lessons-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.lesson-category {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
}

.lesson-category h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lesson-category h4 i {
    color: var(--primary);
}

.lesson-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lesson-category li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.lesson-category li i {
    color: var(--primary);
    font-size: 0.875rem;
}

/* Lesson Benefits */
.lesson-benefits {
    margin-top: 1rem;
}

.lesson-benefits h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(168, 85, 247, 0.05);
    border-radius: 0.75rem;
    border: 1px solid rgba(168, 85, 247, 0.1);
}

.benefit i {
    color: var(--accent);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.benefit h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem;
}

.benefit p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

/* Additional Services Section */
.additional-services-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.01);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-top: 0.5rem;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.additional-service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.additional-service-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.additional-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.additional-service-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 1rem;
}

.additional-service-card > p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.additional-service-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.additional-service-price .price-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.additional-service-price .price-unit {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Services CTA Section */
.services-cta-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.services-cta-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.services-cta-content {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
    position: relative;
}

.services-cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    animation: float 3s ease-in-out infinite;
}

.services-cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1rem;
}

.services-cta-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.services-cta-btn-primary,
.services-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.services-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.services-cta-btn-secondary {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.services-cta-btn-secondary:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.services-cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.cta-feature i {
    color: var(--primary);
}

.services-cta-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.cta-decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent);
}

.cta-decoration-circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.cta-decoration-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
}

.cta-decoration-circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail-card-left,
    .service-detail-card-right {
        grid-template-columns: 1fr;
    }

    .service-detail-visual {
        order: -1;
    }

    .services-detail-section {
        padding: 4rem 0;
    }

    .lessons-categories {
        grid-template-columns: 1fr;
    }

    .additional-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-detail-card {
        padding: 2rem;
    }

    .service-detail-info h3 {
        font-size: 1.5rem;
    }

    .service-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .pricing-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--border), transparent);
    }

    .additional-services-grid {
        grid-template-columns: 1fr;
    }

    .services-cta-content {
        padding: 2rem;
    }

    .services-cta-title {
        font-size: 1.75rem;
    }

    .services-cta-buttons {
        flex-direction: column;
    }

    .services-cta-btn-primary,
    .services-cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .services-cta-features {
        flex-direction: column;
        gap: 1rem;
    }
}

/* === Home Services Section === */
.home-services-section {
    padding: 6rem 0;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.home-service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.home-service-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.home-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: white;
}

.home-service-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 1rem;
}

.home-service-card > p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.home-service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-feature-tag {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
    padding: 0.35rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.home-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.home-service-link:hover {
    color: var(--accent);
    gap: 0.75rem;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* === Home Membership Section === */
.home-membership-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.01);
}

.membership-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.membership-plan-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 2rem;
    overflow: visible;
    transition: all 0.3s ease;
}

.membership-plan-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.plan-card-featured {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.2);
}

.plan-card-featured:hover {
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.3);
}

.plan-visual {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 2rem;
    text-align: center;
    position: relative;
}

.plan-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: white;
}

.plan-badge-popular {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.plan-content {
    padding: 2rem;
}

.plan-badge {
    display: inline-block;
    background: #00d4ff;
    color: #0a0e27;
    padding: 0.35rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 1px solid #00d4ff;
    box-shadow: 0 2px 12px rgba(0, 212, 255, 0.5);
}

.plan-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-value {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.price-period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.plan-savings {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.plan-features li i {
    color: var(--primary);
}

.membership-benefits {
    text-align: center;
}

.membership-benefits h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(168, 85, 247, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(168, 85, 247, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(168, 85, 247, 0.1);
    transform: translateY(-3px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}

.benefit-item span {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
}

/* === Home CTA Section === */
.home-cta-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.home-cta-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.home-cta-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 6, 10, 0.85) 0%, rgba(6, 6, 10, 0.75) 100%);
    pointer-events: none;
    z-index: 2;
}

.home-cta-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.home-cta-content {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
    position: relative;
}

.home-cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    animation: float 3s ease-in-out infinite;
}

.home-cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1rem;
}

.home-cta-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.home-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.home-cta-btn-primary,
.home-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.home-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.home-cta-btn-secondary {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.home-cta-btn-secondary:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.home-cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.home-cta-features .cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.home-cta-features .cta-feature i {
    color: var(--primary);
}

.home-cta-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.home-cta-decoration .cta-decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent);
}

.home-cta-decoration .cta-decoration-circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.home-cta-decoration .cta-decoration-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
}

.home-cta-decoration .cta-decoration-circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
}

/* Responsive Design for Home Sections */
@media (max-width: 1024px) {
    .home-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .membership-plans {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .home-services-grid {
        grid-template-columns: 1fr;
    }

    .home-service-card {
        padding: 1.5rem;
    }

    .membership-plans {
        gap: 1.5rem;
    }

    .plan-content {
        padding: 1.5rem;
    }

    .plan-content h4 {
        font-size: 1.25rem;
    }

    .price-value {
        font-size: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .home-cta-content {
        padding: 2rem;
    }

    .home-cta-title {
        font-size: 1.75rem;
    }

    .home-cta-buttons {
        flex-direction: column;
    }

    .home-cta-btn-primary,
    .home-cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .home-cta-features {
        flex-direction: column;
        gap: 1rem;
    }
}

/* === Home Hero Section === */
.home-hero {
    min-height: 100vh;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.home-hero-video {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    background: #000;
}

.home-hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    border: 0;
    display: block;
    opacity: 0;
    transition: opacity 600ms ease;
    will-change: opacity;
}

.home-hero-video.ready video {
    opacity: 1;
}

.home-hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 6, 10, 0.65) 0%, rgba(6, 6, 10, 0.55) 100%);
    pointer-events: none;
    z-index: 2;
}

.home-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.home-hero-left {
    display: flex;
    flex-direction: column;
}

.home-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
    animation: fadeIn 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

.home-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: white;
    margin: 0;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
    opacity: 0;
}

.home-hero-title-line {
    display: block;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.88) 25%,
        rgba(200, 240, 255, 0.92) 50%,
        rgba(255, 255, 255, 0.88) 75%,
        rgba(255, 255, 255, 0.95) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 150% 150%;
    animation: liquidGlass 8s ease-in-out infinite;
    filter:
        drop-shadow(0 1px 3px rgba(0, 0, 0, 0.6))
        drop-shadow(0 0 4px rgba(0, 212, 255, 0.15));
}

@keyframes liquidGlass {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.home-hero-title-accent {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    line-height: 1.7;
    max-width: 600px;
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
    opacity: 0;
}

.home-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.5s forwards;
    opacity: 0;
}

.home-hero-social {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    z-index: 4;
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
    opacity: 0;
}

.home-hero-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.home-hero-social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.home-hero-btn-primary,
.home-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.home-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.home-hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.home-hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.home-hero-stats {
    display: flex;
    gap: 2rem;
    align-items: center;
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
    opacity: 0;
}

.home-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.home-hero-stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.home-hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.home-hero-stat-divider {
    width: 1px;
    height: 2.5rem;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.home-hero-right {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.home-hero-embeds {
    display: grid;
    gap: 1.5rem;
    animation: fadeIn 0.8s ease-out 0.7s forwards;
    opacity: 0;
}

.home-hero-embed-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.home-hero-embed-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.embed-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.embed-card-header i {
    color: var(--primary);
    font-size: 1.25rem;
}

.embed-card-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.embed-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    background: transparent;
}

.embed-wrapper::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.embed-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.home-hero-float {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    z-index: 4;
}

.home-hero-float-1 {
    top: 5%;
    right: -5%;
    animation: float 7s ease-in-out infinite;
}

.home-hero-float-2 {
    top: 50%;
    right: -10%;
    animation: float 7s ease-in-out infinite 1.75s;
}

.home-hero-float-3 {
    bottom: 20%;
    right: 5%;
    animation: float 7s ease-in-out infinite 3.5s;
}

.home-hero-float-4 {
    top: 30%;
    right: -15%;
    animation: float 7s ease-in-out infinite 5.25s;
}

.home-hero-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.2), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Responsive Design for Home Hero */
@media (max-width: 1024px) {
    .home-hero-container {
        grid-template-columns: 1fr 380px;
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .home-hero-right {
        max-width: 380px;
    }
}

@media (max-width: 768px) {
    .home-hero {
        min-height: 100vh;
        padding: 8rem 0;
        aspect-ratio: auto;
        max-height: none;
        height: auto;
    }

    .home-hero-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .home-hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
        text-align: left;
    }

    .home-hero-content {
        align-items: flex-start;
    }

    .home-hero-badge {
        margin: 0;
        font-size: 0.7rem;
        padding: 0.35rem 0.75rem;
    }

    .home-hero-title {
        font-size: 2rem;
    }

    .home-hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .home-hero-cta {
        flex-direction: row;
        gap: 0.75rem;
        justify-content: flex-start;
    }

    .home-hero-btn-primary,
    .home-hero-btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        flex: 1;
        justify-content: center;
        white-space: nowrap;
    }

    .home-hero-stats {
        display: none;
    }

    .home-hero-right {
        max-width: 100%;
        order: 2;
    }

    .home-hero-embeds {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .embed-card-header {
        padding: 0.75rem 1rem;
    }

    .embed-card-header h3 {
        font-size: 0.9rem;
    }

    .home-hero-float {
        display: none;
    }

    .home-hero-glow {
        display: none;
    }
}

@media (max-width: 480px) {
    .home-hero {
        padding: 6rem 0;
        aspect-ratio: auto;
        max-height: none;
        height: 100vh;
    }

    .home-hero-container {
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .home-hero-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.75rem;
    }

    .home-hero-title {
        font-size: 1.5rem;
    }

    .home-hero-subtitle {
        font-size: 0.9rem;
    }

    .home-hero-cta {
        flex-direction: row;
        gap: 0.5rem;
    }

    .home-hero-btn-primary,
    .home-hero-btn-secondary {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
        flex: 1;
        white-space: nowrap;
    }

    /* Hide stats and embed cards on small mobile for cleaner focus on core content */
    .home-hero-stats {
        display: none;
    }

    .home-hero-right {
        display: none;
    }

    /* Hide floating icons on mobile for cleaner look */
    .home-hero-float {
        display: none;
    }
}

/* Landscape orientation for mobile devices */
@media (max-height: 500px) and (orientation: landscape) {
    .home-hero {
        min-height: auto;
        padding: 1.5rem 0;
        aspect-ratio: auto;
        max-height: 100vh;
    }

    .home-hero-container {
        grid-template-columns: 1fr 400px;
        gap: 2rem;
        padding: 0 2rem;
    }

    .home-hero-title {
        font-size: 1.75rem;
    }

    .home-hero-subtitle {
        font-size: 0.9rem;
        max-width: 500px;
    }

    .home-hero-cta {
        flex-direction: row;
    }

    .home-hero-btn-primary,
    .home-hero-btn-secondary {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }

    .home-hero-stats {
        gap: 1rem;
    }

    .home-hero-stat-number {
        font-size: 1.25rem;
    }

    .home-hero-stat-label {
        font-size: 0.75rem;
    }

    .home-hero-right {
        max-width: 400px;
    }

    .home-hero-embeds {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .home-hero-float {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .embed-card-header {
        padding: 0.6rem 0.8rem;
    }

    .embed-card-header h3 {
        font-size: 0.85rem;
    }
}

/* === About Story Section === */
.about-story-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.01);
}

.about-story-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-story-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.about-story-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-story-card-reverse {
    grid-template-columns: 1.5fr 1fr;
}

.about-story-card-reverse .story-visual {
    order: 2;
}

.about-story-card-reverse .story-content {
    order: 1;
}

.story-visual {
    position: relative;
    overflow: hidden;
}

.story-year-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
}

.story-year-badge-accent {
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-story-card:hover .story-image {
    transform: scale(1.05);
}

.story-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.story-icon-accent {
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

.story-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.story-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.story-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.story-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.story-feature i {
    color: var(--primary);
}

.about-story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.story-stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.story-stat-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-3px);
}

.story-stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}

.story-stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.story-stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.story-stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* === About Team Section === */
.about-team-section {
    padding: 6rem 0;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-member-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-member-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.team-member-visual {
    position: relative;
    overflow: hidden;
}

.team-member-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.team-member-badge-accent {
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

.team-member-badge-secondary {
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

.team-member-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.5s ease;
}

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

.team-member-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.team-member-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.team-member-role {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

.team-member-bio {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.team-member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.team-skill {
    background: rgba(168, 85, 247, 0.1);
    color: var(--accent);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.team-member-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 35px;
    height: 35px;
    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: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* === About Studio Section === */
.about-studio-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.01);
}

.about-studio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.studio-feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
}

.studio-feature-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.studio-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.studio-feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.studio-feature-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.studio-feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.feature-tag {
    background: rgba(168, 85, 247, 0.1);
    color: var(--accent);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

/* === About Testimonials Section === */
.about-testimonials-section {
    padding: 6rem 0;
}

.about-testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-testimonial-slide {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.about-testimonial-slide:not(.active) {
    display: none;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.testimonial-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}

.testimonial-text {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}

.testimonial-author-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive Design for About Sections */
@media (max-width: 1024px) {
    .about-story-card {
        grid-template-columns: 1fr;
    }

    .about-story-card-reverse {
        grid-template-columns: 1fr;
    }

    .about-story-card-reverse .story-visual {
        order: 1;
    }

    .about-story-card-reverse .story-content {
        order: 2;
    }

    .about-story-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-studio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-testimonials-carousel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-story-card {
        gap: 1.5rem;
    }

    .story-content {
        padding: 1.5rem;
    }

    .story-title {
        font-size: 1.25rem;
    }

    .about-story-stats {
        grid-template-columns: 1fr;
    }

    .story-stat-card {
        flex-direction: column;
        text-align: center;
    }

    .about-team-grid {
        grid-template-columns: 1fr;
    }

    .about-studio-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

/* === Contact Hero Section === */
.contact-hero {
    min-height: 80vh;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.contact-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-hero-left {
    display: flex;
    flex-direction: column;
}

.contact-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
    animation: fadeIn 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

.contact-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: white;
    margin: 0;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
    opacity: 0;
}

.contact-hero-title-line {
    display: block;
}

.contact-hero-title-accent {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    line-height: 1.7;
    max-width: 600px;
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
    opacity: 0;
}

.contact-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.5s forwards;
    opacity: 0;
}

.contact-hero-btn-primary,
.contact-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.contact-hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.contact-hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.contact-hero-quick-info {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
    opacity: 0;
}

.contact-quick-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.contact-quick-item i {
    color: var(--primary);
    font-size: 1.25rem;
}

.contact-hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-visual {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-icon-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    z-index: 2;
}

.contact-hero-icon-circle-1 {
    top: 10%;
    left: 10%;
    animation: float 7s ease-in-out infinite;
}

.contact-hero-icon-circle-2 {
    top: 20%;
    right: 15%;
    animation: float 7s ease-in-out infinite 1.75s;
}

.contact-hero-icon-circle-3 {
    bottom: 20%;
    left: 20%;
    animation: float 7s ease-in-out infinite 3.5s;
}

.contact-hero-icon-circle-4 {
    bottom: 10%;
    right: 10%;
    animation: float 7s ease-in-out infinite 5.25s;
}

.contact-hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3), transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.contact-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 6, 10, 0.95) 0%, rgba(6, 6, 10, 0.85) 100%);
    pointer-events: none;
}

.contact-hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Responsive Design for Contact Hero */
@media (max-width: 1024px) {
    .contact-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-visual {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: auto;
        padding: 4rem 0;
    }

    .contact-hero-container {
        padding: 0 1rem;
    }

    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-hero-subtitle {
        font-size: 1rem;
    }

    .contact-hero-cta {
        flex-direction: column;
    }

    .contact-hero-btn-primary,
    .contact-hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .contact-hero-quick-info {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-hero-visual {
        height: 300px;
    }

    .contact-hero-icon-circle {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 1.75rem;
    }

    .contact-hero-badge {
        font-size: 0.8rem;
    }
}

/* === Contact Body Section === */
.contact-body-section {
    padding: 6rem 0;
}

.contact-body-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-info-card-large {
    grid-column: span 3;
    flex-direction: column;
    align-items: flex-start;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.contact-info-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.contact-info-text a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: var(--accent);
}

.contact-social-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.contact-social-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

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

.contact-social-link {
    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: var(--text-secondary);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.contact-social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* === Contact Form Section === */
.contact-form-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.01);
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.modern-contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 2rem;
    padding: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.error-message {
    font-size: 0.875rem;
    color: #ff6b6b;
    min-height: 1.25rem;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* === Contact FAQ Section === */
.contact-faq-section {
    padding: 6rem 0;
}

.contact-faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.faq-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
}

.faq-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.faq-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}

.faq-question {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.faq-answer {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* === Contact Map Section === */
.contact-map-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.01);
}

.contact-map-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-map-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 2rem;
    overflow: hidden;
}

.map-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.map-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.map-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.map-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.map-address {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.map-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Design for Contact Body */
@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info-card-large {
        grid-column: span 2;
    }

    .contact-faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-body-section {
        padding: 4rem 0;
    }

    .contact-form-section {
        padding: 4rem 0;
    }

    .contact-faq-section {
        padding: 4rem 0;
    }

    .contact-map-section {
        padding: 4rem 0;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card-large {
        grid-column: span 1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modern-contact-form {
        padding: 2rem;
    }

    .contact-faq-grid {
        grid-template-columns: 1fr;
    }

    .map-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-info-card {
        padding: 1.5rem;
    }

    .contact-info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .modern-contact-form {
        padding: 1.5rem;
    }

    .contact-social-links {
        gap: 0.75rem;
    }

    .contact-social-link {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }
}

/* === Music Hero Section === */
.music-hero {
    min-height: 90vh;
    padding: 8rem 0 6rem 0;
    position: relative;
    overflow: hidden;
}

.music-hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.music-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.music-hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 6, 10, 0.9) 0%, rgba(6, 6, 10, 0.7) 100%);
    z-index: 1;
}

.music-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.music-hero-left {
    display: flex;
    flex-direction: column;
}

.music-hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.music-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
    animation: fadeIn 0.6s ease-out 0.2s forwards;
    opacity: 0;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.music-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: white;
    margin: 0;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
    opacity: 0;
}

.music-hero-title-line {
    display: block;
}

.music-hero-title-accent {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.music-hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    line-height: 1.7;
    max-width: 600px;
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
    opacity: 0;
}

.music-hero-cta {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.5s forwards;
    opacity: 0;
    margin-top: 0.5rem;
}

.music-hero-btn-primary,
.music-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.music-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.music-hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.music-hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.music-hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.music-hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    aspect-ratio: 1;
}

.music-hero-image-shape {
    position: absolute;
    inset: -30px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.15;
    animation: morphShape 10s ease-in-out infinite;
}

.music-hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 2;
    transition: transform 0.5s ease;
}

.music-hero-image:hover {
    transform: scale(1.02);
}

.music-hero-float {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    z-index: 4;
}

.music-hero-float-1 {
    top: 5%;
    right: -5%;
    animation: float 7s ease-in-out infinite;
}

.music-hero-float-2 {
    top: 50%;
    right: -10%;
    animation: float 7s ease-in-out infinite 1.75s;
}

.music-hero-float-3 {
    bottom: 20%;
    right: 5%;
    animation: float 7s ease-in-out infinite 3.5s;
}

.music-hero-float-4 {
    top: 30%;
    right: -15%;
    animation: float 7s ease-in-out infinite 5.25s;
}

.music-hero-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.2), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.music-hero-wave {
    position: absolute;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0;
    z-index: 0;
}

.music-hero-wave-1 {
    inset: 0;
    animation: pulseWave 3s ease-out infinite;
}

.music-hero-wave-2 {
    inset: 0;
    animation: pulseWave 3s ease-out infinite 1s;
}

.music-hero-wave-3 {
    inset: 0;
    animation: pulseWave 3s ease-out infinite 2s;
}

.music-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.music-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 6, 10, 0.3) 0%, rgba(6, 6, 10, 0.1) 100%);
    pointer-events: none;
}

.music-hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Responsive Design for Music Hero */
@media (max-width: 1024px) {
    .music-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .music-hero-title {
        font-size: 2.5rem;
    }

    .music-hero-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .music-hero {
        min-height: auto;
        padding: 4rem 0;
    }

    .music-hero-container {
        padding: 0 0.5rem;
    }

    .music-hero-title {
        font-size: 2rem;
    }

    .music-hero-subtitle {
        font-size: 1rem;
    }

    .music-hero-cta {
        flex-direction: column;
    }

    .music-hero-btn-primary,
    .music-hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .music-hero-float {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .music-hero-image-wrapper {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .music-hero {
        padding: 3rem 0;
    }

    .music-hero-title {
        font-size: 1.75rem;
    }

    .music-hero-badge {
        font-size: 0.8rem;
    }

    .music-hero-image-wrapper {
        max-width: 250px;
    }
}

/* === Artists Hero Section === */
.artists-hero {
    min-height: 85vh;
    padding: 8rem 0 6rem 0;
    position: relative;
    overflow: hidden;
    background: var(--background);
}

.artists-hero-spotlight {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transition: all 0.3s ease;
}

.artists-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.artists-hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.artists-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent), #ec4899);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
    animation: fadeIn 0.6s ease-out 0.2s forwards;
    opacity: 0;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.artists-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
    opacity: 0;
}

.artists-hero-title-line {
    display: block;
}

.artists-hero-title-accent {
    background: linear-gradient(135deg, var(--accent), #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.artists-hero-subtitle {
    color: var(--text-secondary);
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    line-height: 1.7;
    max-width: 600px;
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
    opacity: 0;
}

.artists-hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 0.6s ease-out 0.5s forwards;
    opacity: 0;
}

.artists-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.artists-hero-stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.artists-hero-stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.artists-hero-stat-divider {
    width: 1px;
    height: 2.5rem;
    background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

.artists-hero-cta {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
    opacity: 0;
    margin-top: 0.5rem;
}

.artists-hero-btn,
.artists-hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.artists-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
}

.artists-hero-btn-outline {
    background: rgba(168, 85, 247, 0.1);
    border: 2px solid rgba(168, 85, 247, 0.3);
    color: var(--text-primary);
}

.artists-hero-btn-outline:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateY(-2px);
}

.artists-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
}

.artists-hero-spotlight-ring {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 50%;
    animation: pulseRing 4s ease-in-out infinite;
}

.artists-hero-float {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
    z-index: 4;
}

.artists-hero-float-1 {
    top: 10%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
}

.artists-hero-float-2 {
    top: 20%;
    right: 10%;
    animation: float 8s ease-in-out infinite 2s;
}

.artists-hero-float-3 {
    bottom: 30%;
    left: 15%;
    animation: float 8s ease-in-out infinite 4s;
}

.artists-hero-float-4 {
    bottom: 20%;
    right: 5%;
    animation: float 8s ease-in-out infinite 6s;
}

.artists-hero-float-5 {
    top: 50%;
    right: 20%;
    animation: float 8s ease-in-out infinite 1s;
}

.artists-hero-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.2), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.artists-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.artists-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    pointer-events: none;
}

.artists-hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
}

@keyframes pulseRing {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

/* Responsive Design for Artists Hero */
@media (max-width: 1024px) {
    .artists-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .artists-hero-title {
        font-size: 2.5rem;
    }

    .artists-hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .artists-hero {
        min-height: auto;
        padding: 4rem 0;
    }

    .artists-hero-container {
        padding: 0 1rem;
    }

    .artists-hero-title {
        font-size: 2rem;
    }

    .artists-hero-subtitle {
        font-size: 1rem;
    }

    .artists-hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .artists-hero-stat-divider {
        display: none;
    }

    .artists-hero-cta {
        flex-direction: column;
    }

    .artists-hero-btn,
    .artists-hero-btn-outline {
        width: 100%;
        justify-content: center;
    }

    .artists-hero-float {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .artists-hero-visual {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .artists-hero-title {
        font-size: 1.75rem;
    }

    .artists-hero-badge {
        font-size: 0.8rem;
    }

    .artists-hero-stat-number {
        font-size: 1.5rem;
    }
}

/* ========================================
   Track Detail Page Styles
   ======================================== */

.track-detail-page {
    min-height: 100vh;
    padding: 100px 0 4rem 0;
    background: var(--background);
}

.track-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Back Button */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.back-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(-4px);
}

.back-btn:active {
    transform: translateX(-2px);
}

.back-btn i {
    font-size: 0.85rem;
    transition: transform 0.2s;
}

.back-btn:hover i {
    transform: translateX(-2px);
}

/* Track Hero Section */
.track-detail-hero {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 2rem;
}

.track-detail-artwork {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.track-detail-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.track-detail-play-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--background);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.4);
    transition: var(--transition);
}

.track-detail-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 212, 255, 0.5);
}

.track-detail-play-btn:active {
    transform: scale(0.95);
}

/* Track Info */
.track-detail-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.track-detail-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.track-detail-badge.trending {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
}

.track-detail-badge.popular {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.track-detail-badge.new-release {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
}

.track-detail-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

.track-detail-artist {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin: 0;
}

.track-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.track-detail-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.track-detail-genre::after {
    content: '·';
    margin-left: 0.5rem;
    color: var(--border);
}

.track-detail-duration::after {
    content: '·';
    margin-left: 0.5rem;
    color: var(--border);
}

.track-detail-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.stat-item i {
    color: var(--primary);
}

/* Action Buttons */
.track-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-primary);
}

.action-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.action-btn.like-btn.liked {
    background: rgba(236, 72, 153, 0.15);
    border-color: #ec4899;
    color: #ec4899;
}

.action-btn.like-btn.liked i {
    color: #ec4899;
}

.action-btn.spotify-btn {
    background: #1db954;
    border-color: #1db954;
    color: white;
}

.action-btn.spotify-btn:hover {
    background: #1ed760;
    border-color: #1ed760;
    color: white;
}

.action-btn.spotify-btn i {
    color: white;
}

/* Artist Socials */
.track-detail-socials {
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.track-detail-socials .socials-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 1rem;
}

.track-detail-socials .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.track-detail-socials .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--background);
    color: var(--text-secondary);
    font-size: 1.25rem;
    transition: var(--transition);
}

.track-detail-socials .social-links a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

/* More from Artist Section */
.more-from-artist {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.more-from-artist .section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 1.5rem;
}

.more-tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

/* Error State */
.error-state {
    text-align: center;
    padding: 4rem 2rem;
}

.error-state i {
    font-size: 4rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.error-state h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0 0 1.5rem;
}

/* Responsive Design for Track Detail */
@media (max-width: 768px) {
    .track-detail-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .track-detail-artwork {
        max-width: 300px;
        margin: 0 auto;
    }

    .track-detail-info {
        text-align: center;
    }

    .track-detail-meta {
        justify-content: center;
    }

    .track-detail-stats {
        justify-content: center;
    }

    .track-detail-actions {
        justify-content: center;
    }

    .track-detail-socials .social-links {
        justify-content: center;
    }

    .more-tracks-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .track-detail-page {
        padding: 100px 0 3rem;
    }

    .track-detail-container {
        padding: 0 1rem;
    }

    .back-btn {
        font-size: 0.85rem;
        padding: 0.75rem 1.2rem;
        min-height: 44px;
        min-width: 44px;
        z-index: 1001;
    }

    .track-detail-title {
        font-size: 1.5rem;
    }

    .track-detail-artist {
        font-size: 1rem;
    }

    .action-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .track-detail-actions {
        gap: 0.5rem;
    }

    .more-tracks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}