* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: url(../assets/img/background.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  color: white !important;
}

.custom-header {
  padding: 16px 16px;
  display: flex;
  justify-content: space-between !important;
  align-items: center;
  --bs-bg-opacity: 0.4 !important;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between !important;
}

.logo {
  height: 50px;
  margin-right: 10px;
}

.search-bar {
  width: 25%;
  border-radius: 4px;
  outline: none;
}

.search-bar:focus {
  border: 2px solid #0056b3;
}

.controls {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 20px;
  gap: 10px;
}

.soundtrack {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.music-btn {
  width: 230px !important;
}

.btn-warning, .custom-btn, .music-btn {
  background-color: rgb(255,204,1)!important;
  color: rgb(41,113,184) !important;
  border: 4px solid rgb(49,102,177) !important;
  font-weight: bold !important;
  border-radius: 10px !important;
  transition: all 0.3s ease !important;
  width: 26%;
}

.btn-warning.custom-btn:hover {
  background-color: rgb(49,102,177) !important;
  color: rgb(255,204,1)!important;
  border-color: rgb(255,204,1) !important;
}
.music-btn:hover {
  background-color: rgb(49,102,177) !important;
  color: rgb(255,204,1)!important;
  border-color: rgb(255,204,1) !important;
}

.btn {
  margin-bottom: 10px;
}

footer {
  text-align: center;
  padding: 15px;
  color: rgb(49,102,177);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgb(49,102,177); 
}

::-webkit-scrollbar-thumb {
  background: rgb(255,204,1); 
  border-radius: 4px;
}

@media (max-width: 500px) {
  .custom-header {
    flex-direction: column;
    padding: 8px 0;
  }

  #search-bar {
    margin-top: 16px;
    width: 50% !important;
  }

  .btn-warning.custom-btn {
    font-size: 15px !important;
    font-weight: 500 !important;
    width: 41%;
  }
  .music-btn {
    width: 180px !important;
    font-size: 12px !important;
  }

  .controls {
    flex-direction: column !important;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
}