/* Background */
body {
    margin: 0;
    font-family: Poppins, sans-serif;
    background: #0d0d0d;
    color: #fff;
}

/* Page container */
.container {
    padding: 40px 60px;
}

/* Title */
.title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Search bar */
.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 12px 20px;
    width: 60%;
    backdrop-filter: blur(10px);
    box-shadow: 0px 4px 20px rgba(0,0,0,0.4);
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 18px;
}

.search-box button {
    background: #1DB954;
    border: none;
    padding: 10px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 18px;
}

.search-box button:hover {
    background: #1ed760;
    transform: scale(1.1);
}

/* Results Section */
.results {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

/* Song card */
.song-card {
    background: rgba(255,255,255,0.08);
    padding: 15px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s ease;
    backdrop-filter: blur(10px);
}

.song-card:hover {
    transform: translateY(-7px);
    background: rgba(255,255,255,0.12);
}

.song-card img {
    width: 100%;
    height: 180px;
    border-radius: 15px;
    object-fit: cover;
}

.song-title {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}

.song-artist {
    font-size: 14px;
    opacity: 0.8;
}
