.song-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    background: var(--dark-surface);
    transition: background-color 0.3s ease;
}

.song-item:hover {
    background: var(--dark-color);
}

.song-link {
    display: flex;
    align-items: center;
    flex: 1;
    text-decoration: none;
    color: var(--text-primary);
}

.song-item img {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    margin-right: 1rem;
    object-fit: cover;
}

.song-info {
    flex: 1;
}

.song-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-primary);
}

.song-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.button-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn,
.pause-btn {
    background: none;
    border: none;
    padding: 1rem;
    margin: -0.5rem;
    cursor: pointer;
    color: var(--primary-color);
    opacity: 0.7;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 48px;
    flex-shrink: 0;
}

.play-btn:hover,
.pause-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.button-container .play-btn {
    display: flex;
}

.button-container .pause-btn {
    display: none;
}

.button-container.is-playing .play-btn {
    display: none !important;
}

.button-container.is-playing .pause-btn {
    display: flex !important;
}

@media (max-width: 768px) {
    .play-btn,
    .pause-btn {
        padding: 1.25rem;
        margin: -0.75rem;
    }
    
    .songs-drawer-content {
        width: 100% !important;
        left: -100%;
    }

    .button-container {
        display: none !important;
    }
}

:root {
    /* Dark theme colors - lighter variants */
    --primary-color: #BB86FC;
    --secondary-color: #03DAC6;
    --accent-color: #FFB300;
    --dark-color: #1A1A2E;
    --dark-surface: #232342;
    --dark-elevated: #2A2A4A;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.85);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: var(--dark-color);
    color: var(--text-primary);
}

section {
    padding: 80px 0;
}

/* Sections that should be full viewport height */
#biography,
#contact {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Sections that can scroll naturally */
#discography,
#highlights,
#word-on-streets {
    min-height: auto;
    padding: 100px 0;
}

/* Section backgrounds */
#biography {
    background-color: var(--dark-color);
}

#discography {
    background-color: var(--dark-surface);
}

#achievements {
    background-color: var(--dark-color);
}

#highlights {
    background-color: var(--dark-surface);
}

#word-on-streets {
    background-color: var(--dark-color);
}

#contact {
    background: linear-gradient(135deg, var(--dark-elevated), var(--primary-color));
}

/* Add subtle separators between sections */
#discography,
#highlights {
    border-top: 1px solid var(--dark-elevated);
    border-bottom: 1px solid var(--dark-elevated);
}

.header-gradient {
    position: relative;
    color: var(--text-primary);
    padding: 150px 0;
    overflow: hidden;
    background: #d1d1d1;
}

/* Background image in pseudo-element */
.header-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('images/banner/banner-bg.jpg');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center 10%;
    transform: scale(1.2);
    transform-origin: right top;
    z-index: 0;
    mix-blend-mode: darken;
}

/* Gradient overlays */
.header-gradient::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(187, 134, 252, 0.1) 0%, transparent 50%);
    transform: rotate(-15deg);
    pointer-events: none;
    z-index: 1;
}

/* Container positioning */
.header-gradient .container {
    position: relative;
    z-index: 2;
}

/* Text styles */
.header-gradient h1 {
    font-size:8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0;
    color: var(--dark-color);
    background-size: 200% auto;
    animation: 
        letterSpacing 1.5s ease-out;
}

.header-gradient .flow-title {
    font-size: 2rem;
    font-weight: 500;
    opacity: 0.95;
    margin: 0;
    margin-left: 16px;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    width: 100%;
    animation: slideUpFade 1s ease-out 0.8s both;
    color: var(--dark-color);
}

.header-gradient h1 span {
    display: inline-block;
}

@media (max-width: 1200px) {
    .header-gradient h1 {
        font-size: 6rem;
        letter-spacing: 0.15rem;
    }
    .header-gradient .flow-title {
        font-size: 1.5rem;
        letter-spacing: 0.1rem;
    }
}

