/* Base styles */
/* :root {
    --primary-color: #8A2BE2;
    --secondary-color: #FF1493;
    --background-color: #FDF4FF;
    --text-color: #333;
    --border-radius: 12px;
} */

/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
} */

/* body {
    background-color: var(--background-color);
    color: var(--text-color);
} */

/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
} */

/* Custom animations */
@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-spin-slow {
    animation: spin-slow 15s linear infinite;
}

/* Ensure animations work properly */
/* .animate__animated {
    opacity: 0;
}

.animate__animated.animate__animated--visible {
    opacity: 1;
}

.animate__fadeIn {
    animation-name: fadeIn;
    animation-duration: 1s;
}

.animate__fadeInLeft {
    animation-name: fadeInLeft;
    animation-duration: 1s;
}

.animate__fadeInRight {
    animation-name: fadeInRight;
    animation-duration: 1s;
} */

/* @keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
} */

/* @keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
} */

/* @keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
} */