* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Segoe UI', sans-serif; 
}

body { 
    background: #fff; 
    color: #0c0c1e; 
    display: flex; 
    flex-direction: column;
    min-height: 100vh; 
    overflow-x: hidden; 
    align-items: center;
}

/* Google Ads Placeholder Styling */
.ad-container-top, .ad-container-bottom {
    width: 100%;
    max-width: 728px;
    min-height: 90px;
    margin: 15px auto;
    background: #f4f4f5;
    border: 1px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Content Area */
.main-content { 
    flex: 1; 
    padding: 40px; 
    overflow-y: auto; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    width: 100%;
}

.welcome-banner { 
    width: 100%; 
    max-width: 500px;
    background: linear-gradient(135deg, #1db954, #0b6623); 
    padding: 40px; 
    border-radius: 20px; 
    margin-bottom: 30px; 
    box-shadow: 0 10px 30px rgba(29,185,84,0.3); 
    text-align: center;
    color: #fff;
}

.welcome-banner h1 { 
    font-size: 32px; 
    margin-bottom: 10px; 
}

/* Glassmorphic Player Container */
.jukebox-card { 
    background: rgba(30, 30, 45, 0.6); 
    backdrop-filter: blur(15px); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    padding: 30px; 
    border-radius: 24px; 
    width: 380px; 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5); 
    text-align: center; 
    margin-top: 20px;
}

/* Album Image Component at the top */
.album-wrapper { 
    width: 100%; 
    height: 280px; 
    border-radius: 16px; 
    overflow: hidden; 
    margin-bottom: 25px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.5); 
    background: #1a1a2e; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.album-wrapper img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.track-info { 
    margin-bottom: 20px; 
}

.track-info h2 { 
    font-size: 22px; 
    font-weight: 600; 
    margin-bottom: 5px; 
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    color: #fff; 
}

.track-info p { 
    font-size: 14px; 
    color: #b3b3b3; 
    margin-bottom: 4px; 
}

.track-info .meta-info { 
    font-size: 12px; 
    color: #1db954; 
    font-style: italic; 
}

/* Time & Control Elements */
.progress-box { 
    margin-bottom: 25px; 
}

.slider { 
    width: 100%; 
    height: 6px; 
    -webkit-appearance: none; 
    background: #333; 
    border-radius: 5px; 
    outline: none; 
    cursor: pointer; 
    accent-color: #1db954; 
}

.timestamps { 
    display: flex; 
    justify-content: space-between; 
    font-size: 12px; 
    color: #b3b3b3; 
    margin-top: 8px; 
}

.control-panel { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 30px; 
}

.btn { 
    background: none; 
    border: none; 
    color: #fff; 
    font-size: 24px; 
    cursor: pointer; 
    transition: 0.2s; 
}

.btn:hover { 
    color: #1db954; 
    transform: scale(1.1); 
}

#play-btn { 
    background: #fff; 
    color: #0c0c1e; 
    width: 60px; 
    height: 60px; 
    border-radius: 50%; 
    font-size: 22px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    box-shadow: 0 4px 15px rgba(255,255,255,0.2); 
}

#play-btn:hover { 
    background: #1db954; 
    color: #fff; 
    box-shadow: 0 4px 20px rgba(29,185,84,0.4); 
}

/* Like Button Custom Styling */
.like-btn {
    font-size: 26px; /* Baki buttons se thoda prominent dikhne ke liye */
    color: #e0e0e0;
    transition: transform 0.2s ease, color 0.2s ease;
}

.like-btn:hover {
    color: #ff4757;
    transform: scale(1.2);
}

/* Liked State (Jab active ho) */
.like-btn.liked {
    color: #ff4757;
    text-shadow: 0 0 10px rgba(255, 71, 87, 0.4);
}

#status-msg { 
    font-size: 12px; 
    color: #1db954; 
    margin-top: 10px; 
    font-style: italic; 
}