/* =============================================
   ARTIST WAVE PROFILE - ConincStudio™
   Profile info, bio, social links, presence
   ============================================= */

.wave-profile {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 24px;
    margin: 30px 0;
}

/* --- Profile Header --- */
.wave-profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
    gap: 12px;
}

.wave-profile-header h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    color: #FFFFFF;
}

.wave-profile-edit-btn {
    background: rgba(245, 179, 1, 0.1);
    border: 1px solid rgba(245, 179, 1, 0.2);
    color: #F5B301;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}

.wave-profile-edit-btn:hover {
    background: rgba(245, 179, 1, 0.15);
    border-color: rgba(245, 179, 1, 0.4);
    transform: translateY(-1px);
}

/* --- Profile Info Grid --- */
.wave-profile-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.wave-profile-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wave-profile-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.4;
    font-weight: 500;
    color: #EEEEEE;
}

.wave-profile-value {
    font-size: 0.95rem;
    color: #FFFFFF;
    font-weight: 500;
}

.wave-profile-value.muted {
    opacity: 0.5;
    font-style: italic;
}

/* --- Bio --- */
.wave-profile-bio {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 16px 20px;
    margin-bottom: 20px;
    border-left: 3px solid #F5B301;
}

.wave-profile-bio p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
    color: #EEEEEE;
}

/* --- Social Links --- */
.wave-profile-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.wave-profile-social-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 40px;
    color: #EEEEEE;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.25s ease;
}

.wave-profile-social-link:hover {
    background: rgba(245, 179, 1, 0.08);
    border-color: rgba(245, 179, 1, 0.2);
    color: #F5B301;
    transform: translateY(-2px);
}

.wave-profile-social-link .social-icon {
    font-size: 1rem;
}

/* --- Presence Indicator --- */
.wave-profile-presence {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
}

.wave-profile-presence.online {
    background: rgba(0, 230, 118, 0.1);
    color: #00E676;
}

.wave-profile-presence.away {
    background: rgba(255, 167, 38, 0.1);
    color: #FFA726;
}

.wave-profile-presence.offline {
    background: rgba(117, 117, 117, 0.1);
    color: #757575;
}

.wave-profile-presence .presence-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 12px currentColor;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* --- Stats Row --- */
.wave-profile-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 16px;
}
 
.wave-profile-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wave-profile-stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #F5B301;
}

.wave-profile-stat-label {
    font-size: 0.7rem;
    opacity: 0.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .wave-profile {
        padding: 18px;
    }

    .wave-profile-info {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .wave-profile-social {
        gap: 8px;
    }

    .wave-profile-social-link {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .wave-profile-stats {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .wave-profile-info {
        grid-template-columns: 1fr;
    }

    .wave-profile-stat-value {
        font-size: 1rem;
    }
}