
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent);
}

.search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    width: 300px;
}

.search-bar input {
    background: transparent;
    border: none;
    color: white;
    width: 100%;
    padding: 5px 10px;
    outline: none;
}

.search-bar i {
    color: var(--light);
}

.user-actions {
    display: flex;
    gap: 15px;
}

.user-actions a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

/* Song Player Section */
.song-player-section {
    background: linear-gradient(to bottom, var(--primary), var(--dark));
    color: white;
    padding: 50px 0;
}

.song-player-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.album-art {
    flex: 0 0 300px;
}

.album-art img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.song-info {
    flex: 1;
}

.song-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.song-artist {
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 10px;
}

.song-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #ccc;
}

.song-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.action-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.action-btn.primary {
    background-color: var(--accent);
}

.action-btn.primary:hover {
    background-color: var(--secondary);
}

.progress-container {
    margin-bottom: 20px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 5px;
    position: relative;
    cursor: pointer;
}

.progress {
    width: 30%;
    height: 100%;
    background-color: var(--accent);
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #ccc;
}

.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.control-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.control-btn:hover {
    color: var(--accent);
}

.control-btn.play-pause {
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.control-btn.play-pause:hover {
    background-color: var(--secondary);
}

/* Song Details Section */
.song-details {
    background-color: white;
    padding: 40px 0;
}

.details-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.lyrics-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light);
}

.lyrics-content {
    line-height: 1.8;
    color: #555;
}

.song-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.stat-item {
    background-color: var(--light-bg);
    padding: 15px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Similar Songs Section */
.similar-songs {
    padding: 40px 0;
}

.songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.song-card {
    background-color: white;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.song-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.song-card-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.song-card-info {
    padding: 15px;
}

.song-card-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.song-card-artist {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.song-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #666;
}

/* Sidebar */
.sidebar {
    background-color: var(--light-bg);
    padding: 20px;
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--light);
}

.artist-info {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.artist-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.artist-details h3 {
    margin-bottom: 5px;
    color: var(--dark);
}

.artist-details p {
    color: #666;
    font-size: 0.9rem;
}

.album-info {
    margin-bottom: 20px;
}

.album-cover {
    width: 100%;
    margin-bottom: 15px;
}

.album-details h3 {
    margin-bottom: 5px;
    color: var(--dark);
}

.album-details p {
    color: #666;
    font-size: 0.9rem;
}


/* Responsive Design */
@media (max-width: 992px) {

    .album-art {
        flex: 0 0 250px;
    }
    
    .details-container {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-bar {
        width: 100%;
        max-width: 400px;
    }
    
    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .song-stats {
        grid-template-columns: 1fr;
    }
    
    .songs-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 576px) {
    .song-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .songs-grid {
        grid-template-columns: 1fr;
    }
}

section{
	margin-bottom: 0px;
}