/* =====================================================
   Theme2026 - DJJohal
   Part 1
   ===================================================== */

/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Reset */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:#0d1117;
    color:#ffffff;
    overflow-x:hidden;
    transition:.30s;

}

/* Theme Variables */

:root{

    --primary:#ff3b5c;
    --primary-hover:#ff1845;

    --dark:#0d1117;
    --dark-card:#161b22;
    --dark-card2:#1f2630;

    --light:#ffffff;
    --light-card:#f7f7f7;
    --light-card2:#ececec;

    --text:#ffffff;
    --text-light:#555;

    --radius:18px;

    --shadow:
    0 15px 40px rgba(0,0,0,.20);

}

/* Dark */

body[data-theme="dark"]{

    background:var(--dark);
    color:#fff;

}

/* Light */

body[data-theme="light"]{

    background:#f8f9fb;
    color:#222;

}

/* Links */

a{

    color:inherit;
    text-decoration:none;
    transition:.25s;

}

a:hover{

    color:var(--primary);

}

/* Images */

img{

    max-width:100%;
    display:block;

}

/* Buttons */

.btn{

    border-radius:14px;
    transition:.30s;

}

.btn-primary{

    background:var(--primary);
    border:none;

}

.btn-primary:hover{

    background:var(--primary-hover);

}

/* Glass Card */

.glass-card{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    box-shadow:var(--shadow);

}

body[data-theme="light"] .glass-card{

    background:#fff;

    border:1px solid #ddd;

}

/* Loader */

#loader{

    position:fixed;

    inset:0;

    background:#0d1117;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:99999;

}

body[data-theme="light"] #loader{

    background:#fff;

}

.loader-spinner{

    width:60px;

    height:60px;

    border-radius:50%;

    border:5px solid rgba(255,255,255,.2);

    border-top:5px solid var(--primary);

    animation:spin .8s linear infinite;

}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}

/* Container */

.container{

    max-width:1280px;

}

/* Section */

section{

    padding-top:25px;

    padding-bottom:25px;

}

/* Titles */

h1{

    font-size:44px;

    font-weight:700;

}

h2{

    font-size:32px;

    font-weight:700;

}

h3{

    font-size:24px;

    font-weight:600;

}

h4{

    font-size:20px;

    font-weight:600;

}

p{

    line-height:1.8;

    color:#b8bcc7;

}

body[data-theme="light"] p{

    color:#666;

}
/* =====================================================
   Header / Navbar
===================================================== */

.main-header{

    position:sticky;

    top:0;

    z-index:9999;

    backdrop-filter:blur(18px);

    background:rgba(13,17,23,.85);

    border-bottom:1px solid rgba(255,255,255,.08);

}

body[data-theme="light"] .main-header{

    background:rgba(255,255,255,.92);

    border-bottom:1px solid #ddd;

}

.navbar{

    min-height:74px;

    padding:10px 0;

}

.navbar-brand img{

    height:44px;

    transition:.30s;

}

.navbar-brand:hover img{

    transform:scale(1.05);

}

.navbar-nav{

    gap:8px;

}

/* ===== Navbar Buttons ===== */

.navbar-nav{

    gap:12px;

}

.nav-link{

    padding:10px 22px !important;

    border-radius:30px;

    background:#242424;

    color:#ffffff !important;

    font-weight:600;

    transition:.30s;

    border:1px solid transparent;

}

.nav-link:hover{

    background:#ff3b5c;

    color:#fff !important;

    transform:translateY(-2px);

}

.nav-link.active{

    background:#ff3b5c;

    color:#fff !important;

}

/* Light Mode */

body[data-theme="light"] .nav-link{

    background:#f1f1f1;

    color:#222 !important;

}

body[data-theme="light"] .nav-link:hover{

    background:#ff3b5c;

    color:#fff !important;

}

/* Theme Button */

.theme-btn,
#themeToggle{

    width:44px;

    height:44px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    transition:.30s;

}

.theme-btn:hover,
#themeToggle:hover{

    transform:rotate(180deg);

    background:var(--primary-hover);

}

