.mission-floating {
    position: fixed;
    left: 20px;
    width: 150px;
    bottom: 20px;
    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 {
        left: 15px;
        bottom: 15px;
    }
    
    .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;
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.mission_cards_container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
}

.mission_card {
    position: relative;
    width: 200px;
    height: 280px;
    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: 53%;
    height: 220px;
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.mission_header {
    font-size: 14px;
    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: 10%;
    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: 140px;
    height: auto;
}

.mission_banner img{
    width: 100%;
    text-align: center;
}