/* --- Profile Page Layout --- */
.profile-section {
    display: flex;
    gap: 50px;
    align-items: flex-start; /* 上揃え */
}

.profile-image {
    flex: 1;
    max-width: 400px;
}

.profile-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.profile-details {
    flex: 1.5; /* テキスト側の幅を広めに */
}

.artist-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: 3px;
    background: linear-gradient(90deg, #00f2ff, #c18cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.artist-tagline {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #c0c0d0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.artist-bio p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* --- レスポンス対応 --- */
@media (max-width: 820px) {
    .profile-section {
        flex-direction: column;
        gap: 40px;
    }
    .profile-image {
        max-width: 100%;
    }
    .artist-name {
        font-size: 2.8rem;
    }
    .artist-tagline {
        font-size: 1.1rem;
    }
}
/* --- Profile Page: Specs & Awards --- */
.profile-specs, .profile-awards {
    margin-top: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #00f2ff;
    padding: 20px;
    border-radius: 0 8px 8px 0;
}

.profile-specs h3, .profile-awards h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #c18cff;
    margin-bottom: 15px;
}

.profile-specs ul, .profile-awards ul {
    list-style: none;
    padding-left: 0;
}

.profile-specs li, .profile-awards li {
    color: #e0e0e0;
    margin-bottom: 10px;
    font-size: 1rem;
}

.profile-specs li strong {
    color: #ffffff;
    margin-right: 10px;
    min-width: 120px;
    display: inline-block;
}