/* Search */

.search-input{

    width:260px;

    height:44px;

    border:none;

    outline:none;

    border-radius:30px;

    padding:0 18px;

    background:#1d2330;

    color:#fff;

}

.search-input::placeholder{

    color:#aaa;

}

body[data-theme="light"] .search-input{

    background:#efefef;

    color:#222;

}

body[data-theme="light"] .search-input::placeholder{

    color:#777;

}

/* Mobile Search */

.mobile-search{

    display:none;

    padding:12px;

    background:#111;

}

body[data-theme="light"] .mobile-search{

    background:#fff;

}

/* Navbar Toggler */

.navbar-toggler{

    border:none;

    box-shadow:none !important;

}

.navbar-toggler:focus{

    box-shadow:none !important;

}

/* Dropdown */

.dropdown-menu{

    background:#181b23;

    border:none;

    border-radius:16px;

    padding:10px;

}

.dropdown-item{

    color:#fff;

    border-radius:10px;

    padding:10px 14px;

}

.dropdown-item:hover{

    background:rgba(255,255,255,.08);

}

body[data-theme="light"] .dropdown-menu{

    background:#fff;

    border:1px solid #ddd;

}

body[data-theme="light"] .dropdown-item{

    color:#222;

}

body[data-theme="light"] .dropdown-item:hover{

    background:#f2f2f2;

}

/* Hero Background */

.hero-section{

    position:relative;

    padding:70px 0;

    overflow:hidden;

}

.hero-section::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at top right,

    rgba(255,59,92,.18),

    transparent 45%),

    radial-gradient(circle at bottom left,

    rgba(0,180,255,.14),

    transparent 40%);

    pointer-events:none;

}

.hero-section .container{

    position:relative;

    z-index:2;

}

/* Album Cover */

.album-cover img{

    width:100%;

    max-width:320px;

    margin:auto;

    border-radius:24px;

    box-shadow:0 20px 60px rgba(0,0,0,.35);

    transition:.35s;

}

.album-cover img:hover{

    transform:scale(1.03);

}

/* Info Box */

.info-box{

    padding:16px;

    border-radius:16px;

    background:rgba(255,255,255,.05);

    margin-bottom:15px;

}

body[data-theme="light"] .info-box{

    background:#f3f3f3;

}
/* =====================================================
   Theme2026 - Player
===================================================== */

.player-section{
    margin:35px 0;
}

.player-card{

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:25px;

    backdrop-filter:blur(20px);

    box-shadow:0 15px 40px rgba(0,0,0,.25);

}

body[data-theme="light"] .player-card{

    background:#ffffff;

    border:1px solid #ddd;

}

.player-cover{

    width:85px;

    height:85px;

    border-radius:18px;

    overflow:hidden;

    flex-shrink:0;

}

.player-cover img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.player-meta{

    flex:1;

    padding-left:18px;

}

.player-title{

    font-size:24px;

    font-weight:700;

    margin-bottom:5px;

}

.player-artist{

    color:#9ca3af;

    font-size:15px;

}

body[data-theme="light"] .player-artist{

    color:#666;

}

/* Controls */

.player-controls{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    margin:25px 0;

}

.player-btn{

    width:52px;

    height:52px;

    border:none;

    border-radius:50%;

    background:#232b38;

    color:#fff;

    cursor:pointer;

    transition:.30s;

}

.player-btn:hover{

    transform:scale(1.08);

    background:var(--primary);

}

.player-btn.play{

    width:64px;

    height:64px;

    background:var(--primary);

    font-size:22px;

}

.player-btn.play:hover{

    background:var(--primary-hover);

}

/* Progress */

.player-progress{

    width:100%;

    margin-top:20px;

}

.progress{

    height:8px;

    border-radius:20px;

    background:#303846;

    overflow:hidden;

    cursor:pointer;

}

