.magic-button {
    background: linear-gradient(70deg, #DC143C, #FF8C00, #32CD32);
    border: none;
    border-radius: 20px;
    padding: 15px 30px;
    color: var(--primary-color);
    font-size: 14px;
    cursor: pointer;
    height: 35px;
    width: 100%;
    max-width: 200px;
    transition: background 0.3s ease, transform 0.3s ease;
    transform: scale(1);
    background-size: 200% 200%;
    animation: gradient-animation 8s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .magic-button:hover {
        background: linear-gradient(70deg, #FF8C00, #FFD700, #32CD32);
        transform: scale(1.02);
        background-size: 200% 200%;
        animation: gradient-animation 8s ease infinite;
    }

    .magic-button:focus {
        outline: none;
    }

.magic-text {
    background: linear-gradient(70deg, #DC143C, #FF8C00, #32CD32);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
    background-size: 200% 200%;
    animation: gradient-animation 8s ease infinite;
    transition: transform 0.3s ease;
}

    .magic-text:hover {
        background: linear-gradient(70deg, #FF8C00, #FFD700, #32CD32);
        background-clip: text;
        -webkit-text-fill-color: transparent;
        background-size: 200% 200%;
        animation: gradient-animation 8s ease infinite;
    }

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.loading-container {
    width: 100%;
    max-width: 500px;
    background-color: #e0e0e0;
    border-radius: 7px;
    padding: 2px;
    margin: 20px auto;
}

.loading-bar {
    width: 100%;
    height: 20px;
    background: linear-gradient(70deg, #DC143C, #FF8C00, #32CD32);
    border-radius: 5px;
    background-size: 200% 200%;
    animation: gradient-animation 3s ease infinite; /* Gradient animation */
    text-align: center;
    color: var(--primary-color);
}
