body {
    transition: background-color 0.3s, color 0.3s;
}
.banner {
    height: 300px;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
    border-radius: 8px;
}
.card-container {
    padding: 10px 0;
}
.music-card {
    transition: all 0.3s;
}
.music-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.album-cover {
    width: 100%;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 20px 0;
    margin-top: 40px;
}
.banner-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
}
.banner-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}
.banner-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}
.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: none;
}
.banner-container:hover .banner-arrow {
    display: block;
}
.banner-arrow-left {
    left: 20px;
}
.banner-arrow-right {
    right: 20px;
}
.banner-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}
.banner-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}
.banner-indicator.active {
    background-color: white;
}
.player-bar {
    position: fixed;
    bottom: 13px;
    left: 13px;
    right: 13px;
    height: 70px;
    background-color: white;
    z-index: 1000;
    transition: transform 0.3s;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 10px;
}
.player-bar .mdui-container {
    width: 100%;
    display: flex;
    align-items: center;
}
@media (max-width: 768px) {
    .player-bar {
        height: 60px;
        padding: 0 5px;
    }
    .player-info {
        min-width: 200px;
    }
    .player-info .mdui-text-truncate:nth-child(1) {
        max-width: 90px !important;
    }
    .player-info .mdui-text-truncate:nth-child(3) {
        max-width: 80px !important;
    }
    .volume-control {
        min-width: 120px;
    }
    .mdui-slider {
        width: 50px !important;
    }
}
@media (max-width: 480px) {
    .player-bar {
        height: 50px;
        padding: 0 5px;
    }
    .player-info {
        min-width: 160px;
    }
    .player-info .mdui-text-truncate:nth-child(1) {
        max-width: 70px !important;
    }
    .player-info .mdui-text-truncate:nth-child(3) {
        max-width: 60px !important;
    }
    .volume-control {
        min-width: 100px;
    }
    .player-info .mdui-img-fluid {
        width: 36px;
        height: 36px;
    }
    .mdui-slider {
        width: 30px !important;
    }
}
main {
    margin-bottom: 70px !important;
}