.progress-bar{

    width:0;

    height:100%;

    background:linear-gradient(90deg,var(--primary),#ff8ba7);

    border-radius:20px;

    transition:width .15s linear;

}

.time-row{

    display:flex;

    justify-content:space-between;

    font-size:13px;

    margin-top:8px;

    color:#9ca3af;

}

/* Volume */

.volume-box{

    display:flex;

    align-items:center;

    gap:12px;

    margin-top:18px;

}

.volume-box input[type=range]{

    width:100%;

}

/* Like */

.like-btn{

    width:46px;

    height:46px;

    border-radius:50%;

    border:none;

    background:#232b38;

    color:#fff;

    transition:.30s;

}

.like-btn:hover{

    background:#ff3b5c;

}

/* Sticky Mini Player */

.bottom-player{

    position:fixed;

    left:0;

    right:0;

    bottom:0;

    height:82px;

    background:rgba(12,15,20,.96);

    backdrop-filter:blur(18px);

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    padding:0 20px;

    z-index:9998;

}

body[data-theme="light"] .bottom-player{

    background:#fff;

    border-top:1px solid #ddd;

}

.bottom-player .song{

    flex:1;

    display:flex;

    align-items:center;

    gap:15px;

}

.bottom-player img{

    width:58px;

    height:58px;

    border-radius:12px;

}

.bottom-player .controls{

    display:flex;

    align-items:center;

    gap:15px;

}

/* Responsive */

@media(max-width:991px){

.player-meta{

padding-left:0;

margin-top:20px;

}

.player-controls{

gap:12px;

}

.bottom-player{

height:74px;

padding:10px;

}

.bottom-player img{

width:46px;

height:46px;

}

.player-title{

font-size:20px;

}

}
/* =====================================================
   Theme2026 - Download / Song Info
===================================================== */

/* Download Cards */

.download-card{

display:flex;
justify-content:space-between;
align-items:center;

padding:22px;

border-radius:20px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

transition:.30s;

color:#fff;

margin-bottom:18px;

}

.download-card:hover{

transform:translateY(-5px);

background:rgba(255,59,92,.15);

border-color:var(--primary);

}

.download-card h4{

margin:0;

font-size:22px;

font-weight:700;

}

.download-card p{

margin:5px 0 0;

font-size:14px;

color:#aaa;

}

.download-card i{

font-size:28px;

color:var(--primary);

}

/* Quality Colors */

.download-card.hd{

border-left:5px solid #00c853;

}

.download-card.normal{

border-left:5px solid #2196f3;

}

.download-card.low{

border-left:5px solid #ff9800;

}

/* Light */

body[data-theme="light"] .download-card{

background:#fff;

border:1px solid #ddd;

color:#222;

}

body[data-theme="light"] .download-card p{

color:#666;

}

/* Song Information */

.song-table{

width:100%;

border-collapse:collapse;

}

.song-table tr{

border-bottom:1px solid rgba(255,255,255,.08);

}

.song-table th{

width:220px;

padding:16px;

font-weight:600;

color:#fff;

}

.song-table td{

padding:16px;

color:#d5d5d5;

}

body[data-theme="light"] .song-table tr{

border-bottom:1px solid #eee;

}

body[data-theme="light"] .song-table th{

color:#222;

}

body[data-theme="light"] .song-table td{

color:#555;

}

/* Lyrics */

.lyrics-box{

padding:25px;

line-height:2;

font-size:16px;

border-radius:18px;

background:rgba(255,255,255,.05);

white-space:pre-line;

}

body[data-theme="light"] .lyrics-box{

background:#f3f3f3;

color:#333;

}

/* Description */

.song-description{

line-height:1.9;

font-size:16px;

color:#c7c7c7;

}

body[data-theme="light"] .song-description{

color:#555;

}

/* Tags */

.tag-list{

display:flex;

flex-wrap:wrap;

gap:12px;

}

.tag{

padding:10px 18px;

border-radius:30px;

background:#202736;

font-size:14px;

transition:.30s;

}

.tag:hover{

background:var(--primary);

color:#fff;

}

body[data-theme="light"] .tag{

background:#ececec;

color:#333;

}

/* Share */

.share-buttons{

display:flex;

flex-wrap:wrap;

gap:12px;

}

.share-buttons a,

.share-buttons button{

height:46px;

padding:0 22px;

border:none;

border-radius:14px;

display:flex;

align-items:center;

justify-content:center;

gap:10px;

background:#202736;

color:#fff;

transition:.30s;

}

.share-buttons a:hover,

.share-buttons button:hover{

background:var(--primary);

transform:translateY(-3px);

}

body[data-theme="light"] .share-buttons a,

body[data-theme="light"] .share-buttons button{

background:#ececec;

color:#222;

}

/* Responsive */

@media(max-width:768px){

.download-card{

padding:18px;

}

.download-card h4{

font-size:18px;

}

.song-table th{

width:130px;

font-size:14px;

}

.song-table td{

font-size:14px;

}

.lyrics-box{

padding:18px;

font-size:15px;

}

}
/* =====================================================
   Theme2026 - Part 5
   Related Songs / Footer / Utilities
===================================================== */

/* Related Songs */

.related-grid{

display:grid;

grid-template-columns:repeat(auto-fill,minmax(240px,1fr));

gap:20px;

margin-top:25px;

}

.related-card{

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

border-radius:20px;

overflow:hidden;

transition:.30s;

}

.related-card:hover{

transform:translateY(-6px);

border-color:var(--primary);

box-shadow:0 15px 35px rgba(0,0,0,.25);

}

.related-card img{

width:100%;

height:220px;

object-fit:cover;

}

.related-body{

padding:18px;

}

.related-title{

font-size:18px;

font-weight:600;

margin-bottom:6px;

}

.related-artist{

font-size:14px;

color:#aaa;

}

/* Album Track List */

.track-list{

display:flex;

flex-direction:column;

gap:10px;

}

.track-item{

display:flex;

align-items:center;

justify-content:space-between;

padding:15px 18px;

border-radius:16px;

background:rgba(255,255,255,.05);

transition:.25s;

}

.track-item:hover{

background:rgba(255,255,255,.08);

}

.track-left{

display:flex;

align-items:center;

gap:15px;

}

.track-number{

width:36px;

height:36px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:#222b36;

font-weight:600;

}

.track-name{

font-weight:600;

}

.track-artist{

font-size:13px;

color:#999;

}

/* Footer */

.footer{

margin-top:60px;

padding:50px 0;

background:#10151d;

border-top:1px solid rgba(255,255,255,.08);

}

body[data-theme="light"] .footer{

background:#fff;

border-top:1px solid #ddd;

}

.footer h4,
.footer h5{

margin-bottom:18px;

font-weight:700;

}

.footer ul{

list-style:none;

padding:0;

margin:0;

}

.footer li{

margin-bottom:10px;

}

.footer a{

color:#bbb;

transition:.25s;

}

.footer a:hover{

color:var(--primary);

}

body[data-theme="light"] .footer a{

color:#555;

}

.social-links{

display:flex;

gap:15px;

}

.social-links a{

width:44px;

height:44px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:#202736;

font-size:18px;

}

.social-links a:hover{

background:var(--primary);

color:#fff;

}

/* Scroll Top */

.scroll-top{

position:fixed;

right:25px;

bottom:25px;

width:52px;

height:52px;

border:none;

border-radius:50%;

background:var(--primary);

color:#fff;

display:flex;

align-items:center;

justify-content:center;

opacity:0;

visibility:hidden;

transition:.30s;

z-index:9999;

cursor:pointer;

}

.scroll-top.show{

opacity:1;

visibility:visible;

}

.scroll-top:hover{

transform:translateY(-4px);

background:var(--primary-hover);

}

/* Utilities */

.text-muted{

color:#9ca3af !important;

}

.rounded-xl{

border-radius:22px;

}

.shadow-soft{

box-shadow:0 15px 40px rgba(0,0,0,.18);

}

/* Mobile */

@media(max-width:992px){

.related-grid{

grid-template-columns:repeat(auto-fill,minmax(180px,1fr));

}

.related-card img{

height:180px;

}

.footer{

text-align:center;

}

.social-links{

justify-content:center;

}

}

@media(max-width:576px){

.track-item{

padding:12px;

}

.track-name{

font-size:15px;

}

.related-card img{

height:150px;

}

.scroll-top{

width:46px;

height:46px;

right:15px;

bottom:15px;

}

}
/* =====================================================
   Theme2026 - Part 6 (Final)
===================================================== */

/* Animations */

.fade-up{

animation:fadeUp .5s ease both;

}

.fade-in{

animation:fadeIn .5s ease both;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(30px);

}

to{

opacity:1;

transform:translateY(0);

}

}

