/* Font Family */
* {
    font-family: 'M PLUS Rounded 1c', sans-serif !important;
}

/* Custom Animations */
@keyframes bounce-slow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-16px);
    }
}
.animate-bounce-slow {
    animation: bounce-slow 3s infinite;
}

@keyframes bounce-slow2 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(12px);
    }
}
.animate-bounce-slow2 {
    animation: bounce-slow2 3.5s infinite;
}

@keyframes spin-slow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.animate-spin-slow {
    animation: spin-slow 8s linear infinite;
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-fade-in {
    animation: fade-in 0.5s;
}

.marquee {
    animation: scroll-left 50s linear infinite;
}

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

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

.animate-slideUp {
    animation: slideUp 0.5s ease-in-out;
}

/* Category button active state */
.category-btn.active {
    background: linear-gradient(to right, #5d06b5, #9c0cd0);
    color: white;
}

/* Hide scrollbar */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Swiper custom styles */
.swiper-button-prev-custom,
.swiper-button-next-custom {
    opacity: 0;
    transition: opacity 0.3s;
}

.group:hover .swiper-button-prev-custom,
.group:hover .swiper-button-next-custom {
    opacity: 1;
}

/* Form input focus states */
input:focus,
select:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(251, 146, 60, 0.5);
}

/* Gradient text (optional) */
.gradient-text {
    background: linear-gradient(to right, #5d06b5, #9c0cd0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile menu transition */
.mobile-menu {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
}

.mobile-menu.open {
    max-height: 400px;
    opacity: 1;
}

/* FAQ accordion transition */
.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.faq-answer.open {
    max-height: 500px;
    opacity: 1;
}

/* Program card hover */
.program-card {
    transition: all 0.5s;
}

.program-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Floating video dragging */
.floating-video.dragging {
    cursor: grabbing !important;
}

/* Smooth follower cursor (optional) */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: linear-gradient(to right, #5d06b5, #9c0cd0);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

.cursor-ring {
    position: fixed;
    width: 28px;
    height: 28px;
    border: 2px solid rgba(93, 6, 181, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-ring.hover {
    width: 44px;
    height: 44px;
    border-color: rgba(156, 12, 208, 0.8);
}
