.gone-wrapper {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E6EEFF;
    padding: 20px;
}

.gone-wrapper .gone-card {
    background: #fef5eb;
    border-radius: 20px;
    padding: 60px 50px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    animation: scaleFade 0.6s ease-out;
}

.gone-wrapper .animation_holder {
    margin-bottom: 20px;
}


.gone-wrapper .gone-code {
    font-size: 96px;
    font-weight: 800;
    color: #be7f47;
    margin-bottom: 10px;
    animation: float 3s ease-in-out infinite;
}

.gone-wrapper .gone-title {
    font-size: 21px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.gone-wrapper .gone-text {
    font-size: 15px;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.6;
}

.gone-wrapper .gone-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #1F2A44;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    color: #fff;
}

/* Animations */
@keyframes scaleFade {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


@media (min-width: 0px) and (max-width: 575px) {
    .gone-wrapper .gone-card {
        padding: 20px;
    }

    .gone-wrapper .gone-code {
        font-size: 68px;
    }

    .gone-wrapper .gone-title {
        font-size: 17px;
    }
}