@keyframes fadeIn{

from{

opacity:0;

}

to{

opacity:1;

}

}

/* Badge */

.badge{

padding:8px 14px;

font-weight:600;

border-radius:30px;

}

/* Alerts */

.alert{

border:none;

border-radius:16px;

padding:18px;

}

/* Tables */

.table{

color:inherit;

margin-bottom:0;

}

.table th{

font-weight:600;

border-bottom:1px solid rgba(255,255,255,.08);

}

.table td{

border-bottom:1px solid rgba(255,255,255,.05);

}

body[data-theme="light"] .table th,

body[data-theme="light"] .table td{

border-color:#e5e5e5;

}

/* Forms */

.form-control,

.form-select{

border-radius:14px;

border:1px solid rgba(255,255,255,.08);

background:#202736;

color:#fff;

}

.form-control:focus,

.form-select:focus{

box-shadow:none;

border-color:var(--primary);

}

body[data-theme="light"] .form-control,

body[data-theme="light"] .form-select{

background:#fff;

color:#222;

border:1px solid #ddd;

}

/* Pagination */

.pagination{

gap:10px;

}

.page-link{

border:none;

border-radius:12px;

padding:10px 16px;

background:#202736;

color:#fff;

}

.page-link:hover{

background:var(--primary);

color:#fff;

}

