/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 6px;
  height: 10px;
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #4285F4;
  border-radius: 10px;
  border: 2px solid #1a1a1a;
}

/* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #000;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* Typography */
.title {
  font-size: 2.5rem;
  filter: drop-shadow(0 1px 2px #000);
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  top: -2rem;
}

/* Header */
header {
  height: auto;
  background: url("/Image/newbg1.jpg") no-repeat center center/cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  position: relative;
  text-align: center;
}

header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

header * {
  position: relative;
  z-index: 1;
}

/* Form */
form {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin-top: -2rem;
  transform: scale(0.9);
}

form input {
  width: 100%;
  padding: 15px 20px;
  font-size: 16px;
  color: #fff;
  background: #111;
  border: none;
  border-radius: 10px;
  outline: none;
}

form input::placeholder {
  color: #ccc;
}

form button {
  position: absolute;
  top: 5px;
  right: 5px;
  background: #e92323;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  transition: background 0.3s ease;
}

form button:hover {
  background: #c41f1f;
}

/* Buttons */
button {
  cursor: pointer;
  transition: transform 0.1s ease;
}

button:active {
  transform: scale(0.95);
}

button:focus,
input:focus {
  outline: none;
}

.btn {
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 14px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #555;
}

/* Song List */
ul.songs {
  list-style: none;
  padding: 0;
}

ul.songs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0;
  padding: 10px;
  background: #111;
  border-radius: 8px;
}

/* Container */
.container {
  margin: 40px auto;
  max-width: 600px;
  padding: 0 20px;
}

.container h2 {
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.container p {
  text-align: center;
  font-size: 1rem;
  color: #ccc;
}

/* Centered Section */
.centered {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.centered button {
  transform: scale(1.2);
  margin: 15px;
}
