body { 
    background: #181818; 
    color: #eee; 
    font-family: Arial, sans-serif; 
    margin: 0; 
    padding: 0; 
}

h1 {
    text-align: center;
    font-weight: 700;
    color: #ceadff;
    margin-bottom: -15px;
    margin-top: -5px;
}

h2 {
    text-align: center;
    font-weight: 20;
    color: #9a9a9a;
    margin-bottom: 12px;
}


.container { 
    max-width: 800px; 
    margin: 75px auto; 
    padding: 20px; 
    background: #232323; 
    border-radius: 12px; 
    box-shadow: 0 4px 24px rgba(30,0,60,0.14);
}
.playlist-form { 
    display: flex; 
    gap: 8px; 
    margin-bottom: 28px; 
}
.playlist-form input { 
    flex: 1; 
    padding: 8px; 
    border-radius: 4px; 
    border: 1.5px solid #36324a;
    background: #1a1824;
    color: #e0e0e0;

}
.playlist-form button { 
    padding: 8px 16px; 
    border-radius: 4px; 
    border: none; 
    background: #7f37c9; 
    color: #fff; 
    font-weight: bold; 
    cursor: pointer; 
    transition: background 0.18s;
}
.playlist-form button:hover { 
    background: #a259e6; 
}
.track-entry {
    display: flex;
    align-items: flex-start;
    background: #292929;
    margin-bottom: 22px;
    border-radius: 12px;
    padding: 18px 18px 12px 18px;
    gap: 32px;
    box-shadow: 0 4px 24px rgba(30,0,60,0.18);
    border: 1px solid #353535;
}
.track-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 170px;
}
.track-thumb {
    width: 100px;                /* or your preferred max width */
    height: 100px;               /* or your preferred max height */
    object-fit: contain;        /* Keeps aspect ratio, fits image inside box */
    background: #222;           /* Optional: adds a background so transparent PNGs look better */
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border: 1.5px solid #444;
    display: block;
    margin-bottom: 12px;
}
.track-label {
    margin-bottom: 6px;
    color: #f3f3f3;
    font-size: 16px;
    /* padding-left: 10px; */
}
.track-label span {
    color: #bbb;
    font-weight: 400;
}
.track-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    padding-right: 15px;
}
.track-fields input {
    width: 100%;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #444;
    background: #232323;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}
.track-fields input:focus {
    border-color: #8703ea;
}
#download-all-btn {
    background: linear-gradient(90deg, #8703ea 60%, #b065f8 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 26px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.18s;
}
#download-all-btn:hover {
    background: linear-gradient(90deg, #b065f8 60%, #8703ea 100%);
}
@media (max-width:600px) {
    .track-entry { flex-direction: column; gap: 12px; }
    .container { padding: 6px; }
}
.top-banner {
    width: 100vw;
    min-width: 320px;
    background: linear-gradient(90deg, #8703ea 60%, #b065f8 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 14px 0;
    box-shadow: 0 2px 12px #0002;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.banner-link {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.08rem;
    letter-spacing: 0.5px;
    padding: 7px 18px;
    border-radius: 6px;
    transition: background 0.18s, color 0.18s;
}

.banner-link:hover {
    background: #fff2;
    color: #ffe083;
    text-decoration: none;
}