body[data-theme="light"] .page-link{

background:#efefef;

color:#222;

}

/* Selection */

::selection{

background:var(--primary);

color:#fff;

}

/* Scrollbar */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#111;

}

::-webkit-scrollbar-thumb{

background:var(--primary);

border-radius:20px;

}

body[data-theme="light"] ::-webkit-scrollbar-track{

background:#f2f2f2;

}

/* Footer spacing for sticky player */

body{

padding-bottom:90px;

}

/* Print */

@media print{

.main-header,

.footer,

.bottom-player,

.scroll-top,

#loader{

display:none !important;

}

body{

background:#fff;

color:#000;

padding:0;

}

}

/* Small Mobile */

@media(max-width:480px){

h1{

font-size:28px;

}

h2{

font-size:24px;

}

h3{

font-size:20px;

}

.container{

padding-left:14px;

padding-right:14px;

}

.player-btn{

width:46px;

height:46px;

}

.player-btn.play{

width:56px;

height:56px;

}

.download-card{

padding:14px;

}

}

/* Utility */

.hide{

display:none !important;

}

.text-primary{

color:var(--primary)!important;

}

.bg-primary{

background:var(--primary)!important;

border:none;

}

.rounded-20{

border-radius:20px;

}

.shadow-theme{

box-shadow:0 15px 45px rgba(0,0,0,.25);

}
/* ===== Navbar Buttons ===== */

.navbar-nav{

    gap:12px;

}

.nav-link{

    padding:10px 22px !important;

    border-radius:30px;

    background:#242424;

    color:#ffffff !important;

    font-weight:600;

    transition:.30s;

    border:1px solid transparent;

}

.nav-link:hover{

    background:#ff3b5c;

    color:#fff !important;

    transform:translateY(-2px);

}

.nav-link.active{

    background:#ff3b5c;

    color:#fff !important;

}

/* Light Mode */

body[data-theme="light"] .nav-link{

    background:#f1f1f1;

    color:#222 !important;

}

