body {
    font-family: Arial, sans-serif;
    background: black;
    margin: 0;
}

/* ===== MENU ===== */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #000000;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo a {
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
}

.logo img {
    height: 38px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.logo img:hover {
    transform: scale(1.04);
    opacity: 0.95;
}

.menu {
    position: relative;
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
}

.menu-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 150px;
}

.menu-dropdown a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: black;
}

.menu:hover .menu-dropdown {
    display: block;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.account {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.account-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    min-width: 150px;
}

.account-dropdown a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: black;
}

.account:hover .account-dropdown {
    display: block;
}

/* ===== FEED ===== */
.container {
    max-width: 800px;
    margin: 20px auto;
}

.artist {
    background: #ffffff;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
}

.artist-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: black;
}

.artist-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.song-list {
    margin-left: 60px;
    margin-top: 10px;
}

.song-list a {
    display: block;
    margin: 6px 0;
    text-decoration: none;
}
.topbar-right a{
    color: white;
}

.menu button{
    color: white;
}

/* ===== FOOTER ===== */
.footer {
    background: #0f0f0f;
    color: #bbb;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    height: 36px;
    width: auto;
}

.footer-left p {
    font-size: 13px;
    margin: 0;
    color: #777;
}

.footer-links {
    font-size: 14px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #f66e4c;
}

.footer-links span {
    margin: 0 6px;
    color: #444;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-left {
        justify-content: center;
    }
}