@media (max-width: 768px) {
    .header-gradient {
        display: none !important;
    }

    .header-gradient h1 {
        font-size: 4rem;
        letter-spacing: 0.1rem;
    }
    .header-gradient .flow-title {
        font-size: 1rem;
        letter-spacing: 0.05rem;
    }
}

/* Add noise texture overlay */
.header-gradient .noise-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-surface);
    opacity: 0.2;
    pointer-events: none;
    z-index: 1;
}

.navbar {
    background-color: rgba(26, 26, 46, 0.95) !important;
    box-shadow: 0 2px 10px rgba(187, 134, 252, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Custom hamburger icon for dark theme */
.navbar-toggler {
    border-color: rgba(187, 134, 252, 0.5);
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    border-color: var(--primary-color);
    background-color: rgba(187, 134, 252, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(187, 134, 252, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(187, 134, 252, 0.25);
}

.navbar-brand {
    color: var(--text-primary) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.discography-item {
    background: var(--dark-surface);
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(187, 134, 252, 0.1);
}

.discography-item:hover {
    transform: translateY(-5px);
    background: var(--dark-elevated);
    border-color: rgba(187, 134, 252, 0.2);
}

.discography-item h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.discography-item h3::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23BB86FC'%3E%3Cpath d='M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.discography-item:hover h3::after {
    opacity: 1;
    transform: translate(2px, -2px);
}

.discography-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.highlight-card {
    background: var(--dark-elevated);
    border-radius: 15px;
    padding: 15px;
    margin: 20px 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(187, 134, 252, 0.15);
}

.highlight-card:hover {
    background: var(--dark-elevated);
    border-color: rgba(187, 134, 252, 0.3);
    transform: translateY(-3px);
}

.testimonial-card {
    background: var(--dark-surface);
    border-radius: 15px;
    padding: 20px;
    margin: 15px 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(187, 134, 252, 0.15);
}

.testimonial-card:hover {
    background: var(--dark-elevated);
    border-color: rgba(187, 134, 252, 0.3);
    transform: translateY(-3px);
}

.testimonial-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.social-links a {
    margin: 0 10px;
    font-size: 1.2rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 2px solid var(--text-secondary);
}

.social-links a:hover {
    transform: translateY(-3px);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.contact-section {
    background: linear-gradient(135deg, var(--dark-elevated), var(--primary-color));
}

/* Image containers with fixed aspect ratios */
.portrait-container {
    aspect-ratio: 4/3;  /* 800x600 */
    /* min-height: 600px; */
    background-size: cover;
    background-position: center 10%;
    background-repeat: no-repeat;
}

.album-container {
    aspect-ratio: 1/1;  /* Square for album covers */
    /* min-height: 500px; */
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.performance-container {
    aspect-ratio: 3/4;  /* Landscape for performances */
    /* min-height: 450px; */
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
}

.tweet-container {
    aspect-ratio: 13/14;  /* Updated aspect ratio for tweet screenshots */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--dark-elevated);
}

/* Update existing containers */
.img-container {
    overflow: hidden;
    border-radius: 10px;
    margin: 15px 0;
    background: var(--dark-surface);
    transition: transform 0.3s ease;
    position: relative;
}

.img-container:hover {
    transform: scale(1.02);
}

/* Image loading animation */
.img-container:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(187, 134, 252, 0.1) 50%, 
        transparent 100%);
    animation: loading 1.5s infinite;
    pointer-events: none;
}

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .portrait-container {
        min-height: 400px;
    }
    
    .album-container {
        min-height: 300px;
    }
    
    .performance-container {
        min-height: 250px;
    }
    
    .tweet-container {
        min-height: 300px;
    }

    /* Add spacing between testimonial cards on mobile */
    #testimonialsCarousel .col-md-4 {
        margin-bottom: 30px;
    }

    #testimonialsCarousel .carousel-item .row > div:last-child {
        margin-bottom: 0;
    }
}

footer {
    background-color: var(--dark-color);
    color: var(--text-primary);
    padding: 20px 0;
    border-top: 1px solid var(--dark-elevated);
}

.btn-epk {
    background-color: var(--accent-color);
    color: var(--dark-color);
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-epk:hover {
    background-color: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(187, 134, 252, 0.3);
}

/* Dark theme specific text colors */
.text-muted {
    color: var(--text-secondary) !important;
}

/* Carousel Styling */
#discographyCarousel {
    padding: 0 60px;
    margin: 0 -15px;  /* Compensate for item margins */
}

#discographyCarousel .carousel-control-prev,
#discographyCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

#discographyCarousel .carousel-control-prev {
    left: 0;
}

