/* Custom CSS styling for Spotify-inspired concert board */
:root {
  --font-family: 'Outfit', sans-serif;
  
  /* Color Palette */
  --bg-black: #000000;
  --bg-dark-gray: #121212;
  --bg-gray: #181818;
  --bg-light-gray: #282828;
  --bg-hover-gray: #333333;
  
  --primary-green: #1db954;
  --primary-green-hover: #1ed760;
  --primary-green-glow: rgba(29, 185, 84, 0.4);
  
  --text-white: #ffffff;
  --text-secondary: #b3b3b3;
  --text-muted: #727272;
  
  --border-light: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(29, 185, 84, 0.3);
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
}

/* Reset & Scrollbar */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-black);
  color: var(--text-white);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar for Spotify look */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-black);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-light-gray);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Ambient glow highlights */
.glow-bg {
  position: fixed;
  border-radius: 50%;
  filter: blur(150px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.12;
}
.glow-spot-1 {
  width: 700px;
  height: 700px;
  top: -15%;
  left: -5%;
  background: radial-gradient(circle, #7c4dff 0%, rgba(0,0,0,0) 70%);
  animation: float-drift-1 40s infinite alternate;
}
.glow-spot-2 {
  width: 600px;
  height: 600px;
  bottom: 10%;
  right: -5%;
  background: radial-gradient(circle, var(--primary-green) 0%, rgba(0,0,0,0) 70%);
  animation: float-drift-2 35s infinite alternate-reverse;
}
.glow-spot-3 {
  width: 500px;
  height: 500px;
  top: 40%;
  left: 45%;
  background: radial-gradient(circle, #f50057 0%, rgba(0,0,0,0) 70%);
  opacity: 0.06;
}

@keyframes float-drift-1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(80px, 60px) scale(1.1); }
}
@keyframes float-drift-2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-60px, -40px) scale(1.15); }
}

/* Card glassmorphic base */
.glass-card {
  background-color: var(--bg-dark-gray);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero-header {
  position: relative;
  padding: 50px 32px 30px;
  background: linear-gradient(180deg, rgba(29, 185, 84, 0.08) 0%, rgba(0, 0, 0, 0) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}
.hero-noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.4;
}
.hero-container {
  max-width: 1400px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.live-badge {
  background-color: #f50057;
  color: var(--text-white);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.live-dot {
  width: 6px;
  height: 6px;
  background-color: var(--text-white);
  border-radius: 50%;
  animation: blink 1.2s infinite alternate;
}
@keyframes blink {
  0% { opacity: 0.3; }
  100% { opacity: 1; }
}
.logo h1 {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
}
.logo h1 span {
  color: var(--primary-green);
  text-shadow: 0 0 15px var(--primary-green-glow);
}
.subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 700px;
}

/* Layout Grid */
.main-layout {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 32px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px 140px;
}

.concerts-explorer {
  min-width: 0;
}

@media (max-width: 1100px) {
  .main-layout {
    grid-template-columns: minmax(0, 1fr);
    padding-bottom: 180px;
  }
}
@media (max-width: 640px) {
  .hero-header {
    padding: 32px 16px 20px;
  }
  .main-layout {
    padding: 0 16px 160px;
  }
}

/* Left Sidebar - Spotify Playlist widget */
.spotify-sidebar {
  position: sticky;
  top: 32px;
  align-self: start;
}
@media (max-width: 1100px) {
  .spotify-sidebar {
    position: static;
  }
}
.spotify-widget {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, var(--bg-dark-gray) 0%, #0d0d0d 100%);
}
.widget-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.spotify-brand-icon {
  font-size: 2.4rem;
  color: var(--primary-green);
  filter: drop-shadow(0 0 8px rgba(29, 185, 84, 0.3));
}
.widget-header h2 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.playlist-meta {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 1px;
}
.spotify-player-container {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
  background-color: var(--bg-black);
}
.spotify-player-container iframe {
  border: 0;
  display: block;
}
.sidebar-footer {
  margin-top: 20px;
}

/* Right Explorer - Controls */
.explorer-controls {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.search-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .search-row {
    grid-template-columns: 1fr;
  }
}
.search-input-wrapper, .venue-select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.search-icon, .select-icon {
  position: absolute;
  left: 16px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.search-input-wrapper input {
  width: 100%;
  background-color: var(--bg-light-gray);
  border: 1px solid transparent;
  color: var(--text-white);
  padding: 14px 16px 14px 44px;
  border-radius: 30px;
  font-family: var(--font-family);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}
.search-input-wrapper input:focus {
  background-color: var(--bg-hover-gray);
  border-color: var(--text-muted);
}
.venue-select-wrapper select {
  width: 100%;
  background-color: var(--bg-light-gray);
  border: 1px solid transparent;
  color: var(--text-white);
  padding: 14px 40px 14px 44px;
  border-radius: 30px;
  font-family: var(--font-family);
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
  appearance: none;
  transition: var(--transition-fast);
}
.venue-select-wrapper select:focus {
  background-color: var(--bg-hover-gray);
  border-color: var(--text-muted);
}
.venue-select-wrapper::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 18px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  pointer-events: none;
}

/* Filter sections with labels */
.filter-section {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 16px;
}
.filter-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  min-width: 60px;
}

/* Pill design */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}
.pill-group.scrollable {
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
/* Hide scrollbar for genre pills */
.pill-group.scrollable::-webkit-scrollbar {
  height: 4px;
}
.pill-group.scrollable::-webkit-scrollbar-thumb {
  background: var(--bg-light-gray);
}
.pill {
  background-color: var(--bg-light-gray);
  color: var(--text-white);
  border: 1px solid transparent;
  padding: 8px 16px;
  border-radius: 20px;
  font-family: var(--font-family);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}
.pill:hover {
  background-color: var(--bg-hover-gray);
}
.pill.active {
  background-color: var(--primary-green);
  color: var(--bg-black);
  font-weight: 700;
}
.pill.active:hover {
  background-color: var(--primary-green-hover);
}

/* Results status bar */
.results-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.btn-text {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 500;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.btn-text:hover {
  color: var(--primary-green);
}

/* Concert Grid */
.concerts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 24px;
}

/* Poster Card Design */
.concert-card {
  position: relative;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}
.concert-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7);
}

