        .homepage-header {
            text-align: center;
            padding: 20px 10px;
            background-color: var(--card-bg-color, #fff);
            margin-bottom: 30px;
            border-radius: var(--border-radius-lg, 12px);
            box-shadow: var(--box-shadow-light, 0 2px 8px rgba(0,0,0,0.07));
            font-family: sans-serif;
        }
        .sitename {
            color: var(--primary-color, #3498db);
            margin-bottom: 5px;
            font-size: 25px;
            font-weight: 700;
            text-decoration: none;
        }
        .homepage-header p {
            font-size: 0.6em;
            color: var(--light-text-color, #555);
        }
        .meta-info a, .stars-info a, .song-credits a {
            color: inherit;
            text-decoration: none;
            border-bottom: 1px dotted #999;
        }
        .meta-info a:hover, .stars-info a:hover, .song-credits a:hover {
            color: var(--primary-color, #3498db);
            border-bottom: 1px solid var(--primary-color, #3498db);
        }

        /* Song List Styles */
        .song-list { list-style: none; padding: 0; }
        .song-item {
            display: flex;
            align-items: flex-start; /* Changed to flex-start for credits alignment */
            padding: 15px 12px;
            border-bottom: 1px solid #eee;
            background: #fff;
            margin-bottom: 5px;
            border-radius: 6px;
        }
        .song-left-col { display: flex; align-items: center; min-width: 50px; margin-right: 15px; margin-top: 5px; }
        .song-number { margin-left: 10px; font-weight: bold; color: #777; font-size: 0.9em; }
        
        .song-info-col { flex-grow: 1; display: flex; flex-direction: column; justify-content: center; min-width: 0; }
        
        /* H3 Styling for track */
        .song-title-row h3 { 
            margin: 0; 
            padding: 0; 
            font-weight: 600; 
            font-size: 1.05rem; 
            color: #333; 
            display: inline;
        }
        
        .song-duration { font-size: 0.8em; color: #888; background: #f0f0f0; padding: 1px 5px; border-radius: 3px; vertical-align: middle; margin-left: 8px;}
        
        .song-tags-row { font-size: 0.80em; color: #666; margin-top: 5px; }

        
        /* Singers & Lyrics */
        .song-credits { font-size: 0.9em; color: #555; margin-top: 6px; line-height: 1.4; }
        .credit-label { font-weight: 600; color: #444; font-size: 0.9em; }
        
        /* Download Text Link */
        .song-actions-col { 
            display: flex; 
            flex-direction: column; 
            align-items: flex-end; 
            margin-left: 15px; 
            min-width: 100px;
            gap: 5px;
        }
        .download-text-link {
            font-weight: bold;
            color: var(--primary-color, #3498db);
            text-decoration: none;
            font-size: 0.95em;
            padding: 4px 8px;
            border: 1px solid var(--primary-color, #3498db);
            border-radius: 4px;
            transition: all 0.2s;
        }
        .download-text-link:hover {
            background: var(--primary-color, #3498db);
            color: #fff;
        }
        .download-count {
            font-size: 0.8em;
            color: #888;
        }

        .album-intro-text {
            background: #fdfdfd;
            padding: 15px;
            border-left: 4px solid var(--primary-color, #3498db);
            margin: 20px 0;
            font-size: 0.95em;
            line-height: 1.6;
            color: #444;
            border-radius: 0 4px 4px 0;
        }

        @media (max-width: 600px) {
            .song-item { flex-wrap: wrap; }
            .song-actions-col { 
                margin-left: auto; 
                flex-direction: row; 
                margin-top: 10px; 
                align-items: center; 
                width: 100%; 
                justify-content: space-between;
                border-top: 1px dashed #eee;
                padding-top: 10px;
            }
        }
        h1 {
    font-size: 2.2em;
    text-align: center;
}
