/* Reset и базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Профиль */
.profile {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-info {
    flex: 1;
    text-align: left;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(100, 181, 246, 0.3);
    box-shadow: 0 8px 25px rgba(100, 181, 246, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(100, 181, 246, 0.3);
}

.profile h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 4px;
    background: linear-gradient(45deg, #64b5f6, #ba68c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.age, .location .username {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 5px;
}

/* Социальные сети */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(100, 181, 246, 0.2);
}

.social-icon {
    font-size: 1.2rem;
}

/* Проекты */
.projects h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
    font-weight: 300;
}

.projects-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.project-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(100, 181, 246, 0.15);
}

.project-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #64b5f6;
}

.project-url {
    color: #ba68c8;
    font-size: 0.9rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.project-description {
    color: #d0d0d0;
    margin-bottom: 20px;
    line-height: 1.5;
}

.project-link {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(45deg, #64b5f6, #ba68c8);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 181, 246, 0.4);
}

/* Навигация */
.nav {
    margin-bottom: 40px;
}

.nav-link {
    color: #64b5f6;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ba68c8;
}

/* Профиль музыканта */
.musician-profile {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(100, 181, 246, 0.1) 0%, rgba(186, 104, 200, 0.1) 100%);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(100, 181, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.musician-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(100, 181, 246, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.musician-avatar-container {
    position: relative;
    flex-shrink: 0;
}

.musician-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(100, 181, 246, 0.4);
    box-shadow: 0 15px 40px rgba(100, 181, 246, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.avatar-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(45deg, #64b5f6, #ba68c8, #64b5f6);
    opacity: 0.3;
    filter: blur(20px);
    animation: pulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.musician-avatar:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 50px rgba(100, 181, 246, 0.4);
}

.musician-info {
    flex: 1;
    text-align: left;
}

.musician-header {
    margin-bottom: 20px;
}

.musician-name {
    font-size: 3.5rem;
    font-weight: 200;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #64b5f6, #ba68c8, #64b5f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.musician-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.badge {
    padding: 6px 16px;
    background: rgba(100, 181, 246, 0.2);
    border: 1px solid rgba(100, 181, 246, 0.4);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #64b5f6;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(100, 181, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 181, 246, 0.2);
}

.musician-description {
    font-size: 1.1rem;
    color: #d0d0d0;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 600px;
}

.musician-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 80px;
}

.stat:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(100, 181, 246, 0.15);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    color: #64b5f6;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #b0b0b0;
    font-weight: 500;
}


/* Релизы */
.releases h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
    font-weight: 300;
}

.releases-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

.release-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.release-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(100, 181, 246, 0.1);
}

.release-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #64b5f6;
}

.release-date {
    color: #ba68c8;
    font-size: 0.9rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.release-description {
    color: #d0d0d0;
    line-height: 1.5;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 767px) {
    .profile {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .profile-info {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .musician-profile {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px 20px;
    }
    
    .musician-info {
        text-align: left;
    }
    
    .musician-name {
        font-size: 2.5rem;
        text-align: left;
    }
    
    .musician-avatar {
        width: 150px;
        height: 150px;
    }
    
    .musician-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .stat {
        min-width: 70px;
        padding: 12px 15px;
    }
}

/* Адаптивность для планшетов и десктопов */
@media (min-width: 768px) {
    .container {
        padding: 40px;
    }
    
    .profile h1 {
        font-size: 3rem;
    }
    
    .social-links {
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .social-link {
        flex: 1;
        min-width: 200px;
        justify-content: center;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .releases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .releases-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile, .project-card, .release-card {
    animation: fadeInUp 0.6s ease-out;
}

.project-card:nth-child(2) {
    animation-delay: 0.1s;
}

.project-card:nth-child(3) {
    animation-delay: 0.2s;
}

.project-card:nth-child(4) {
    animation-delay: 0.3s;
}