.card-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: linear-gradient(135deg, #1f1f2e 0%, #0d0d13 100%);
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 0;
}
.concert-card:hover .card-bg-image {
  transform: scale(1.08);
}

/* Gradient overlay for readability */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, 
    rgba(0, 0, 0, 0.95) 0%, 
    rgba(0, 0, 0, 0.5) 55%, 
    rgba(0, 0, 0, 0.15) 100%);
  z-index: 1;
  transition: var(--transition-smooth);
}
.concert-card:hover .card-overlay {
  background: linear-gradient(to top, 
    rgba(0, 0, 0, 0.98) 0%, 
    rgba(0, 0, 0, 0.6) 55%, 
    rgba(0, 0, 0, 0.2) 100%);
}

/* Card Inner Content */
.card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

/* Top row: Date Badge & Source logo */
.card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  width: 54px;
  height: 54px;
  text-align: center;
}
.date-badge .month {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-green);
  letter-spacing: 0.5px;
  margin-bottom: -1px;
}
.date-badge .day {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}
.source-icon-badge {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Play button - floats on hover */
.card-play-btn {
  width: 48px;
  height: 48px;
  background-color: var(--primary-green);
  color: var(--bg-black);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  position: absolute;
  bottom: 24px;
  right: 24px;
  opacity: 0;
  transform: translateY(12px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.5);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  z-index: 3;
}
.concert-card:hover .card-play-btn {
  opacity: 1;
  transform: translateY(0);
}
.card-play-btn:hover {
  background-color: var(--primary-green-hover);
  transform: scale(1.08);
}
.card-play-btn i {
  margin-left: 3px; /* Center alignment adjustment for triangle play icon */
}

/* Card details (bottom) */
.card-bottom-info {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: calc(100% - 24px); /* Make room for play button */
}
.time-venue-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.card-venue {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-venue i {
  color: var(--primary-green);
}
.card-artist-title {
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--text-white);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}
.co-headliners-subtext {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

/* Genre Tags in card bottom */
.card-genre-tags {
  display: flex;
  gap: 4px;
  margin-top: 4px;
  flex-wrap: wrap;
  max-height: 20px;
  overflow: hidden;
}
.card-genre-tag {
  font-size: 0.65rem;
  color: var(--primary-green);
  background: rgba(29, 185, 84, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: capitalize;
}

/* Currently playing highlight status */
.concert-card.currently-playing {
  border-color: var(--primary-green) !important;
  animation: pulse-border 2s infinite alternate;
}
@keyframes pulse-border {
  0% { 
    box-shadow: 0 0 10px rgba(29, 185, 84, 0.2), 0 8px 24px rgba(0, 0, 0, 0.4); 
    border-color: rgba(29, 185, 84, 0.4);
  }
  100% { 
    box-shadow: 0 0 24px rgba(29, 185, 84, 0.5), 0 8px 24px rgba(0, 0, 0, 0.4); 
    border-color: var(--primary-green);
  }
}

/* Floating bottom Playbar (Spotify style) */
.bottom-playbar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 150%);
  width: calc(100% - 48px);
  max-width: 1200px;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px 24px;
  z-index: 1000;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.bottom-playbar.active {
  transform: translate(-50%, 0);
}
.playbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.playbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}
.playbar-img-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-light-gray);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  flex-shrink: 0;
}
.playbar-text {
  min-width: 0;
}
.playbar-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-white);
}
.playbar-text p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.playbar-center {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .playbar-center {
    display: none;
  }
}
.now-playing-visualizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  width: 32px;
  height: 20px;
}
.now-playing-visualizer .bar {
  width: 3.5px;
  background-color: var(--primary-green);
  border-radius: 2px;
  height: 100%;
}
.now-playing-visualizer .bar-1 { animation: equalize-bar 0.8s ease-in-out infinite alternate; }
.now-playing-visualizer .bar-2 { animation: equalize-bar 1.2s ease-in-out infinite alternate 0.2s; }
.now-playing-visualizer .bar-3 { animation: equalize-bar 0.9s ease-in-out infinite alternate 0.1s; }
.now-playing-visualizer .bar-4 { animation: equalize-bar 1.1s ease-in-out infinite alternate 0.3s; }

