* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background-image: url("bgimg1.jpg");
    font-family:Arial, Helvetica, sans-serif;
}
.sidebar{
    width: 300px;
    background-image: url("bgimg1.jpg");
    position: fixed;
    top: 0;
    left: 0;
    bottom:0;
    padding: 10px;
}
.sidebar-nav {
    background-color: rgb(6, 6, 36);
    border-radius: 5px;
    padding: 20px 10px;
    margin-bottom: 10px;
}

.sidebar-nav .logo {
    display: flex;
    align-items: center;
}

.sidebar-nav .logo img {
    width: 50px;
}

.sidebar-nav .logo-text {
    color: white;
    margin-left: 7px;
}

.sidebar-nav .logo-text h1 {
    padding: 0;
    margin: 0;
    font-family:cursive;
    color: violet;
    font-weight: bolder;
}



.sidebar-nav ul{
    margin-top: 20px;
    list-style: none;
    
}
.sidebar-nav ul li{
    padding: 10px 20px;
    
}
.sidebar-nav ul li a:hover{
    color: white;
}
.sidebar-nav ul li a{
    text-decoration: none;
    color: rgb(207, 207, 207);
    font-size: 16px;
    font-weight: 600;
}
.sidebar-nav ul li i a i{
   font-size: 20px;
   margin-right: 10px;
}
.library::after{
    content: '+';
    float: right;
    text-align: center;
    border-radius: 30%;
    font-size: 15px;
}
.create-playlist{
        background:  rgb(147, 61, 147);
        padding: 30px 15px;
        border-radius: 10px;
        margin-bottom:10px;
}
.sidebar-scroll{
    height: 120px;
    overflow-y: auto;

}
.sidebar-scroll::-webkit-scrollbar{
    background: transparent;
}
.sidebar-scroll::-webkit-scrollbar-thumb{
    background: transparent;
    width: 10px;
}
.sidebar-scroll:hover::-webkit-scrollbar-thumb{
    background: rgb(145, 94, 145);
    width: 5px;
}
.create-playlist h1{
    color: aliceblue;
    font-size: 15px;
}
.create-playlist p{
    color: aliceblue;
    font-size: 12px;
    margin: 12px 0;
}
.create-playlist button{
    padding: 8px 20px;
    border: 0;
    outline: 0;
    border-radius: 20px;
    font-weight: 600;
}
.privacy ul li a{
    text-decoration: none;
    color: rgb(225, 217, 217) ;
    font-size: 12px;
    font-weight: 600;
    margin: 0 7px;
}
.privacy ul li a:hover{
    text-decoration: underline;
    color: rgb(209, 190, 190) ;
}
.privacy ul{
    list-style: none;
    margin-top: 20px;
}
.privacy ul li{
    padding: 0 12px;
    padding-bottom: 10px;
}

.eng-btn{
    padding: 20px 30px;
}
.eng-btn button{
    padding: 10px 30px;
    background: transparent;
    border: 0;
    outline: none;
    color: white;
    border: 1px solid grey;
    border-radius: 20px;
    margin:20px 0;
}
.eng-btn button:hover{
        padding: 11px 31px;
        border:1px solid white;
}

.main-section {
    margin-left: 300px;
    background: rgb(6, 6, 36);
    height: 630vh;
    overflow: auto;
    
}
.main-section .top-nav {
    padding: 10px 20px;
    background: rgb(18, 18, 43);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-section .top-nav .prev-btn {
    display: flex;
    align-items: center;
}

.main-section .top-nav .prev-btn button {
    background: transparent;
    border: 0;
    outline: 0;
}

.main-section .top-nav .prev-btn button i {
    color: rgb(207, 207, 207);
    font-size: 15px;
    margin-right: 10px;
}

.main-section .top-nav .login-btn {
    display: flex;
    align-items: center;
    gap: 30px; /* Adjust the gap as needed */
}

.top-nav .login-btn .sign-up,
.top-nav .login-btn .login,
.top-nav .login-btn .bell {
    color: white;
    font-size: 13px;
    font-weight: bolder;
    border-radius: 50px;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: rgb(54, 54, 94);
    margin-right: 0; /* Remove margin-right since gap is used */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px; /* Adjust padding for desired look */
    white-space: nowrap; /* Ensure text does not wrap */
}

.top-nav .login-btn .sign-up:hover,
.top-nav .login-btn .login:hover,
.top-nav .login-btn .bell:hover {
    background: white;
    color: black;
    font-weight: bolder;
}

.top-nav .login-btn .bell {
    width: 30px; /* Adjust width for desired circular shape */
    height: 30px; /* Adjust height for desired circular shape */
    padding: 8px 15px; /* Remove padding to maintain circular shape */
}

.top-nav .login-btn .bell i {
    font-size: 15px; /* Adjust icon size as needed */
}

    

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    padding-top: 60px;
}