body[data-theme="light"] .nav-link:hover{

    background:#ff3b5c;

    color:#fff !important;

}
/* ===========================
   Premium Navbar
=========================== */

.main-header{
    position:sticky;
    top:0;
    z-index:9999;
    background:#000 !important;
    border-bottom:1px solid #222;
}

.navbar{
    background:#000 !important;
    min-height:72px;
}

.navbar-nav{
    gap:12px;
}

.theme-btn{

    width:46px;
    height:46px;

    border:none;

    border-radius:50%;

    background:#1d1d1d;

    color:#fff;

}

.theme-btn:hover{

    background:#ff003c;

}

.search-input{

    width:260px;

    background:#1d1d1d;

    color:#fff;

    border:none;

    border-radius:30px;

}

.search-input::placeholder{

    color:#aaa;

}

.search-input:focus{

    background:#2a2a2a;

    color:#fff;

    box-shadow:none;

}
.nav-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 20px;
    background:#1c1c1c;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    border:1px solid #333;
    transition:.3s;
}

.nav-btn:hover{
    background:#ff003c;
    color:#fff;
}

.nav-btn.active{
    background:#ff003c;
}
.player-box{

    max-width:700px;
    margin:auto;

}

.player-box #playSong{

    width:60px;
    height:60px;
    border-radius:50%;
    font-size:22px;

}

.player-box #muteBtn,
.player-box #speedBtn{

    width:48px;
    height:48px;
    border-radius:50%;

}

.player-box input[type=range]{

    cursor:pointer;

}
.player-box{
    max-width:700px;
    margin:auto;
}

#playSong{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
}

#progressBar{
    margin-top:20px;
}

#volumeSlider{
    flex:1;
}

#muteBtn,
#speedBtn{
    min-width:48px;
    height:48px;
}
.album-card{
    background:#181818;
    border-radius:18px;
    overflow:hidden;
    transition:.3s;
}

.album-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.35);
}

.album-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.3s;
}

.album-card:hover img{
    transform:scale(1.05);
}

.album-title{
    font-size:17px;
    font-weight:700;
    color:#fff;
}

.album-artist{
    color:#aaa;
    font-size:14px;
}
.artist-link{
    color:#adb5bd;
    text-decoration:none;
    transition:.25s;
}

.artist-link:hover{
    color:#ff3b5c;
    text-decoration:underline;
}
.custom-breadcrumb{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:12px;
    padding:12px 18px;
    margin-bottom:25px;
}

.custom-breadcrumb .breadcrumb-item a{
    color:#9ecbff;
    text-decoration:none;
}

.custom-breadcrumb .breadcrumb-item a:hover{
    color:#fff;
}

.custom-breadcrumb .breadcrumb-item.active{
    color:#ffffff;
}

.custom-breadcrumb-item + .breadcrumb-item::before{
    color:#888;
}
.breadcrumb-item + .breadcrumb-item::before{
    color:#888;
}
.info-box a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.info-box a:hover{
    color:#ff4d6d;
}
.info-box a{
    color:#212529 !important;
    font-weight:600;
    text-decoration:none;
}

.dark-theme .info-box a{
    color:#ffffff !important;
}
.navbar-toggler{
    border-color:#ff3d5a;
}

.navbar-toggler i,
.navbar-toggler svg{
    color:#ffffff !important;
    font-size:24px;
}
.navbar-toggler-icon{
    filter:invert(1);
}
#muteBtn{
    color:#ff3d5a;
    border-color:#ff3d5a;
    background:#fff;
}

#muteBtn:hover{
    background:#ff3d5a;
    color:#fff;
}
.btn-outline-light{
    color:#212529 !important;
    border-color:#d0d0d0;
    background:#fff;
}

.btn-outline-light:hover{
    color:#fff !important;
    background:#ff3d5a;
    border-color:#ff3d5a;
}
.song-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    transition:.25s;
}

.song-card:hover{
    background:rgba(255,255,255,.09);
    transform:translateY(-2px);
}

.song-card img{
    object-fit:cover;
}

.song-card h5{
    font-size:18px;
    margin:0;
}