/* Music Vibe Decorations (Hero) - Cool & Abstract */

.vibe-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
    position: relative;
    width: 100%;
}

/* Audio Visualizer - Cool & Sleek */
.music-visualizer {
    display: flex;
    gap: 8px;
    /* Slightly wider gap */
    height: 40px;
    align-items: flex-end;
    justify-content: center;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.bar {
    width: 4px;
    background: #fff;
    border-radius: 10px;
    /* Fully rounded */
    animation: visualize 1.5s ease-in-out infinite alternate;
    opacity: 0.8;
}

/* Randomize animations for organic feel */
.bar:nth-child(1) {
    height: 15px;
    animation-delay: 0.1s;
    animation-duration: 0.8s;
}

.bar:nth-child(2) {
    height: 35px;
    animation-delay: 0.3s;
    animation-duration: 1.1s;
    background: var(--accent);
}

/* Accent color bar */
.bar:nth-child(3) {
    height: 25px;
    animation-delay: 0.0s;
    animation-duration: 0.9s;
}

.bar:nth-child(4) {
    height: 40px;
    animation-delay: 0.2s;
    animation-duration: 1.3s;
}

.bar:nth-child(5) {
    height: 30px;
    animation-delay: 0.4s;
    animation-duration: 1.0s;
    background: var(--accent);
}

.bar:nth-child(6) {
    height: 20px;
    animation-delay: 0.1s;
    animation-duration: 0.8s;
}

.bar:nth-child(7) {
    height: 32px;
    animation-delay: 0.5s;
    animation-duration: 1.2s;
}

.bar:nth-child(8) {
    height: 18px;
    animation-delay: 0.2s;
    animation-duration: 0.9s;
}

@keyframes visualize {
    0% {
        height: 5px;
        opacity: 0.5;
    }

    50% {
        height: 100%;
        opacity: 1;
    }

    100% {
        height: 10px;
        opacity: 0.5;
    }
}

/* Floating Abstract Notes */
.abstract-notes {
    position: absolute;
    width: 600px;
    max-width: 100%;
    height: 200px;
    top: -100px;
    /* Float upward from title */
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: -1;
}

.note {
    position: absolute;
    font-size: 2.5rem;
    color: #ce8eff;
    animation: floatNote 8s linear infinite;
    opacity: 0;
    text-shadow: 0 0 20px rgba(206, 142, 255, 0.6);
}

.note:nth-child(1) {
    left: 20%;
    top: 100%;
    animation-delay: 0s;
    color: #ce8eff;
    opacity: 0.9;
}

.note:nth-child(2) {
    left: 70%;
    top: 90%;
    animation-delay: 3s;
    font-size: 2rem;
    color: #ce8eff;
}

.note:nth-child(3) {
    left: 40%;
    top: 80%;
    animation-delay: 5s;
    font-size: 3rem;
    transform: rotate(-15deg);
    color: #ce8eff;
    opacity: 0.5;
}

.note:nth-child(4) {
    left: 80%;
    top: 100%;
    animation-delay: 1s;
    animation-duration: 6s;
    font-size: 1.8rem;
    color: #ce8eff;
}

@keyframes floatNote {
    0% {
        transform: translateY(0) rotate(0deg) scale(0.8);
        opacity: 0;
    }

    20% {
        opacity: 0.8;
        transform: translateY(-40px) rotate(10deg) scale(1);
    }

    80% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-150px) rotate(-10deg) scale(0.9);
        opacity: 0;
    }
}

/* Glowing Title Effect */
.artist-title h1 {
    animation: glow-pulse 3s infinite alternate;
}

@keyframes glow-pulse {
    0% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }

    100% {
        text-shadow: 0 0 25px rgba(255, 255, 255, 0.5), 0 0 50px rgba(255, 255, 255, 0.1);
    }
}