/* Общие стили для текстов песен */
.song-content p {
  margin: 0 0 15px 0;
  font-size: 1.1em;
}

.song-content h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
}

/* Адаптивность для текста песен */
@media (max-width: 480px) {
  .song-content {
    padding: 15px !important;
  }
  
  .song-content h1 {
    font-size: 1.5em;
  }
  
  .song-content p {
    font-size: 1em;
  }
}

/* Lyrics Page Specific Styles */
.lyrics-page .song-content {
  background: #2d2d2d;
  padding: 30px;
  border-radius: 15px;
  margin: 20px auto;
  max-width: 800px;
}

.lyrics-page h1 {
  color: white;
  border-bottom: 2px solid #4CAF50;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.song-part {
  margin-bottom: 30px;
  padding: 15px;
  background: #333;
  border-radius: 8px;
}

.song-part h3 {
  color: #4CAF50;
  margin-top: 0;
  margin-bottom: 10px;
}

.back-button {
  display: inline-block;
  width: auto;
  padding: 12px 35px;
  background: #4CAF50;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 1em;
  border: 2px solid #4CAF50;
  cursor: pointer;
  text-align: center;
  margin: 30px auto 0;
}

.back-button:hover {
  background: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
  border-color: #45a049;
}

@media (max-width: 768px) {
  .lyrics-page .song-content {
    margin: 10px;
    padding: 20px;
  }
  
  .song-part {
    margin-bottom: 20px;
  }
}