body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #2c3e50;
}

.container {
  max-width: 1400px;
}

header {
  background: linear-gradient(45deg, #3498db, #2980b9);
  color: white;
  padding: 3rem 0;
  border-radius: 0 0 2rem 2rem;
  margin-bottom: 3rem !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.song-card {
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
  border: none;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.song-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  background: linear-gradient(45deg, #f8f9fa, #ffffff);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  color: #2c3e50;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.song-preview {
  height: 180px;
  overflow: hidden;
  position: relative;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.song-preview::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, #fff);
}

.emoji-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Modal Styling */
.modal-content {
  border-radius: 1rem;
  border: none;
}

.modal-header {
  background: linear-gradient(45deg, #3498db, #2980b9);
  color: white;
  border-radius: 1rem 1rem 0 0;
  padding: 1.5rem;
}

.modal-body {
  padding: 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.btn-close {
  filter: brightness(0) invert(1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  header {
    border-radius: 0;
    padding: 2rem 0;
  }

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

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

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: #3498db;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2980b9;
}
