* {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
    font-family: 'Archivo Black';    
}
@keyframes customBounce {
    30% {
        transform: scale(1.2);
    }

    40%,
    60% {
        transform: rotate(-20deg) scale(1.2);
    }

    50% {
        transform: rotate(20deg) scale(1.2);
    }

    70% {
        transform: rotate(0deg) scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-in-left {
    animation: slideInLeft 3s ease-in-out forwards;
}

.slide-in-right {
    animation: slideInRight 3s ease-in-out forwards;
}

.section-spacing {
    padding: 4rem 2rem; /* Increased padding for more spacing between sections */
}

.img-spacing {
    margin-bottom: 2rem;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s;
}

.overlay.active {
    visibility: visible;
    opacity: 1;
}

.overlay-content {
    background: #1a202c;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.overlay-content h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #ffffff;
}

.overlay-content input {
    width: 100%;
    padding: 0.5rem;
    margin: 0.5rem 0;
    border: none;
    border-radius: 0.25rem;
}

.overlay-content button {
    background: #38b2ac;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
}

.overlay-content .g-recaptcha {
    margin: 1rem 0;
}

.alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1a202c;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    color: white; /* Added to make the text white */
}

.alert.active {
    opacity: 1;
    visibility: visible;
}

.alert img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.alert button {
    background: #38b2ac;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    margin-top: 1rem;
}

/* New styles for images */
.imglogo,
.main-logo img {
    border-radius: 15px; /* Add border-radius for rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow for comic effect */
}

/* Adding spacing between sections */
.section-fade + .section-fade {
    margin-top: 2rem;
}

.about-logos {
    animation: customBounce 1.5s infinite;
}
.w-full button:hover .svgg path {
    fill: black;
}

/* New style for smaller button */
.features-text button {
    width: 70%;
    margin-top: 1rem;
}

/* coin animation */
#coin-animation {
    animation: fadeOut 1s ease-out 3s forwards; /* Fade out after 3 seconds */
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes spin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

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