/* Modal Content/Box */
.modal-content {
    background-color: rgb(6, 6, 36);
    margin: 5% auto; /* 5% from the top and centered */
    padding: 20px;
    border: 1px solid  rgb(6, 6, 36);
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 400px;
    border-radius: 1px;
    color:white;
}

/* The Close Button */
.close {
    /* Position it in the top right corner outside of the modal */
    position: absolute;
    right: 25px;
    top: 0;
    color: white;
    font-size: 50px;
    font-weight: bolder;
}

/* Close button on hover */
.close:hover,
.close:focus {
    color: red;
    cursor: pointer;
}

/* Add Zoom Animation */
.animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s;
}

@-webkit-keyframes animatezoom {
    from {-webkit-transform: scale(0)}
    to {-webkit-transform: scale(1)}
}

@keyframes animatezoom {
    from {transform: scale(0)}
    to {transform: scale(1)}
}

/* Container for inputs and buttons */
.container {
    padding: 16px;
}

/* Input fields */
input[type=text],
input[type=password] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius: 5px;
}

/* Buttons */
button {
    background-color:violet;
    color: black;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
    font-weight: bolder;
}

button:hover {
    opacity: 0.8;
}

/* Cancel button */
.cancelbtn {
    padding: 20px 38px;
    background-color: red;
    border-radius: 5px;
    width: 100%;
    border: none;
    cursor: pointer;
}

.cancelbtn:hover {
    opacity: 0.8;
}

/* "Remember me" checkbox */
.container label input[type=checkbox] {
    margin-right: 10px;
}

/* "Forgot password" link */
span.psw {
    float: right;
    padding-top: 16px;
}

span.psw a {
    color: white;
    text-decoration: none;
}


.slideshow-container {
    max-width: 1000px;
    margin: 20px auto;
    position: relative;
}

.mySlides {
    display: none;
    position: relative;
    text-align: center;
    transition: opacity 0.6s ease;
}

input[name="slider"] {
    display: none;
}

.mySlides img {
    width: 100%;
    height: 0%;
}

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

input#slide1:checked ~ .mySlides:nth-of-type(1),
input#slide2:checked ~ .mySlides:nth-of-type(2),
input#slide3:checked ~ .mySlides:nth-of-type(3),
input#slide4:checked ~ .mySlides:nth-of-type(4) {
    display: block;
}

input#slide1:checked ~ .dots label[for="slide1"],
input#slide2:checked ~ .dots label[for="slide2"],
input#slide3:checked ~ .dots label[for="slide3"],
input#slide4:checked ~ .dots label[for="slide4"]{
    background-color: blueviolet;
}


.nav3{
    width: 100;
    height: 10vh;
    background: rgb(6, 6, 36);
    margin-right: 60%;
}
.navrap3{
    width: 90%;
    margin: auto;
}
.menu5{
    float: left;
}
.menu5 ul{
    padding: 3px; 
    list-style: none;
}
.menu5 ul li{
    display: inline-block;
    background-color: rgb(31, 31, 60);
    border-radius: 5%;
    margin: 5px;
}
.menu5 ul li a{
    color: white;
    text-decoration: none;
    padding: 10px;
    font-size: 14px;
    display: block;
    font-weight: bolder;
}
.menu5 ul li a:hover{
       color: white;
       background-color:  rgb(54, 54, 113);
       border-radius: 5%;
}