@keyframes equalize-bar {
  0% { height: 15%; }
  100% { height: 100%; }
}
.playbar-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-green);
}
.playbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 540px) {
  .playbar-right #playbar-btn-tickets {
    display: none; /* Hide ticket button on tiny screens in playbar to save space */
  }
}

/* Modal Overlay Styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-container {
  width: 100%;
  max-width: 950px;
  max-height: 90vh;
  background-color: var(--bg-dark-gray);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.9);
  position: relative;
  display: flex;
  flex-direction: column;
  animation: modal-fade-in 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@keyframes modal-fade-in {
  0% { opacity: 0; transform: scale(0.95) translateY(10px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.close-modal-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  font-size: 1.8rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  line-height: 1;
  transition: var(--transition-fast);
}
.close-modal-btn:hover {
  background: var(--bg-light-gray);
  transform: scale(1.05);
}

/* Modal Banner Header */
.modal-header {
  height: 260px;
  position: relative;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: flex-end;
  padding: 32px;
}
.modal-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--bg-dark-gray) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}
.modal-header-text {
  position: relative;
  z-index: 2;
  width: 100%;
}
.modal-date-pill {
  background-color: var(--primary-green);
  color: var(--bg-black);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 12px;
}
.modal-header-text h2 {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.6);
}
.modal-venue-info {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}
.modal-venue-info i {
  color: var(--primary-green);
}

/* Modal Split Body */
.modal-body {
  padding: 32px;
}
.modal-split-layout {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 32px;
}
@media (max-width: 768px) {
  .modal-split-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.section-title {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-white);
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
}

