.footer-links {
    padding-block: 50px;
}
@media (min-width: 992px) {
    .footer-links {
        padding-block: 60px;
    }
}
/* Sponsor Slider Styles */
.sponsor-slider {
    overflow: hidden;
    padding: 20px 0;
}
.sponsor-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.sponsor-slider .sponsor-img {
    display: block;
    width: 100%;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: grayscale(100%);
}
.sponsor-slider .sponsor-img:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%);
}
.sponsor-slider .sponsor-img img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
/* Banner Special Effects */
.banner-section.style-2 {
    position: relative;
    overflow: hidden;
}
.banner-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
.banner-section .container {
    position: relative;
    z-index: 2;
}
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.floating-emoji {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: floatEmoji 15s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.5));
}
@keyframes floatEmoji {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(30px, -50px) rotate(90deg) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, -100px) rotate(180deg) scale(0.9);
        opacity: 0.6;
    }
    75% {
        transform: translate(40px, -30px) rotate(270deg) scale(1.1);
        opacity: 0.7;
    }
}
.text-shimmer {
    background: linear-gradient(90deg, #fff 0%, #00e5ff 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}
.banner-title-animate {
    animation: fadeInUp 1s ease-out;
}
.banner-subtitle-animate {
    animation: fadeInUp 1.2s ease-out;
}
.banner-text-animate {
    animation: fadeInUp 1.4s ease-out;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.btn-pulse {
    animation: pulseGlow 2s ease-in-out infinite;
}
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 229, 255, 0.6), 0 0 40px rgba(0, 229, 255, 0.4);
    }
}
@media (max-width: 768px) {
    .floating-emoji {
        font-size: 1.5rem;
    }
}