.container1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: rgb(6, 6, 36);
    padding: 10px;
    border-radius: 5px;
}

.box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 4px;
    padding: 1px 10px;
    border-radius: 7px;
    background: rgb(18, 18, 43);
    width: calc(50% - 20px);
    box-sizing: border-box;
    height: 42px;
    position: relative;
    transition: background-color 0.3s ease;
}

.box:hover {
    background-color: rgb(28, 28, 63);
}

.left1 {
    margin-right: 15px;
}

.left1 img {
    width: 40px;
    height: 40px;
    padding: 0px;
    margin-top: 6px;
    border-radius: 2px;
}

.right1 {
    font-family: sans-serif;
    color: white;
    font-size: 14px;
    font-weight: bold;
    flex-grow: 1;
}

.play {
    font-size: 18px;
    color: black;
    background-color: blueviolet;
    border-radius: 50%;
    cursor: pointer;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.box:hover .play {
    opacity: 1;
}


.artist-name {
    padding: 30px 10px;
}

.artist-name h1 {
    color: white;
    font-size: 22px;
    margin-bottom: 20px;
}

.artist-name .card1 {
    display: flex;
    gap: 20px;
}

.artist-name .card1 .item1 {
    cursor: pointer;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    width: 170px;
    height: 170px; 
}


.artist-name .card1 .item1 .container {
    position: relative;
    width: 100%;
    height: 100%;
}

.artist-name .card1 .item1 .image {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.artist-name .card1 .item1:hover .image {
    transform: scale(1.2); /* Zoom effect */
}

.artist-name .card1 .item1 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: blueviolet;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-name .card1 .item1:hover .overlay {
    opacity: 1;
}

.artist-name .card1 .item1 .text {
    color: white;
    font-size: 16px;
    text-align: center;
    font-weight: bolder;
    padding-bottom: 1px;
}

.groove-playlist {
    padding: 30px 10px;
}

.groove-playlist h2 {
    color: white;
    font-size: 22px;
    margin-bottom: 20px;
}

.groove-playlist .card {
    display: flex;
    gap: 13px;
}

.groove-playlist .card .item {
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 6px;
    padding: 6px;
    position: relative;
    overflow: hidden; /* Ensure the image stays within bounds */
}

.groove-playlist .card .item:hover {
    background-color: blueviolet;
}

.groove-playlist .card .item img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 10px;
    transition: transform 0.3s ease; 
}

.groove-playlist .card .item:hover img {
    transform: scale(1.1); 
}

.groove-playlist .item h3 {
    color: white;
    font-size: 16px;
    font-weight: lighter;
}

.groove-playlist .item p {
    color: white;
    font-size: 13px;
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.groove-playlist .item:hover p {
    opacity: 1;
}

.groove-playlist .play-btn {
    position: relative;
    height: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.groove-playlist .card .item:hover .play-btn {
    opacity: 1;
    height: auto;
}

.groove-playlist .play-btn span audio {
    background: blueviolet;
    padding: 5px 10px;
    border-radius: 10%;
    width: 145px; 
    height: 30px; 
}

.groove-playlist .play-btn {
    text-align: center; 
    margin-top: 0px; 
}



.groove-gen {
    padding: 30px 10px;

}

.groove-gen h5 {
    color: white;
    font-size: 22px;
    margin-bottom: 40px;
}

.groove-gen .card1 {
    display: flex;
    gap: 13px;
}

.groove-gen .card1 .item1 {
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 6px;
    padding: 6px;
    position: relative;
    overflow: hidden; /* Ensure the image stays within bounds */
}

.groove-gen .card1 .item1:hover {
    background-color: blueviolet;
}

.groove-gen .card1 .item1 img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 10px;
    transition: transform 0.3s ease; 
}

.groove-gen .card1 .item1:hover img {
    transform: scale(1.1); 
}

.groove-gen .item1 h4 {
    color: white;
    font-size: 16px;
    font-weight: lighter;
}

.groove-gen .item1 p{
    color: white;
    font-size: 13px;
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.groove-gen .item1:hover p{
    opacity: 1;
}

.groove-gen .play-btn1 {
    position: relative;
    height: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.groove-gen .card1 .item1:hover .play-btn1 {
    opacity: 1;
    height: auto;
}

.groove-gen .play-btn1 span audio {
    background: blueviolet;
    padding: 5px 10px;
    border-radius: 10%;
    width: 145px; 
    height: 30px; 
}

.groove-gen .play-btn1 {
    text-align: center; 
    margin-top: 0px; 
}


.like-playlist {
    padding: 30px 10px;
}

.like-playlist h6 {
    color: white;
    font-size: 22px;
    margin-bottom: 20px;
}

.like-playlist .card2 {
    display: flex;
    gap: 5px;
}

.like-playlist .card2 .item2 {
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 6px;
    padding: 6px;
    position: relative;
    overflow: hidden; 
}

.like-playlist .card2 .item2:hover {
    background-color: blueviolet;
}

.like-playlist .card2 .item2 img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 20px;
    transition: transform 0.3s ease; 
}

.like-playlist .card2 .item2:hover img {
    transform: scale(1.1); 
}

.like-playlist .card2 .item2 .play-button {
    display: none;
    position: absolute;
    bottom: 80px;
    right: 10px;
    background-color: blueviolet;
    color: black;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 24px;
    transition: transform 0.3s ease; 
}

.like-playlist .card2 .item2:hover .play-button {
    display: block;
}
  
.like-playlist .item2 h4 {
    color: white;
    font-size: 16px;
    font-weight: lighter;
    margin-bottom: 20px;
}




.love-gen {
    padding: 30px 10px;

}

.love-gen h5 {
    color: white;
    font-size: 22px;
    margin-bottom: 40px;
}

.love-gen .card3 {
    display: flex;
    gap: 13px;
}

.love-gen .card3 .item3 {
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 6px;
    padding: 6px;
    position: relative;
    overflow: hidden; /* Ensure the image stays within bounds */
}

.love-gen .card3 .item3:hover {
    background-color: blueviolet;
}

.love-gen .card3 .item3 img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 10px;
    transition: transform 0.3s ease; 
}

.love-gen .card3 .item3:hover img {
    transform: scale(1.1); 
}

.love-gen .item3 h4 {
    color: white;
    font-size: 16px;
    font-weight: lighter;
}

.love-gen .item3 p{
    color: white;
    font-size: 13px;
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.love-gen .item3:hover p{
    opacity: 1;
}

.love-gen .play-btn2 {
    position: relative;
    height: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.love-gen .card3 .item3:hover .play-btn2 {
    opacity: 1;
    height: auto;
}

.love-gen .play-btn2 span audio {
    background: blueviolet;
    padding: 5px 10px;
    border-radius: 10%;
    width: 145px; 
    height: 30px; 
}

.love-gen .play-btn2 {
    text-align: center; 
    margin-top: 0px; 
}




.footer-section {
    padding: 20px 40px;
}

.footer-section .footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.footer-section .footer .footer-links {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.footer-section .footer .footer-links .footer-column {
    margin: 0 12px;
}

.footer-section .footer .footer-links div {
    color: white;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 16px;
}

.footer-section .footer .footer-links ul li {
    list-style: none;
    margin: 6px 0;
}

.footer-section .footer .footer-links ul li a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    cursor: pointer;
    font-weight: lighter;
}

.footer-section .footer .footer-links ul li a:hover {
    text-decoration: underline;
    color: violet;
}

.footer .social-links i {
    color: white;
    background: rgb(130, 105, 130);
    padding: 11px 14px;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.footer .social-links i:hover {
    background: violet;
}

.footer-line {
    width: 100%;
    height: 2px;
    background-color: blueviolet;
    border: none;
    margin: 20px 0;
}

.copyright {
    padding: 0 35%;
    color: white;
    font-size: 15px;
    margin-bottom: 10px;
}