#discographyCarousel .carousel-control-next {
    right: 0;
}

#discographyCarousel .carousel-control-prev:hover,
#discographyCarousel .carousel-control-next:hover {
    opacity: 1;
    background-color: var(--accent-color);
}

#discographyCarousel .carousel-indicators {
    bottom: -50px;
}

#discographyCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.5;
    margin: 0 5px;
}

#discographyCarousel .carousel-indicators button.active {
    opacity: 1;
    background-color: var(--accent-color);
}

/* Add transition for carousel items */
.carousel-item {
    transition: transform .4s ease-out;
}

/* Ensure proper spacing in discography section */
#discography {
    padding-bottom: 150px;
}

/* Remove loading animation from discography items */
#discography .img-container:hover::before {
    display: none;
}

#discography .img-container {
    margin: 0;
    box-shadow: none;
}

#discography .img-container:hover {
    transform: none;
}

/* Achievements Section Styling */
#achievements {
    background-color: var(--dark-color);
    position: relative;
}

.achievement-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.achievement-card {
    background: var(--dark-surface);
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    border: 1px solid rgba(187, 134, 252, 0.1);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    background: var(--dark-elevated);
    border-color: rgba(187, 134, 252, 0.2);
    transform: translateY(-5px);
}

.achievement-card h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 600;
}

.achievement-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.achievement-container {
    aspect-ratio: 4/3;  /* Square aspect ratio */
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    border-radius: 8px;
}

/* Update the image containers for achievements */
#achievements .img-container {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 10px;
    background: var(--dark-surface);
    position: relative;
}

#achievements .img-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, 
        rgba(35, 35, 66, 0.2) 0%,
        rgba(35, 35, 66, 0) 50%);
    pointer-events: none;
}

#achievements .img-container:hover {
    transform: none;
}

/* Testimonial quote styling */
.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.testimonial-card blockquote {
    margin: 0;
}

.testimonial-card blockquote footer {
    font-size: 0.9rem;
    font-weight: 500;
    background-color: transparent;
}

/* Testimonials Carousel Styling */
#testimonialsCarousel {
    padding: 0 60px;
    margin: 0 -15px;
}

#testimonialsCarousel .carousel-control-prev,
#testimonialsCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

#testimonialsCarousel .carousel-control-prev {
    left: 0;
}

#testimonialsCarousel .carousel-control-next {
    right: 0;
}

#testimonialsCarousel .carousel-control-prev:hover,
#testimonialsCarousel .carousel-control-next:hover {
    opacity: 1;
    background-color: var(--accent-color);
}

#testimonialsCarousel .carousel-indicators {
    bottom: -50px;
}

#testimonialsCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.5;
    margin: 0 5px;
}

#testimonialsCarousel .carousel-indicators button.active {
    opacity: 1;
    background-color: var(--accent-color);
}

/* Ensure proper spacing in testimonials section */
#word-on-streets {
    padding-bottom: 150px;
}

/* Update testimonial cards for carousel */
#testimonialsCarousel .testimonial-card {
  display: flex;
    flex-direction: column;
}

#testimonialsCarousel .img-container {
    flex: 0 0 auto;
}

#testimonialsCarousel blockquote {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

