/* Genre Pages Specific Styles - assets/css/genre-pages.css */

/* Main theme colors for different genre pages - Apple Music Inspired Premium Gradients */

.dancehall-theme {
  --genre-primary: #FF3A3A;
  /* Vibrant Premium Red */
  --genre-secondary: #FF8533;
  /* Smooth Orange */
  --genre-gradient: linear-gradient(135deg, #FF3A3A 0%, #FF8533 100%);
  --genre-card-gradient: linear-gradient(180deg, rgba(255, 58, 58, 0.1) 0%, rgba(255, 133, 51, 0.05) 100%);
  --genre-text-gradient: linear-gradient(90deg, #FF3A3A, #FF8533);
}

.afrobeats-theme {
  --genre-primary: #8E2DE2;
  /* Deep Purple */
  --genre-secondary: #4A00E0;
  /* Royal Blue */
  --genre-gradient: linear-gradient(135deg, #8E2DE2 0%, #4A00E0 100%);
  --genre-card-gradient: linear-gradient(180deg, rgba(142, 45, 226, 0.1) 0%, rgba(74, 0, 224, 0.05) 100%);
  --genre-text-gradient: linear-gradient(90deg, #8E2DE2, #4A00E0);
}

.gospel-theme {
  --genre-primary: #00B4DB;
  /* Sky Blue */
  --genre-secondary: #0083B0;
  /* Ocean Blue */
  --genre-gradient: linear-gradient(135deg, #00B4DB 0%, #0083B0 100%);
  --genre-card-gradient: linear-gradient(180deg, rgba(0, 180, 219, 0.1) 0%, rgba(0, 131, 176, 0.05) 100%);
  --genre-text-gradient: linear-gradient(90deg, #00B4DB, #0083B0);
}

.kadongo-theme {
  --genre-primary: #D4AF37;
  /* Metallic Gold */
  --genre-secondary: #8B4513;
  /* Saddle Brown */
  --genre-gradient: linear-gradient(135deg, #B58e3e 0%, #8B4513 100%);
  --genre-card-gradient: linear-gradient(180deg, rgba(212, 175, 55, 0.1) 0%, rgba(139, 69, 19, 0.05) 100%);
  --genre-text-gradient: linear-gradient(90deg, #D4AF37, #8B4513);
}

.lugaflow-theme {
  --genre-primary: #11998e;
  /* Teal */
  --genre-secondary: #38ef7d;
  /* Mint */
  --genre-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  --genre-card-gradient: linear-gradient(180deg, rgba(17, 153, 142, 0.1) 0%, rgba(56, 239, 125, 0.05) 100%);
  --genre-text-gradient: linear-gradient(90deg, #11998e, #38ef7d);
}

.traditional-theme {
  --genre-primary: #F2994A;
  /* Orange */
  --genre-secondary: #F2C94C;
  /* Yellow */
  --genre-gradient: linear-gradient(135deg, #F2994A 0%, #F2C94C 100%);
  --genre-card-gradient: linear-gradient(180deg, rgba(242, 153, 74, 0.1) 0%, rgba(242, 201, 76, 0.05) 100%);
  --genre-text-gradient: linear-gradient(90deg, #F2994A, #F2C94C);
}

.rnb-theme {
  --genre-primary: #fc00ff;
  --genre-secondary: #00dbde;
  --genre-gradient: linear-gradient(135deg, #fc00ff 0%, #00dbde 100%);
  --genre-card-gradient: linear-gradient(180deg, rgba(252, 0, 255, 0.1) 0%, rgba(0, 219, 222, 0.05) 100%);
  --genre-text-gradient: linear-gradient(90deg, #fc00ff, #00dbde);
}

.pop-theme {
  --genre-primary: #ff00cc;
  --genre-secondary: #333399;
  --genre-gradient: linear-gradient(135deg, #ff00cc 0%, #333399 100%);
  --genre-card-gradient: linear-gradient(180deg, rgba(255, 0, 204, 0.1) 0%, rgba(51, 51, 153, 0.05) 100%);
  --genre-text-gradient: linear-gradient(90deg, #ff00cc, #333399);
}

.reggae-theme {
  --genre-primary: #00bf8f;
  --genre-secondary: #001510;
  --genre-gradient: linear-gradient(135deg, #00bf8f 0%, #001510 100%);
  --genre-card-gradient: linear-gradient(180deg, rgba(0, 191, 143, 0.1) 0%, rgba(0, 21, 16, 0.05) 100%);
  --genre-text-gradient: linear-gradient(90deg, #00bf8f, #001510);
}

.band-theme {
  --genre-primary: #4e54c8;
  --genre-secondary: #8f94fb;
  --genre-gradient: linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%);
  --genre-card-gradient: linear-gradient(180deg, rgba(78, 84, 200, 0.1) 0%, rgba(143, 148, 251, 0.05) 100%);
  --genre-text-gradient: linear-gradient(90deg, #4e54c8, #8f94fb);
}

.hip-hop-theme,
.hiphop-theme {
  --genre-primary: #2C3E50;
  --genre-secondary: #BDC3C7;
  --genre-secondary: #000000;
  --genre-gradient: linear-gradient(135deg, #2C3E50 0%, #000000 100%);
  --genre-card-gradient: linear-gradient(180deg, rgba(44, 62, 80, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
  --genre-text-gradient: linear-gradient(90deg, #bdc3c7, #2c3e50);
}

.fusion-theme {
  --genre-primary: #ff9966;
  --genre-secondary: #ff5e62;
  --genre-gradient: linear-gradient(135deg, #ff9966 0%, #ff5e62 100%);
  --genre-card-gradient: linear-gradient(180deg, rgba(255, 153, 102, 0.1) 0%, rgba(255, 94, 98, 0.05) 100%);
  --genre-text-gradient: linear-gradient(90deg, #ff9966, #ff5e62);
}


/* Genre banner section styling */
.genre-banner {
  height: 400px;
  border-radius: var(--border-radius);
  background-size: cover;
  background-position: center;
  margin-bottom: var(--spacing-lg);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.genre-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.genre-banner-content {
  position: relative;
  z-index: 2;
  padding: var(--spacing-lg);
  width: 100%;
}

.genre-badge {
  display: inline-block;
  background: var(--genre-gradient);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: var(--spacing-sm);
}

.genre-banner-content h1 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-sm);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.genre-description {
  max-width: 700px;
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.genre-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  color: rgba(255, 255, 255, 0.8);
}

.genre-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.genre-meta i {
  color: var(--genre-primary);
}

.genre-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.genre-actions .primary-btn {
  background: var(--genre-gradient);
}

.genre-actions .primary-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

/* About Genre Section Styling */
.genre-about {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
}

.genre-about-content p {
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.genre-about-content p:first-of-type {
  color: var(--text-primary);
  font-size: 1.15rem;
  font-weight: 500;
}

.genre-about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 100%;
}

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

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

/* Events List Styling */
.events-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.event-card {
  display: flex;
  align-items: center;
  background-color: var(--secondary-bg);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-5px);
  background-color: var(--card-bg);
}

.event-date {
  background-color: var(--genre-primary);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: var(--spacing-md);
  flex-shrink: 0;
}

.date-month {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
}

.date-day {
  font-size: 1.5rem;
  font-weight: 700;
}

.event-details {
  flex: 1;
}

.event-title {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.event-tag {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2px 10px;
}

.event-summary {
  color: var(--text-secondary);
  line-height: 1.5;
}

.event-action {
  margin-left: var(--spacing-md);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .genre-about {
    grid-template-columns: 1fr;
  }

  .genre-about-image {
    max-height: 400px;
    order: -1;
  }

  .genre-banner-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .genre-meta {
    flex-direction: column;
    gap: 8px;
  }

  .genre-actions {
    flex-direction: column;
    width: 100%;
  }

  .genre-actions .btn {
    width: 100%;
  }

  .event-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-date {
    margin-bottom: var(--spacing-sm);
  }

  .event-action {
    margin-left: 0;
    margin-top: var(--spacing-sm);
    width: 100%;
  }

  .event-action .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .genre-banner {
    height: auto;
    padding-top: 60%;
  }

  .genre-banner-content {
    padding: var(--spacing-md);
  }

  .genre-banner-content h1 {
    font-size: 2rem;
  }

  .genre-description {
    font-size: 0.9rem;
  }
}

/* Add this to your existing genre-pages.css file */



/* Special styling for Reggae page elements */
.reggae-theme .genre-badge {
  background: var(--rasta-gradient);
  box-shadow: 0 0 15px rgba(192, 57, 43, 0.5);
  animation: pulse-badge 3s infinite;
}

@keyframes pulse-badge {
  0% {
    box-shadow: 0 0 15px rgba(192, 57, 43, 0.5);
  }

  50% {
    box-shadow: 0 0 20px rgba(39, 174, 96, 0.5);
  }

  100% {
    box-shadow: 0 0 15px rgba(192, 57, 43, 0.5);
  }
}

.reggae-theme .primary-btn {
  background: var(--rasta-gradient);
  position: relative;
  overflow: hidden;
}

.reggae-theme .primary-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.reggae-theme .primary-btn:hover::after {
  left: 100%;
}

.reggae-theme .event-date {
  background: var(--rasta-gradient);
}

/* Reggae Culture Section styling */
.reggae-culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-sm);
}

.culture-card {
  background-color: var(--secondary-bg);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  text-align: center;
  transition: var(--transition);
  border-top: 3px solid transparent;
  border-image: var(--rasta-gradient);
  border-image-slice: 1;
}

.culture-card:hover {
  transform: translateY(-5px);
  background-color: var(--card-bg);
}

.culture-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--genre-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-sm);
}

.culture-icon i {
  font-size: 1.5rem;
  color: white;
}

.culture-card h3 {
  margin-bottom: var(--spacing-xs);
  font-size: 1.2rem;
}

.culture-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Rasta-inspired progress bar for reggae page */
.reggae-theme .player .progress-bar {
  background: var(--rasta-gradient);
}

/* Unique hover effect for reggae music cards */
.reggae-theme .music-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2),
    0 0 0 1px var(--genre-primary),
    0 0 0 4px var(--genre-secondary),
    0 0 0 7px var(--genre-accent);
  transform: translateY(-8px);
}

/* Responsive styles for reggae culture section */
@media (max-width: 768px) {
  .reggae-culture-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .reggae-culture-grid {
    grid-template-columns: 1fr;
  }
}

/* Add this to your existing genre-pages.css file */



/* Special styling for R&B page elements */
.rnb-theme .genre-badge {
  background: var(--smooth-gradient);
  box-shadow: 0 0 15px rgba(142, 68, 173, 0.5);
  transition: all 0.5s ease;
}

.rnb-theme .genre-badge:hover {
  box-shadow: 0 0 20px rgba(142, 68, 173, 0.8);
}

.rnb-theme .primary-btn {
  background: var(--smooth-gradient);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.rnb-theme .primary-btn:hover {
  box-shadow: 0 5px 15px rgba(142, 68, 173, 0.5);
  transform: translateY(-3px);
}

.rnb-theme .event-date {
  background: var(--smooth-gradient);
}

/* Vocal Techniques Section styling */
.vocal-techniques {
  margin-top: var(--spacing-md);
}

.technique-row {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.technique-card {
  flex: 1;
  background-color: var(--secondary-bg);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

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

.technique-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.technique-card h3 {
  margin-bottom: var(--spacing-xs);
  font-size: 1.2rem;
  color: var(--genre-primary);
}

.technique-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: var(--spacing-sm);
}

.technique-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--smooth-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* Smooth animations for R&B page */
.rnb-theme .charts-list .chart-item:hover {
  background-color: rgba(142, 68, 173, 0.1);
}

.rnb-theme .music-card {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rnb-theme .music-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Soft glowing effect for R&B play buttons */
.rnb-theme .play-btn {
  box-shadow: 0 0 0 rgba(142, 68, 173, 0);
  transition: box-shadow 1.5s;
}

.rnb-theme .play-btn:hover {
  box-shadow: 0 0 20px rgba(142, 68, 173, 0.7);
  animation: pulse-soft 2s infinite;
}

@keyframes pulse-soft {
  0% {
    box-shadow: 0 0 0 0 rgba(142, 68, 173, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(142, 68, 173, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(142, 68, 173, 0);
  }
}

/* Responsive styles for vocal techniques section */
@media (max-width: 768px) {
  .technique-row {
    flex-direction: column;
  }
}

/* Add this to your existing genre-pages.css file */



/* Special styling for Kadongo Kamu page elements */
.kadongo-theme .genre-badge {
  background: var(--folk-gradient);
  box-shadow: 0 0 15px rgba(139, 69, 19, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.kadongo-theme .primary-btn {
  background: var(--folk-gradient);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.kadongo-theme .primary-btn:hover {
  box-shadow: 0 5px 15px rgba(139, 69, 19, 0.5);
  transform: translateY(-3px);
}

.kadongo-theme .event-date {
  background: var(--genre-gradient);
}

/* Longer song durations typical for Kadongo Kamu storytelling */
.kadongo-theme .chart-duration {
  min-width: 50px;
}

/* Style for traditional song years (older releases) */
.kadongo-theme .music-year {
  color: var(--genre-accent);
  font-weight: 500;
}

/* Storytelling Themes Section styling */
.storytelling-themes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.theme-card {
  background-color: var(--secondary-bg);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
  border-bottom: 3px solid var(--genre-primary);
  position: relative;
  overflow: hidden;
}

.theme-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--folk-gradient);
}

.theme-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background-color: var(--card-bg);
}

.theme-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--genre-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
  color: white;
}

.theme-card h3 {
  margin-bottom: var(--spacing-xs);
  font-size: 1.2rem;
  color: var(--genre-accent);
}

.theme-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Special styling for artists - folk musicians get a traditional frame */
.kadongo-theme .artist-avatar {
  border: 3px solid transparent;
  background: var(--folk-gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

/* Wood-like texture hover effect for music cards */
.kadongo-theme .music-card {
  position: relative;
  overflow: hidden;
}

.kadongo-theme .music-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(139, 69, 19, 0),
      rgba(139, 69, 19, 0.1),
      rgba(139, 69, 19, 0));
  transform: skewX(-25deg);
  transition: 0.7s;
}

.kadongo-theme .music-card:hover::after {
  left: 125%;
}

.kadongo-theme .music-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive styles for storytelling themes section */
@media (max-width: 992px) {
  .storytelling-themes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .storytelling-themes {
    grid-template-columns: 1fr;
  }

  .theme-card {
    padding: var(--spacing-sm);
  }
}

/* Oldies theme - nostalgic vinyl & sepia tones */


.oldies-theme .genre-badge {
  background: var(--genre-gradient);
  box-shadow: 0 0 12px rgba(196, 154, 108, 0.5);
}

.oldies-theme .primary-btn {
  background: var(--genre-gradient);
  border: none;
  color: white;
  font-weight: 600;
}

.oldies-theme .primary-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(196, 154, 108, 0.4);
}

.oldies-theme .event-date {
  background: var(--genre-gradient);
}

/* Genre Pages - Apple-Inspired Design */
.genre-page {
  /* Base styling with Apple's design language */
  --genre-primary-color: #0071e3;
  /* Apple's signature blue */
  --genre-secondary-color: #86868b;
  /* Apple's secondary text color */
  --genre-accent-color: #06c;
  --apple-blur: saturate(180%) blur(20px);
}

/* Theme-specific Apple-inspired gradients */


/* Genre Banner - Apple-style */
.genre-banner {
  border-radius: var(--border-radius);
  padding: 80px 50px;
  margin-bottom: var(--spacing-lg);
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.genre-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--genre-gradient);
  opacity: 0.85;
  mix-blend-mode: overlay;
  z-index: 1;
}

.genre-banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.genre-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: var(--apple-blur);
  -webkit-backdrop-filter: var(--apple-blur);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.genre-banner h1 {
  font-size: 4rem;
  margin-bottom: 15px;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  background: var(--genre-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.genre-description {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  margin-bottom: 25px;
  max-width: 700px;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  font-weight: 300;
}

.genre-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
}

.genre-meta span {
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  backdrop-filter: var(--apple-blur);
  -webkit-backdrop-filter: var(--apple-blur);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.genre-meta i {
  color: var(--genre-accent-color);
}

.genre-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.genre-actions .primary-btn {
  background: var(--genre-gradient);
  border: none;
  color: white;
  font-weight: 500;
}

.genre-actions .secondary-btn {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: var(--apple-blur);
  -webkit-backdrop-filter: var(--apple-blur);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

/* About Section */
.genre-about {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  margin-top: 30px;
}

.genre-about-content p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 300;
}

.genre-about-content p:first-child {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 400;
}

.genre-about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.genre-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

/* Hip Hop Elements Section - Apple Style */
.hiphop-elements {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
}

.element-row {
  display: flex;
  gap: 25px;
  justify-content: space-between;
}

.center-element {
  justify-content: center;
}

.element-card {
  background: var(--genre-card-gradient);
  backdrop-filter: var(--apple-blur);
  -webkit-backdrop-filter: var(--apple-blur);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  flex: 1;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.element-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(var(--genre-primary-color), 0.2);
}

.element-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  background: var(--genre-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.element-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  font-weight: 300;
}

.element-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 2.5rem;
  opacity: 0.1;
  background: var(--genre-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.element-card:hover .element-icon {
  opacity: 0.2;
  transform: scale(1.2) rotate(5deg);
}

.center-element .element-card {
  max-width: 600px;
  margin: 0 auto;
}

/* Event Cards - Apple Style */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.event-card {
  display: flex;
  background-color: rgba(40, 40, 40, 0.5);
  backdrop-filter: var(--apple-blur);
  -webkit-backdrop-filter: var(--apple-blur);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 255, 255, 0.1);
}

.event-date {
  background: var(--genre-gradient);
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 90px;
}

.date-month {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.date-day {
  font-size: 2rem;
  font-weight: 700;
}

.event-details {
  padding: 25px;
  flex: 1;
}

.event-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}

.event-meta span {
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-meta i {
  color: var(--genre-accent-color);
}

.event-tag {
  background-color: rgba(255, 255, 255, 0.07);
  backdrop-filter: var(--apple-blur);
  -webkit-backdrop-filter: var(--apple-blur);
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-summary {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 300;
}

.event-action {
  display: flex;
  align-items: center;
  padding: 25px;
}

.event-action .primary-btn {
  background: var(--genre-gradient);
  border: none;
}

/* Section headers with gradient text */
.section-title {
  background: var(--genre-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 600;
}

/* Chart items and music cards with Apple style */
.charts-list {
  background-color: rgba(40, 40, 40, 0.5);
  backdrop-filter: var(--apple-blur);
  -webkit-backdrop-filter: var(--apple-blur);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.chart-item:hover {
  background-color: rgba(255, 255, 255, 0.07);
}

.chart-item .play-btn:hover,
.chart-item .download-btn-small:hover,
.chart-item .add-to-queue-btn:hover {
  background: var(--genre-gradient);
  color: white;
}

.music-card .music-thumbnail {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.music-card:hover .music-thumbnail {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.music-card .download-btn-album {
  background: var(--genre-gradient);
  border: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .genre-banner {
    padding: 50px 30px;
  }

  .genre-banner h1 {
    font-size: 3.2rem;
  }

  .genre-about {
    grid-template-columns: 1fr;
  }

  .genre-about-image {
    height: 350px;
    order: -1;
  }

  .element-row {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .genre-banner {
    padding: 40px 25px;
  }

  .genre-banner h1 {
    font-size: 2.5rem;
  }

  .genre-description {
    font-size: 1.1rem;
  }

  .genre-meta span {
    padding: 6px 10px;
    font-size: 0.85rem;
  }

  .genre-actions {
    flex-direction: column;
    width: 100%;
  }

  .genre-actions button {
    width: 100%;
  }

  .event-card {
    flex-direction: column;
  }

  .event-date {
    flex-direction: row;
    padding: 12px;
    justify-content: center;
    gap: 10px;
  }

  .date-month,
  .date-day {
    font-size: 1.2rem;
  }

  .event-action {
    padding: 0 25px 25px;
  }
}

@media (max-width: 576px) {
  .genre-banner h1 {
    font-size: 2.2rem;
  }

  .genre-meta {
    flex-direction: column;
    gap: 10px;
  }

  .element-card {
    padding: 20px;
  }

  .element-card h3 {
    font-size: 1.2rem;
  }
}

/* Genre Pages - Blend of Apple Style with Your Approach */



/* Genre banner section styling */
.genre-banner {
  height: 400px;
  border-radius: var(--border-radius);
  background-size: cover;
  background-position: center;
  margin-bottom: var(--spacing-lg);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.genre-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.genre-banner-content {
  position: relative;
  z-index: 2;
  padding: var(--spacing-lg);
  width: 100%;
}

.genre-badge {
  display: inline-block;
  background: var(--genre-gradient);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: var(--spacing-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.genre-banner-content h1 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-sm);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  background: var(--genre-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.genre-description {
  max-width: 700px;
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  font-weight: 300;
  font-size: 1.1rem;
}

.genre-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  color: rgba(255, 255, 255, 0.8);
}

.genre-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.genre-meta i {
  color: var(--genre-primary);
}

.genre-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.genre-actions .primary-btn {
  background: var(--genre-gradient);
  border: none;
}

.genre-actions .primary-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.genre-actions .secondary-btn {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* About Genre Section Styling */
.genre-about {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
}

.genre-about-content p {
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-weight: 300;
}

.genre-about-content p:first-of-type {
  color: var(--text-primary);
  font-size: 1.15rem;
  font-weight: 500;
}

.genre-about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 100%;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.genre-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* Section titles with gradient text */
.section-title {
  background: var(--genre-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Events List Styling */
.events-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.event-card {
  display: flex;
  align-items: center;
  background-color: var(--secondary-bg);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  transition: var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.event-card:hover {
  transform: translateY(-5px);
  background-color: var(--card-bg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.event-date {
  background: var(--genre-gradient);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: var(--spacing-md);
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.date-month {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
}

.date-day {
  font-size: 1.5rem;
  font-weight: 700;
}

.event-details {
  flex: 1;
}

.event-title {
  font-size: 1.2rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.event-meta i {
  color: var(--genre-primary);
}

.event-tag {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2px 10px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.event-summary {
  color: var(--text-secondary);
  line-height: 1.5;
  font-weight: 300;
}

.event-action {
  margin-left: var(--spacing-md);
}

.event-action .primary-btn {
  background: var(--genre-gradient);
  border: none;
}

/* Hip Hop Elements Section */
.hiphop-elements {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
}

.element-row {
  display: flex;
  gap: 25px;
  justify-content: space-between;
}

.center-element {
  justify-content: center;
}

.element-card {
  background-color: var(--secondary-bg);
  border-radius: var(--border-radius);
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  flex: 1;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.element-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background-color: var(--card-bg);
}

.element-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  background: var(--genre-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.element-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  font-weight: 300;
}

.element-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 2.5rem;
  opacity: 0.15;
  color: var(--genre-primary);
  transition: all 0.3s ease;
}

.element-card:hover .element-icon {
  opacity: 0.25;
  transform: scale(1.2) rotate(5deg);
}

.center-element .element-card {
  max-width: 600px;
  margin: 0 auto;
}

/* Charts & Music Cards Styling */
.charts-list {
  background-color: var(--secondary-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.chart-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.chart-item .chart-action button:hover {
  background-color: var(--genre-primary);
  color: white;
}

.music-card .download-btn-album {
  background: var(--genre-gradient);
  border: none;
}

.music-card:hover .music-thumbnail {
  transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .genre-about {
    grid-template-columns: 1fr;
  }

  .genre-about-image {
    max-height: 400px;
    order: -1;
  }

  .genre-banner-content h1 {
    font-size: 2.5rem;
  }

  .element-row {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .genre-meta {
    flex-direction: column;
    gap: 8px;
  }

  .genre-actions {
    flex-direction: column;
    width: 100%;
  }

  .genre-actions .btn {
    width: 100%;
  }

  .event-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-date {
    margin-bottom: var(--spacing-sm);
  }

  .event-action {
    margin-left: 0;
    margin-top: var(--spacing-sm);
    width: 100%;
  }

  .event-action .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .genre-banner {
    height: auto;
    padding-top: 60%;
  }

  .genre-banner-content {
    padding: var(--spacing-md);
  }

  .genre-banner-content h1 {
    font-size: 2rem;
  }

  .genre-description {
    font-size: 0.9rem;
  }

  .element-card {
    padding: 20px;
  }
}

/* Premium Genre Page Styles (Generalized) */

/* Premium Genre Hero Section */
.genre-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--genre-gradient);
}

.genre-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.genre-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.genre-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.genre-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.genre-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.genre-breadcrumb a:hover {
  color: white;
}

.genre-icon-badge {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: white;
}

.genre-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.genre-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.genre-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.genre-stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.genre-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.genre-actions .btn {
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

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

/* Floating Visual Elements */
.genre-visual-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-note {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  animation: float 6s ease-in-out infinite;
}

.floating-note.note-1 {
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.floating-note.note-2 {
  bottom: 30%;
  left: 8%;
  animation-delay: 2s;
}

.floating-note.note-3 {
  top: 60%;
  right: 15%;
  animation-delay: 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Filter Section */
.filter-section {
  margin: 40px 0;
}

.filter-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  color: var(--text-secondary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.filter-tab:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--genre-primary);
  transform: translateY(-2px);
}

.filter-tab.active {
  border-color: var(--genre-primary);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  color: var(--genre-primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.view-options {
  display: flex;
  gap: 10px;
}

.view-btn {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.view-btn:hover,
.view-btn.active {
  border-color: var(--genre-primary);
  background: rgba(255, 255, 255, 0.1);
  color: var(--genre-primary);
}

/* Songs Section */
.songs-section {
  margin: 60px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
  gap: 20px;
}

.section-info h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  opacity: 0.8;
}

.section-actions .btn {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Loading and Empty States */
.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid var(--genre-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.empty-state-content i {
  font-size: 4rem;
  color: var(--genre-primary);
  margin-bottom: 20px;
}

.empty-state-content h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.empty-state-content p {
  color: var(--text-secondary);
  margin-bottom: 25px;
}

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

  100% {
    transform: rotate(360deg);
  }
}

/* Related Genres */
.related-genres-section {
  margin: 80px 0;
}

.related-genres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.related-genre-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--genre-gradient);
}

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

.genre-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  transition: transform 0.3s ease;
}

.related-genre-card:hover .genre-card-bg {
  transform: scale(1.1);
}

.genre-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: white;
}

.genre-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.genre-card-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.genre-card-content p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Load More Section */
.load-more-section {
  text-align: center;
  margin-top: 40px;
}

.load-more-section .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .genre-hero {
    min-height: 60vh;
    padding: 40px 20px;
  }

  .genre-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .filter-section .container {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .filter-tabs {
    overflow-x: auto;
    padding: 10px 0;
  }

  .section-header {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .floating-note {
    display: none;
  }
}

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

  .genre-actions {
    flex-direction: column;
    align-items: center;
  }

  .genre-actions .btn {
    width: 200px;
  }

  .related-genres-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}