body {
    background-color: #121212;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
}
header {
    background: #000;
    color: #fff;
    padding: 0.1rem 0;
}

header .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    min-height: 60px;
}

header a.logo-link {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
}

header img.logo,
header a.logo-link img {
    height: 40px;
    width: 40px;
    object-fit: contain;
    margin-right: 0.5rem;
}

header nav a {
    color: #f3e8ff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 5px;
    margin: 0.25rem 0.3rem;
    transition: all 0.3s ease;
}

header nav a:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #e9d8fd;
    text-decoration: underline;
}

/* ===== MAIN ===== */
main.container {
    max-width: 1280px;
    margin: 0.5rem auto;
    background: white;
    color: #000;
    padding: 0.5rem;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgb(0 0 0 / 0.1);
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    padding: 1rem;
    color: #555;
    font-size: 0.9rem;
    background: #e9e7f7;
}

/* ===== TEXT & COMPONENTS ===== */
.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000;
}

.list-group-item {
    font-size: 1rem;
    line-height: 1.6;
}

.list-group-item a {
    color: #212529;
    display: block;
    width: 100%;
    padding: 0.5rem 0;
}

.list-group-item a:hover {
    text-decoration: underline;
    color: #0d6efd;
}

.album-page-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* ===== SONG PAGE ===== */
#page-container {
    min-height: 1200px;
}

.cover-image-container {
    width: 250px;
    height: 250px;
    overflow: hidden;
}

.cover-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.song-title {
    font-size: 1.4rem;
    font-weight: 400;
}

.song-title-link {
    color: #00ffd9;
    text-decoration: none;
}

.song-title-link:hover {
    color: #00e6b8;
    text-decoration: underline;
}

.song-artist,
.song-meta {
    color: #ccc;
    font-size: 0.85rem;
}

.bold-song-title {
    font-weight: 700;
    color: #03674E !important;
}

/* ===== CARDS ===== */
.song-card {
    background: #1e1e2f;
    color: #fff;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.song-card img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 12px;
}

/* ===== TABLE ===== */
.table thead th {
    border-bottom: 2px solid #444;
    font-weight: 600;
    font-size: 1rem;
    color: #00ffb3;
}

.table a {
    color: #00ffd9;
    font-weight: 600;
}

.table a:hover {
    color: #00e6b8;
}

/* ===== LINKS ===== */
.link-lightgreen {
    color: #90ee90 !important;
    text-decoration: none;
}

.link-lightgreen:hover {
    color: #4caf50 !important;
}

.link-lightgreen:visited {
    color: #9DB4A6 !important;
}

.more-songs-list a,
.category-songs-table a {
    color: darkgreen;
    font-weight: 600;
}

.more-songs-list a:hover,
.category-songs-table a:hover {
    color: forestgreen;
    text-decoration: underline;
}

/* ===== BUTTON ===== */
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #135c03;
    --bs-btn-border-color: #2a500c;
    --bs-btn-hover-bg: #5c9324;
}

.btn:hover {
    background-color: #558f1c;
    border-color: #238b06;
}

/* ===== SEARCH ===== */
.search-wrapper {
    max-width: 80%;
    margin: 0 auto;
}

#songSearch {
    width: 100%;
}

#searchResults .list-group-item img {
    border-radius: 4px;
}

.section-heading {
    color: #333;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
}
.section-subheading {
    color: #333;
    font-size: 1.40rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
}

#faqAccordion {
    min-height: 180px;
}

/* ===== AUDIO ===== */
audio {
    border-radius: 6px;
    background: #f8f9fa;
    padding: 0.25rem;
}

/* ===== SPACING ===== */
.my-4 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767.98px) {
    main.container {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 1rem !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
}

@media (max-width: 576px) {
    header .container {
        justify-content: center;
    }

    header nav {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    header nav a {
        margin: 0.5rem;
    }

    .btn-lg {
        font-size: 1rem;
        padding: 0.6rem 1.25rem;
    }
}