.lyrics-section {
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.lyrics-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
}

.filter-mode-row {
    display: flex;
    flex-wrap: wrap;
}

.filter-options-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.lyrics-controls .control-group {
    flex: 1;
    min-width: 200px;
}

.lyrics-controls select,
.lyrics-controls input {
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.9);
    font-size: 1rem;
}

.lyrics-stats {
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(244, 211, 94, 0.2);
    border-radius: 8px;
    display: inline-block;
}

.songs-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.song-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 12px;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(255,255,255,0.15);
    display: grid;
    grid-template-columns: 2fr 2fr 1fr auto;
    gap: 0.5rem;
    align-items: center;
}

.song-header {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.song-header h3 {
    font-size: 1rem;
    color: var(--sand);
    margin: 0;
}

.album-name {
    font-size: 0.85rem;
    opacity: 0.7;
}

.drinks-mentioned {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.drink-badge {
    background: var(--coral);
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.no-drinks {
    color: rgba(255,255,255,0.5);
    font-style: italic;
    margin-bottom: 1rem;
}

.toggle-lyrics {
    background: var(--ocean-light);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    font-size: 0.9rem;
    white-space: nowrap;
}

.toggle-lyrics:hover {
    background: var(--ocean-mid);
}

.lyrics-content {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    line-height: 1.8;
    font-size: 0.9rem;
    max-height: 400px;
    overflow-y: auto;
}

.drink-highlight {
    background: var(--sand);
    color: var(--text-dark);
    padding: 0 0.3rem;
    border-radius: 3px;
}

.lyrics-detail {
    margin-top: 2rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}