#testimonialsCarousel .testimonial-quote {
    flex: 1 0 auto;
}

/* Make discography items clickable */
.discography-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.discography-item-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Ensure the hover effect works on the entire card */
.discography-item-link:hover .discography-item {
    transform: translateY(-5px);
    background: var(--dark-elevated);
    border-color: rgba(187, 134, 252, 0.2);
}

/* Mission text in contact section */
.mission-text {
    color: var(--text-primary);
    font-size: 1.25rem;
    line-height: 1.8;
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
}

.social-links {
    margin-top: 2rem;
}

.social-links .btn {
    margin: 0.5rem;
    min-width: 120px;
}

@media (max-width: 576px) {
    .social-links .btn {
        display: block;
        width: 80%;
        margin: 0.75rem auto;
    }
}

.play-button-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.play-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: breathe 3s ease-in-out infinite;
}

.play-button:hover {
    animation: none;
    transform: scale(1.1);
    background: var(--accent-color);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent var(--text-primary);
    transition: border-color 0.3s ease;
}

.play-button.playing .play-icon {
    width: 20px;
    height: 20px;
    border: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-button.playing .play-icon::before,
.play-button.playing .play-icon::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 16px;
    background-color: var(--text-primary);
    transition: background-color 0.3s ease;
}

.play-button.playing .play-icon::before {
    left: 0;
}

.play-button.playing .play-icon::after {
    right: 0;
}

@keyframes breathe {
    0% {
        transform: scale(0.95);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
}

/* Adding styles for the 'Show all songs' link with hover animation */
.more-songs-link {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding-bottom: 5px;
    margin-top: 2rem;
    display: inline-block;
}

.more-songs-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.more-songs-link:hover {
    color: var(--primary-color);
}

.more-songs-link:hover::after {
    width: 100%;
}

/* Songs Drawer Styles */
.songs-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    z-index: 2000;
    transition: visibility 0s linear 0.3s;
    visibility: hidden;
}

.songs-drawer.active {
    left: 0;
    visibility: visible;
    transition-delay: 0s;
}

.songs-drawer-content {
    position: absolute;
    top: 0;
    left: -480px;
    width: 480px;
    height: 100%;
    background: var(--dark-elevated);
    padding: 2rem;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    transition: left 0.3s ease;
    z-index: 2001;
}

.songs-drawer.active .songs-drawer-content {
    left: 0;
}

.songs-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(187, 134, 252, 0.2);
}

.songs-drawer-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.close-drawer {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.3s ease;
}

.close-drawer:hover {
    color: var(--primary-color);
}

.songs-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.songs-drawer.active .songs-drawer-overlay {
    opacity: 1;
    visibility: visible;
}

.songs-list {
    overflow-y: auto;
    max-height: calc(100vh - 100px);
}

/* Text animations */
@keyframes glowPulse {
   0%, 100% { text-shadow: 0 0 10px rgba(187, 134, 252, 0.2), 0 0 20px rgba(187, 134, 252, 0.1); }
    50% { text-shadow: 0 0 20px rgba(187, 134, 252, 0.4), 0 0 40px rgba(187, 134, 252, 0.2); }
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes letterSpacing {
    0% {
        letter-spacing: -1rem;
        opacity: 0;
        filter: blur(10px);
    }
    50% {
        opacity: 0.5;
        filter: blur(5px);
    }
    100% {
        letter-spacing: 0.2rem;
        opacity: 1;
        filter: blur(0);
    }
}

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

.header-text {
    display: inline-block;
    position: relative;
}

@keyframes glowPulse {
    0%, 100% { 
        filter: drop-shadow(0 0 15px rgba(255, 0, 255, 0.3))
                drop-shadow(0 0 30px rgba(255, 0, 255, 0.2));
    }
    50% { 
        filter: drop-shadow(0 0 25px rgba(255, 0, 255, 0.4))
                drop-shadow(0 0 50px rgba(255, 0, 255, 0.3));
    }
}
