:root {
    --primary-color: #1a237e;
    --secondary-color: #3949ab;
    --accent-color: #7986cb;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
}

#wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.site-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.song-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.song-card:hover {
    transform: translateY(-5px);
}

.song-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.song-description {
    color: #666;
    font-size: 1.1rem;
    margin: 15px 0;
}

.lyrics {
    font-style: italic;
    color: #555;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
}

.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-play, .btn-download {
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
}

.btn-play {
    background-color: var(--primary-color);
}

.btn-download {
    background-color: var(--secondary-color);
}

.btn-play:hover, .btn-download:hover {
    transform: translateY(-2px);
    color: white;
    filter: brightness(1.2);
}

.copyright-notice {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.quote-container {
    text-align: center;
    font-style: italic;
    margin: 40px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.quote-author {
    color: var(--primary-color);
    margin-top: 10px;
    font-size: 0.9rem;
} 