/* ===========================================
   INDEX PAGE STYLES - Modern Premium Design
   =========================================== */

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

body {
  font-family: var(--font-family-primary);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  background: var(--bg-primary);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.main-content {
  flex: 1;
}

/* ===========================================
   ENHANCED BUTTON SYSTEM
   =========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
  min-height: 44px;
}

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

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

.btn:hover {
  background: linear-gradient(135deg, #b91c1c, #991b1b);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
}

.btn:active {
  transform: translateY(0) scale(1);
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

/* Button Variants */
.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  background: transparent;
  border: 2px solid #dc2626;
  color: #dc2626;
  box-shadow: none;
}

.btn-outline:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.btn-success {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
  background: linear-gradient(135deg, #059669, #047857);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.btn-warning {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.btn-warning:hover {
  background: linear-gradient(135deg, #d97706, #b45309);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

/* Button Sizes */
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  min-height: 36px;
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
  min-height: 52px;
}

/* ===========================================
   WELCOME SECTION - Hero
   =========================================== */

.welcome-section {
  position: relative;
  text-align: center;
  color: var(--text-white);
  padding: clamp(1rem, 2.5vw, 2rem) 0;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
      rgba(220, 38, 38, 0.05),
      rgba(37, 99, 235, 0.05),
      rgba(139, 92, 246, 0.05));
  overflow: visible;
}

/* Content */
.welcome-content {
  position: relative;
  z-index: 3;
  animation: fadeInUp 0.8s ease-out;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.welcome-title {
  font-family: var(--font-family-secondary);
  font-size: clamp(1.75rem, 5vw, 4rem);
  font-weight: 800;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  background: linear-gradient(135deg, #dc2626, #2563eb, #8b5cf6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.welcome-subtitle {
  font-size: clamp(1rem, 3vw, 1.75rem);
  margin: 0 0 0.75rem 0;
  font-weight: 500;
  color: var(--text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.welcome-description {
  font-size: clamp(0.95rem, 2.5vw, 1.25rem);
  margin: 0 0 clamp(1.5rem, 3vw, 2rem) 0;
  line-height: 1.6;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  width: 100%;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  width: 100%;
  max-width: 280px;
  min-height: 52px;
  position: relative;
  overflow: hidden;
}

.cta-button svg {
  transition: transform 0.3s ease;
}

.cta-button:hover svg {
  transform: scale(1.1);
}

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

.cta-button:hover::before {
  left: 100%;
}

.cta-button.primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
}

.cta-button.primary:hover {
  background: linear-gradient(135deg, #b91c1c, #991b1b);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 32px rgba(220, 38, 38, 0.5);
}

.cta-button.secondary {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-color: rgba(37, 99, 235, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
}

.cta-button.secondary:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.5);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

/* ===========================================
   DYNAMIC CONTENT SECTIONS
   =========================================== */

/* Content Sections */
.content-section {
  margin-bottom: clamp(2rem, 5vw, 4rem);
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(1rem, 3vw, 2rem);
  gap: 0.5rem;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, #dc2626, #2563eb, #8b5cf6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  letter-spacing: -0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.view-all-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.view-all-link::after {
  content: '→';
  margin-left: 0.5rem;
  transition: margin-left 0.3s ease;
}

.view-all-link:hover {
  color: #1d4ed8;
}

.view-all-link:hover::after {
  margin-left: 0.75rem;
}

/* ===========================================
   SONGS GRID - Enhanced Cards
   =========================================== */

.songs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

@media (min-width: 640px) {
  .songs-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (min-width: 1024px) {
  .songs-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

.song-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  position: relative;
}

.song-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, transparent, rgba(220, 38, 38, 0.2), rgba(37, 99, 235, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.song-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.song-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

.song-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
  max-width: 100%;
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.7), rgba(37, 99, 235, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.song-card:hover .play-overlay {
  opacity: 1;
}

.play-btn,
.play-btn-small {
  background: rgba(255, 255, 255, 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;
  color: #dc2626;
  font-size: 1.25rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.play-btn-small {
  width: 40px;
  height: 40px;
  font-size: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.song-image-small:hover .play-btn-small {
  opacity: 1;
}

.play-btn:hover,
.play-btn-small:hover {
  background: white;
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.play-btn.loading i,
.play-btn-small.loading i {
  animation: spin 1s linear infinite;
}

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

  to {
    transform: rotate(360deg);
  }
}

.song-info {
  padding: 1.25rem;
}

.song-title {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.song-artist {
  color: var(--text-secondary);
  margin: 0 0 0.75rem 0;
  font-size: 0.9rem;
}

.song-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===========================================
   ARTIST SPOTLIGHT - Premium Card
   =========================================== */

.artist-spotlight {
  background: linear-gradient(135deg, #dc2626, #b91c1c, #991b1b);
  color: var(--white);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 24px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.3);
  position: relative;
  overflow: hidden;
}

.artist-spotlight::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  animation: spotlightPulse 8s ease-in-out infinite;
}

@keyframes spotlightPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.spotlight-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .spotlight-card {
    display: grid;
    grid-template-columns: 250px 1fr;
    text-align: left;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .spotlight-card {
    grid-template-columns: 300px 1fr;
  }
}

.spotlight-image {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

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

.spotlight-name {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 0.5rem 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.spotlight-hometown {
  font-size: 1.125rem;
  opacity: 0.9;
  margin: 0 0 0.5rem 0;
}

.breakthrough-song {
  font-size: 1rem;
  margin: 0 0 1rem 0;
  opacity: 0.85;
}

.spotlight-bio {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  opacity: 0.9;
}

.artist-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .artist-stats {
    justify-content: flex-start;
  }
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* ===========================================
   SONGS LIST - Enhanced
   =========================================== */

.songs-list {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.song-item {
  display: grid;
  grid-template-columns: 30px 50px 1fr auto;
  gap: 0.75rem;
  padding: 0.75rem;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background 0.2s ease;
}

@media (min-width: 640px) {
  .song-item {
    grid-template-columns: 40px 60px 1fr auto;
    padding: 1rem;
    gap: 1rem;
  }
}

.song-item:hover {
  background: rgba(220, 38, 38, 0.02);
}

.song-item:last-child {
  border-bottom: none;
}

.song-rank {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #dc2626, #2563eb);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.song-image-small {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.song-details h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  font-weight: 600;
}

.song-details p {
  margin: 0 0 0.25rem 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.song-category {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  display: inline-block;
}

.song-actions {
  text-align: right;
}

.download-count {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.download-btn {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: var(--white);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.2);
  text-decoration: none;
  display: inline-block;
}

.download-btn:hover {
  background: linear-gradient(135deg, #b91c1c, #991b1b);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* ===========================================
   TWO COLUMN LAYOUT
   =========================================== */

.two-column-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

@media (min-width: 1024px) {
  .two-column-layout {
    grid-template-columns: 2fr 1fr;
  }
}

/* ===========================================
   CATEGORIES GRID
   =========================================== */

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

@media (min-width: 640px) {
  .categories-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}

.category-card {
  background: linear-gradient(135deg, #ffffff, #f9fafb);
  padding: 1.5rem 1rem;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  color: var(--text-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(37, 99, 235, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.category-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.category-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  filter: grayscale(0.3);
  transition: filter 0.3s ease;
}

.category-card:hover .category-icon {
  filter: grayscale(0);
}

.category-name {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.category-count {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ===========================================
   FEATURED SONGS
   =========================================== */

.featured-songs {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.featured-song-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  align-items: center;
  transition: background 0.2s ease;
}

.featured-song-item:hover {
  background: rgba(220, 38, 38, 0.02);
}

.featured-song-item:last-child {
  border-bottom: none;
}

.release-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===========================================
   CHARTS
   =========================================== */

.chart-list {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.chart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  align-items: center;
  transition: background 0.2s ease;
}

.chart-item:hover {
  background: rgba(37, 99, 235, 0.02);
}

.chart-item:last-child {
  border-bottom: none;
}

.chart-position {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2563eb, #8b5cf6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 30px;
  text-align: center;
}

/* ===========================================
   EMERGING ARTISTS
   =========================================== */

.emerging-artists {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.artist-card-small {
  background: var(--white);
  padding: 1rem;
  border-radius: 16px;
  display: flex;
  gap: 1rem;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.artist-card-small:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.artist-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(220, 38, 38, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.artist-name {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  font-weight: 600;
}

.artist-hometown {
  margin: 0 0 0.25rem 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.song-count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===========================================
   SPONSORS
   =========================================== */

.sponsors-section {
  background: linear-gradient(135deg, #f9fafb, #f3f4f6);
  padding: 1.5rem;
  border-radius: 16px;
}

.sponsors-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sponsor-card {
  background: var(--white);
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sponsor-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.sponsor-card img {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
}

.sponsor-name {
  font-weight: 600;
  font-size: 0.875rem;
}

/* ===========================================
   NEWS & INTERVIEWS
   =========================================== */

.news-grid,
.interviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.news-card,
.interview-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.news-card:hover,
.interview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.news-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

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

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

.news-content,
.interview-content {
  padding: 1.5rem;
}

.news-title,
.interview-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  color: var(--text-primary);
  line-height: 1.4;
}

.interview-artist {
  color: #dc2626;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
}

.news-excerpt,
.interview-excerpt {
  color: var(--text-secondary);
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.news-meta,
.interview-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */

/* Tablet Styles */
@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }

  .welcome-section {
    padding: 5rem 0;
  }

  .welcome-title {
    font-size: 3rem;
  }

  .welcome-subtitle {
    font-size: 1.5rem;
  }

  .welcome-description {
    font-size: 1.125rem;
    max-width: 600px;
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }

  .cta-button {
    width: auto;
    min-width: 200px;
    padding: 1.125rem 2.5rem;
  }

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

/* Desktop Styles */
@media (min-width: 1024px) {
  .welcome-section {
    padding: 6rem 0;
  }

  .welcome-title {
    font-size: 4rem;
  }

  .welcome-subtitle {
    font-size: 1.75rem;
  }

  .welcome-description {
    font-size: 1.25rem;
  }

  .cta-button {
    font-size: 1.125rem;
    padding: 1.25rem 3rem;
  }

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

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .songs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .spotlight-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .spotlight-image {
    margin: 0 auto;
    max-width: 200px;
  }

  .spotlight-name {
    font-size: 2rem;
  }

  .two-column-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .song-item {
    grid-template-columns: 30px 50px 1fr;
    gap: 0.75rem;
  }

  .song-actions {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
    text-align: left;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .artist-stats {
    justify-content: center;
    gap: 2rem;
  }

  .news-grid,
  .interviews-grid {
    grid-template-columns: 1fr;
  }

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

  .artist-spotlight {
    padding: 2rem 1.5rem;
  }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .welcome-title {
    font-size: 1.75rem;
  }

  .welcome-subtitle {
    font-size: 1.125rem;
  }

  .welcome-description {
    font-size: 0.95rem;
  }

  .cta-button {
    font-size: 0.95rem;
    padding: 0.875rem 1.5rem;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================================
   UTILITY CLASSES
   =========================================== */

.status-card {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  margin: 1.5rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.success {
  border-left: 4px solid #10b981;
}

.error {
  border-left: 4px solid #dc2626;
}

.warning {
  border-left: 4px solid #f59e0b;
}

.info {
  border-left: 4px solid #2563eb;
}