@import url('https://fonts.googleapis.com/icon?family=Material+Icons');


body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    text-align: center;
    padding: 50px;
    margin: 0;
    scrollbar-width: thin;
    scrollbar-color: #9c27b0 #121212;
}

h1 {
    color: #ffffff;
}

h3 {
    color: #ffffff;
}

.search-container {
    text-align: center;
}

.search-button {
    position: absolute;
    right: 300px; /* Adjusted right position */
    top: 215px;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #FFF;
    font-size: 24px;
    outline: none;
}
.search-button:hover {
    color: #BA68C8;
}
.search-button:active {
    transform: scale(0.95);
}

/* Custom scroll bar for Webkit browsers */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: #121212; /* Track color */
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background-color: #9c27b0; /* Thumb color */
    border-radius: 10px;
    border: 3px solid #121212; /* Border color around the thumb */
}

#search-input {
    width: 800px;
    height: 80px;
    padding: 25px 80px 25px 30px;
    font-size: 24px;
    border: 2px solid #9c27b0;
    border-radius: 25px;
    background-color: #1E1E1E;
    color: #FFF;
    outline: none;
    display: flex;
    transition: all 0.3s ease;
    box-sizing: border-box;
    margin: 0 auto; /* Center the element horizontally */
  }
          #search-input:hover {
              border-color: #BA68C8;
          }
          #search-input:focus {
              border-color: #9c27b0;
              box-shadow: 0 0 10px #9c27b0;
          }
          #search-input::placeholder {
              color: #AAA;
              opacity: 0.5;
          }

.button {
    background-color: #6d626a25;
    border: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.button:hover {
    background-color: #ffffff6c;
    transform: scale(1.1);
}

.button:active {
    background-color: #c8c9c8;
    transform: scale(1);
}

.topbtn {
    background-color: #10485e;
    border: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.topbtn:hover {
    background-color: #ffffff6c;
    transform: scale(1.1);
}

.topbtn:active {
    background-color: #c8c9c8;
    transform: scale(1);
}

.profile-container {
    position: fixed; /* Keeps the profile at the top right */
    top: 0;
    right: 20px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
  }

  .profile-label {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
  }

.genrebtn {
    background-color: #10485e;
    border: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.genrebtn:hover {
    background-color: #ffffff6c;
    transform: scale(1.1);
}

.genrebtn:active {
    background-color: #c8c9c8;
    transform: scale(1);
}

.button.tl {
    transform: rotate(1);
}

#popupOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none; /* Hide the pop-up initially */
    justify-content: center;
    align-items: center;
}

#popupOverlay2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none; /* Hide the pop-up initially */
    justify-content: center;
    align-items: center;
}


#popupContent {
    background: #242424;
    padding: 40px;
    border-radius: 8px;
    position: relative;
}

#closePopupBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: white;
    -webkit-text-fill-color: white;
}

#closePopupBtn2 {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: white;
    -webkit-text-fill-color: white;
}

button.gone {
    display: none;
}

iframe {
    width: 360px;
    height: 300px;
    border: none;
}

.search-bar {
    width: 60%;
    padding: 10px;
    background-color: #333333;
    border: none;
    border-radius: 4px;
    color: #ffffff;
    font-size: 18px;
    margin-top: 20px;
}

.play-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffd700;
    color: #1a1a1a;
    padding: 10px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: #ffed4a;
    transform: translateY(-2px);
}

.play-btn i {
    font-size: 0.9rem;
}