/* Sub Artist List / Cards in Modal */
.lineup-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.performer-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: var(--bg-gray);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 16px;
  transition: var(--transition-fast);
}
.performer-card:hover {
  background-color: var(--bg-light-gray);
}
.performer-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-light-gray);
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.performer-info {
  flex-grow: 1;
  min-width: 0;
}
.performer-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.performer-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}
.performer-genre-tag {
  font-size: 0.65rem;
  color: var(--text-secondary);
  background-color: var(--bg-light-gray);
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: capitalize;
}
.performer-play-btn {
  width: 40px;
  height: 40px;
  background-color: var(--bg-light-gray);
  color: var(--primary-green);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  flex-shrink: 0;
}
.performer-play-btn:hover {
  background-color: var(--primary-green);
  color: var(--bg-black);
  transform: scale(1.05);
}
.performer-play-btn i {
  margin-left: 2px;
}

/* Sidebar Event Details */
.details-card {
  background-color: var(--bg-gray);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.detail-icon {
  font-size: 1.15rem;
  color: var(--primary-green);
  margin-top: 2px;
}
.detail-item strong {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}
.detail-item p {
  font-size: 0.95rem;
  color: var(--text-white);
  margin-top: 2px;
}
.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Universal Buttons & UI elements */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-spotify {
  background-color: var(--primary-green);
  color: var(--bg-black);
}
.btn-spotify:hover {
  background-color: var(--primary-green-hover);
  transform: scale(1.02);
}
.btn-secondary {
  background-color: var(--bg-light-gray);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.btn-secondary:hover {
  background-color: var(--bg-hover-gray);
  transform: scale(1.02);
}
.btn-sm {
  padding: 8px 18px !important;
  font-size: 0.8rem !important;
  width: auto !important;
}

/* Spinner & Loaders */
.loader-container {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  gap: 20px;
  color: var(--text-secondary);
}
.spotify-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(29, 185, 84, 0.1);
  border-radius: 50%;
  border-top-color: var(--primary-green);
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Empty State */
.empty-state {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  color: var(--text-secondary);
  background: var(--bg-dark-gray);
  border: 1px solid var(--border-light);
  border-radius: 16px;
}
.empty-icon {
  font-size: 3rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.empty-state h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text-white);
}

/* Footer */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  padding: 40px 32px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 80px;
}
.footer-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-note {
  color: var(--text-muted);
  opacity: 0.7;
}

/* Big Play Button in Modal Header */
.modal-play-btn {
  position: absolute;
  bottom: 24px;
  right: 32px;
  width: 56px;
  height: 56px;
  background-color: var(--primary-green);
  color: var(--bg-black);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5), 0 0 12px rgba(29, 185, 84, 0.4);
  transition: var(--transition-fast);
}
.modal-play-btn:hover {
  transform: scale(1.06);
  background-color: var(--primary-green-hover);
  box-shadow: 0 8px 30px rgba(0,0,0,0.6), 0 0 20px rgba(29, 185, 84, 0.6);
}
.modal-play-btn i {
  margin-left: 4px;
}

/* Share success button state */
.btn-success-feedback {
  background-color: rgba(29, 185, 84, 0.1) !important;
  border-color: var(--primary-green) !important;
  color: var(--primary-green) !important;
}

/* Mobile-Friendly Modal Layout overrides */
@media (max-width: 640px) {
  .modal-overlay {
    padding: 8px;
  }
  .modal-container {
    max-height: 100vh;
    height: 100%;
    border-radius: 12px;
  }
  .modal-header {
    height: 180px;
    padding: 20px 16px;
    background-position: center center;
  }
  .modal-header-text h2 {
    font-size: 1.6rem;
  }
  .modal-body {
    padding: 20px 16px;
  }
  .close-modal-btn {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
  }
  .modal-play-btn {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
  .performer-card {
    padding: 12px;
    gap: 12px;
  }
  .performer-avatar {
    width: 48px;
    height: 48px;
  }
  .performer-name {
    font-size: 1rem;
  }
  .details-card {
    padding: 16px;
    gap: 12px;
    margin-bottom: 20px;
  }
}

/* Modal Description Styling */
.show-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px 20px;
}
.show-description p {
  margin-bottom: 12px;
}
.show-description p:last-child {
  margin-bottom: 0;
}
.show-description a {
  color: var(--primary-green);
  text-decoration: underline;
  font-weight: 500;
}

/* Card Background Placeholder */
.card-bg-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.15);
  font-size: 6.5rem;
}

/* Center icon inside performer avatar if empty */
.performer-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.05);
}
