.mission-floating {
    position: fixed;
    right: 20px;
    width: 120px;
    bottom: 13%;
    z-index: 1000;
    animation: floatIn 1s ease-out, float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.mission-floating:hover {
    transform: scale(1.1);
}

.mission-floating img {
    height: auto;
}



/* Entry animation */
@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Continuous floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mission-floating {
    }
    
    .mission-floating img {
        /* max-width: 60px; */
    }
}
.mission_bg{
    background: url('../images/mission/bg-mission.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    /* display: flex; */
    align-items: center;
    padding-top: 50px;
    padding-bottom: 70px;
}

.mission_cards_container {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.mission_card {
    position: relative;
    /* width: 200px; */
    transition: transform 0.3s ease;
}

.mission_card:hover {
    transform: scale(1.05);
}

.mission_frame {
    position: relative;
    width: 100%;
    height: 100%;
}

.mission_frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mission_content {
    position: absolute;
    top: 52%;
    height: 190px;
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.mission_header {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.mission_title {
    font-size: 17px;
    font-weight: bold;
    color: #6CFFFD;
}

.mission_amount {
    font-size: 24px;
    font-weight: bold;
    color: #6CFFFD;
    line-height: 1;
}

.btn_claim {
    background: none;
    border: none;
    width: 100%;
    position: absolute;
    left: 50%;
    bottom: 5%;
    transform: translateX(-50%);
    cursor: pointer;
    transition: transform 0.2s ease;
    padding: 0;
}

.btn_claim:hover {
    transform: translateX(-50%) scale(1.1);
}

.btn_claim img {
    width: 120px;
    height: auto;
}

.mission_banner img{
    width: 100%;
    text-align: center;
}