* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #000;
  font-family: Arial, Helvetica, sans-serif;
}
.sidebar {
  width: 300px;
  background: #030303;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 10px;
}
.sidebar-nav {
  background-color: #111111;
  border-radius: 10px;
  padding: 20px 10px;
  margin-bottom: 10px;
}
.sidebar-nav .logo {
  width: 120px;
}
.sidebar-nav .logo img {
  width: 100%;
}
.sidebar-nav ul {
  list-style: none;
}
.sidebar-nav ul li {
  padding: 10px 20px;
}
.sidebar-nav ul li a:hover {
  color: #fff;
}
.sidebar-nav ul li a {
  text-decoration: none;
  color: #b3b3b3;
  font-size: 16px;
  font-weight: 600;
}
.library::after {
  content: "+";
  float: right;
  text-align: center;
  border-radius: 50%;
  font-size: 15px;
}

.create-playlist {
  background: #302f2f;
  padding: 30px 15px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.sidebar-scroll {
  height: 120px;
  overflow-y: auto;
}
.sidebar-scroll::-webkit-scrollbar {
  background-color: transparent;
}
.sidebar-scroll::-webkit-scrollbar-thumb {
  background-color: transparent;
  width: 10px;
}
.sidebar-scroll:hover::-webkit-scrollbar-thumb {
  background: #5c5b5b;
  width: 5px;
}
.create-playlist h4 {
  color: white;
  font-size: 15px;
}
.create-playlist p {
  color: white;
  font-size: 12px;
  margin: 13px 0;
}
.create-playlist button {
  padding: 8px 15px;
  border: 0;
  outline: 0;
  border-radius: 20px;
  font-weight: 600;
}


.privacy ul li a {
  text-decoration: none;
  color: #575656;
  font-size: 13px;
  font-weight: 600;
  margin: 0 5px;
 
  
 

}
.privacy ul li a :hover {
  text-decoration: underline;
  color: #bebcbc;
}
.privacy ul {
  list-style: none;
  margin-top: 20px;
}

.privacy ul li {
  padding: 0 5px;
  padding-bottom: 5px;
}
.eng-btn {
  padding: 20px 30px;
}
.eng-btn button {
  padding: 8px 18px;
  background: transparent;
  border: 0;
  outline: none;
  color: white;
  border: 1px solid #818080;
  border-radius: 20px;
  margin: 20px 0;
}
.eng-btn button:hover {
  padding: 9px 20px;
  border: 1px solid white;
}

/* ********************** main-section ***************/

.main-section {
  margin-left: 300px;
  background: #181818;
  height: 100vh;
  overflow-y: auto;
  margin-bottom: 75px;
}
.main-section::-webkit-scrollbar {
  background: transparent;
}
.main-section::-webkit-scrollbar-thumb {
  background: transparent;
  width: 10px;
}
.main-section::-webkit-scrollbar-thumb {
  background-color: #5c5b5b;
  width: 5px;
}
.main-section .top-nav {
  padding: 20px 30px;
  background: #131212;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-section .top-nav button {
  background: transparent;
  border: 0;
  outline: 0;
}
.main-section .top-nav .prev-btn button i {
  color: #838181;
  font-size: 22px;
  margin-right: 20px;
}
.top-nav .login-btn .sign-up {
  color: #838181;
  font-size: 16px;
  font-weight: 600;
  margin-right: 15px;
}
.top-nav .login-btn .sign-up:hover {
  color: white;
}
.top-nav .login-btn .login {
  color: black;
  font-size: 16px;
  font-weight: 600;
  background: white;
  padding: 10px 15px;
  border-radius: 20px;
}
.top-nav .login-btn .login:hover {
  background: #f3f3f3;
}

/* shift+ctrl+c to open spotify inspects ********* */
/* playlist */

.spotify-playlist {
  padding: 20px 40px;
}
.spotify-playlist h2 {
  color: white;
  font-size: 22px;
  margin-bottom: 20px;
}
.spotify-playlist .card {
  display: flex;
  gap: 20px;
  overflow: hidden;
}
.spotify-playlist .card .item {
  width: 190px;
  min-width: 140px;
  background-color: #272626;
  cursor: pointer;
  border-radius: 6px;
  padding: 15px;
}
.spotify-playlist .card .item:hover {
  background-color: #3d3c3c;
}
.spotify-playlist .card .item img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}
.spotify-playlist .item h4 {
  color: white;
}
.spotify-playlist .item p {
  color: #8f8e8e;
  font-size: 13px;
  margin-top: 10px;
}
.spotify-playlist .item p:hover {
  text-decoration: underline;
}
.spotify-playlist .play-btn {
  position: relative;
}
.spotify-playlist .play-btn i {
  position: absolute;
  background-color: #1db954;
  border-radius: 50%;
  padding: 10px;
  right: 8px;
  top: -40px;
  opacity: 0;
  transform: 0.4s ease all;
}
.spotify-playlist .card .item:hover .play-btn i {
  opacity: 1;
  transform: translateY(-20px);
}

/* ******************footer-section *********************/

.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: #969393;
  font-size: 14px;
  cursor: pointer;
}
.footer-section .footer .footer-links ul li a:hover {
  text-decoration: underline;
  color: white;
}
.footer .social-links i {
  color: white;
  background: #353434;
  padding: 12px;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}
.footer .social-links i:hover {
  background: #636262;
}

hr {
  margin: 20px 40px;
  border: 0;
  outline: 0;
  border: 1px solid #575656;
  margin-top: 40px;
}

.copy-right {
  padding: 0 40px;
  color: #969393;
  font-size: 15px;
  margin-bottom: 30px;
}

.preview {
  display: flex;
  justify-content: space-between;
  background: linear-gradient(to right, #ae2896, #509bf5);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 40px;
}

.preview h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  color: white;
}
.preview p {
  font-size: 16px;
  font-weight: 400;
  color: white;
}

.preview button {
  padding: 12px 30px;
  border: 0;
  outline: 0;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: black;
}
