#feedScreen,
#musicScreen,
#profileScreen,
#offlineMusicScreen,
#bucketScreen {
    max-width: 960px;
    padding: 60px 60px 60px;
}

.navbar,
.footer-nav {
    padding: 0 60px;
    max-width: 1400px;
    margin: 0 auto;
}

#profileContent {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-bottom: 60px;
}

.profile-header {
    max-width: 700px;
    margin: 0 auto 20px auto;
}

.music-section-title {
    margin: 25px 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
}

.profile-posts-grid {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 28px;
    justify-content: center;
}

.profile-post-item {
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-post-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.45);
}
