
/* Fizzy Filters Banner Styles */

.fizzy-banner {
    position: relative;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.8) 0%, rgba(236, 72, 153, 0.5) 50%, rgba(245, 158, 11, 0.5) 100%);
    padding: 3rem 2rem;
    margin: 4rem auto;
    width: 30vw;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.fizzy-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
    animation: gridPulse 20s linear infinite;
    pointer-events: none;
}

.fizzy-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        rgba(0, 0, 0, 0.35),
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(236, 72, 153, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(245, 158, 11, 0.3) 0%, transparent 50%);
    animation: colorPulse 8s ease-in-out infinite;
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.banner-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.95);
    animation: float 3s ease-in-out infinite;
    color: #6366f1;
    opacity: 1;
}

.banner-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    margin: 0 0 1rem 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8),
                 0 2px 10px rgba(0, 0, 0, 0.9);
    animation: titlePop 1s ease-out;
    opacity: 1;
    color: white;
}

.banner-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin: 0 0 2rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8),
                 0 1px 5px rgba(0, 0, 0, 0.9);
    opacity: 1;
    color: white;
}

.banner-cta {
    display: inline-block;
    background: white;
    color: #6366f1;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.banner-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.banner-cta:hover::before {
    width: 500px;
    height: 500px;
}

.banner-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.banner-cta span {
    position: relative;
    z-index: 1;
}

.glitch-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.glitch-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: dotGlitch 3s infinite;
}

.glitch-dot:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.glitch-dot:nth-child(2) { top: 40%; left: 80%; animation-delay: 0.5s; }
.glitch-dot:nth-child(3) { top: 60%; left: 30%; animation-delay: 1s; }
.glitch-dot:nth-child(4) { top: 80%; left: 70%; animation-delay: 1.5s; }
.glitch-dot:nth-child(5) { top: 30%; left: 50%; animation-delay: 2s; }

@keyframes gridPulse {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes colorPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes titlePop {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes dotGlitch {
    0%, 90%, 100% { opacity: 0; }
    10%, 80% { opacity: 0.8; }
    45% { opacity: 0.3; }
}

@media (max-width: 768px) {
    .fizzy-banner {
        width: 90vw;
        padding: 2rem 1rem;
        margin: 2rem auto;
    }

    .banner-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Tablet: Wider banners */
@media (min-width: 769px) and (max-width: 1024px) {
    .fizzy-banner {
        width: 80vw;
    }
}

/* Desktop: Even wider banners */
@media (min-width: 1025px) {
    .fizzy-banner {
        width: 65vw;
    }
}
