.swiper-pagination {
    bottom: 40px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    left: 0 !important;
}

.swiper-pagination-bullet {
    width: 50px !important;
    height: 6px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 10px !important;
    margin: 0 !important;
    opacity: 1 !important;
    position: relative;
    overflow: hidden;
    transition: width 0.4s ease;
}

.swiper-pagination-bullet-active {
    width: 100px !important;
}

.swiper-pagination-bullet-active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: white;
    animation: charging 5s linear forwards;
}

@keyframes charging {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .swiper-pagination-bullet {
        width: 30px !important;
    }

    .swiper-pagination-bullet-active {
        width: 60px !important;
    }

    .swiper-pagination {
        bottom: 20px !important;
    }
}


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

    100% {
        transform: translateX(200%);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.table-row-hover:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.pos-1 {
    color: #FFD700;
    font-weight: 900;
}

.pos-2 {
    color: #C0C0C0;
    font-weight: 900;
}

.pos-3 {
    color: #CD7F32;
    font-weight: 900;
}

/* Loader Styles */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.loader-wrapper {
    position: relative;
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-logo {
    width: 50%;
    z-index: 10;
    animation: breathe 1s ease-in-out infinite;

}

@keyframes breathe {

    0%,
    100% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}