body {
  font-family: 'pixeltimes', serif;
  margin: 0;
  padding: 0;
  background: #111;
  color: #00ff00;
}

.playlists-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
}

.playlist-card {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
}

.playlist-card:hover {
  transform: scale(1.05);
  transition: transform 0.3s;
}

.playlist-cover {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.playlist-name {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
}

.playlist-card:hover .playlist-name {
  opacity: 1;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  overflow: auto; 
}

.modal-content {
  position: relative; 
  margin: 50px auto; 
  max-width: 80%;
  max-height: 80%;
  padding: 20px;
  background: #333;
  color: #fff;
  border-radius: 5px;
  overflow-y: auto; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}


.close {
  position: fixed; 
  top: 20px; 
  right: 20px; 
  font-size: 24px;
  cursor: pointer;
  z-index: 1100; 
}

.gallery-images {
  display: flex;
  flex-wrap: wrap; 
  gap: 10px; 
  padding: 10px;
  justify-content: center; 
}

.gallery-images img {
  width: calc(25% - 10px); 
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
html::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.1) 1%, transparent 1%) 0 0 / 3px 3px;
    pointer-events: none;
}
    html::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 0, 0, 0.1);
    mix-blend-mode: multiply; 
    pointer-events: none;
  }
  html {
    filter: contrast(1.4) brightness(0.9) saturate(1.4);
  }
.crt::before {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
    linear-gradient(
      90deg,
      rgba(255, 0, 0, 0.07),
      rgba(0, 255, 0, 0.03),
      rgba(0, 0, 255, 0.07)
    );
  z-index: 99999;
  background-size: 100% 2px, 3px 100%;
  box-shadow: inset 0px 0px 24px 10px #222222;
  pointer-events: none;
}
.wrapper {
  background-color: #333333;
  color: #00ff00;
 z-index:999999;
}
/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: thin;
    scrollbar-color: #211721 #fdfdfc;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 13px;
  }

  *::-webkit-scrollbar-track {
    background: #fdfdfc;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #211721;
    border-radius: 4px;
    border: 3px solid #ffffff;
  }