/* =============================================
   ARTIST WAVE HERO - ConincStudio™
   Artist profile hero section
   ============================================= */

.wave-hero {
    position: relative;
    border-radius: 32px;
    padding: 60px 40px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(245, 179, 1, 0.15);
    min-height: 320px;
    background-size: cover;
    background-position: center;
}

.wave-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* --- Avatar --- */
.wave-hero-avatar {
    position: relative;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid #F5B301;
    box-shadow: 0 0 40px rgba(245, 179, 1, 0.3);
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.wave-hero-avatar:hover {
    transform: scale(1.04);
}

.wave-hero-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.wave-hero-avatar .status-dot {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid #0A0A0A;
}

.wave-hero-avatar .status-dot.online {
    background: #00E676;
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.5);
}

.wave-hero-avatar .status-dot.away {
    background: #FFA726;
    box-shadow: 0 0 20px rgba(255, 167, 38, 0.5);
}

.wave-hero-avatar .status-dot.offline {
    background: #757575;
}

/* --- Title & Subtitle --- */
.wave-hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #F5B301, #FF8C42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 8px 0;
}

.wave-hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.7;
    margin-bottom: 24px;
    letter-spacing: 0.4px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.wave-hero-subtitle .divider {
    opacity: 0.3;
}

/* --- Actions --- */
.wave-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

/* --- Cover Controls (if used) --- */
.wave-hero-cover-controls {
    display: flex;
    gap: 6px;
    margin-top: 16px;
    padding: 8px 12px;
    background: rgba(18, 10, 31, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.wave-hero-cover-controls:hover {
    opacity: 1;
    border-color: rgba(245, 179, 1, 0.1);
}

/* --- Glow Effect --- */
.wave-hero-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(circle, rgba(245, 179, 1, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .wave-hero {
        padding: 40px 30px;
        min-height: 280px;
    }

    .wave-hero-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .wave-hero {
        padding: 30px 20px;
        border-radius: 24px;
        min-height: 240px;
    }

    .wave-hero-title {
        font-size: 2rem;
    }

    .wave-hero-avatar {
        width: 90px;
        height: 90px;
    }

    .wave-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .wave-hero-actions button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .wave-hero-title {
        font-size: 1.6rem;
    }

    .wave-hero-subtitle {
        font-size: 0.95rem;
    }

    .wave-hero-avatar {
        width: 72px;
        height: 72px;
    }
}