/**
 * PowerIndie Profile Sections - Dark Theme
 * Professional styling for albums and songs sections
 */

/* Profile Dark Sections - Albums and Songs */
.profile-dark-section {
    background: linear-gradient(180deg, #121212 50%, hsla(0, 0%, 100%, 0.5)), 
                linear-gradient(359.69deg, #4100f5 17.21%, #9bf0e1 99.6%);
    padding: 40px 0;
    margin: 30px 0;
    border-radius: 0;
}

.profile-section-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    margin-bottom: 30px;
}

.profile-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.profile-section-title i {
    color: #9bf0e1;
}

.profile-section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.profile-grid-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.profile-grid-wrapper .playlists-grid,
.profile-grid-wrapper .grid-view {
    background: rgba(18, 18, 18, 0.9);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Tablet Responsive for Profile Sections */
@media (max-width: 1024px) {
    .profile-dark-section {
        padding: 30px 0;
        margin: 20px 0;
    }
    
    .profile-section-title {
        font-size: 1.8rem;
    }
    
    .profile-grid-wrapper {
        padding: 0 15px;
    }
    
    .profile-grid-wrapper .playlists-grid,
    .profile-grid-wrapper .grid-view {
        padding: 20px;
    }
}

/* Mobile Responsive for Profile Sections */
@media (max-width: 768px) {
    .profile-dark-section {
        padding: 25px 0;
        margin: 15px 0;
    }
    
    .profile-section-header {
        padding: 0 15px;
        margin-bottom: 20px;
    }
    
    .profile-section-title {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .profile-section-subtitle {
        font-size: 1rem;
    }
    
    .profile-grid-wrapper {
        padding: 0 10px;
    }
    
    .profile-grid-wrapper .playlists-grid,
    .profile-grid-wrapper .grid-view {
        padding: 15px;
        border-radius: 8px;
    }
}

/* Small Mobile Responsive for Profile Sections */
@media (max-width: 480px) {
    .profile-dark-section {
        padding: 20px 0;
        margin: 10px 0;
    }
    
    .profile-section-title {
        font-size: 1.4rem;
    }
    
    .profile-section-subtitle {
        font-size: 0.9rem;
    }
    
    .profile-grid-wrapper {
        padding: 0 8px;
    }
    
    .profile-grid-wrapper .playlists-grid,
    .profile-grid-wrapper .grid-view {
        padding: 12px;
    }
}