.footer_coala {
    background: radial-gradient(circle at top, #0f2027, #1a1a1a 60%, #000 100%);
    color: #EAEAEA;
    font-family: 'Poppins', sans-serif;
    padding: 50px 20px 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer_content {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.footer_logo {
    width: 110px;
    filter: drop-shadow(0 0 8px rgba(0, 173, 181, 0.4));
}

.footer_text {
    font-size: 15px;
    color: #C9C9C9;
    line-height: 1.6;
}

.footer_nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    font-size: 15px;
    margin-top: 10px;
}

.footer_nav a {
    color: #BFBFBF;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer_nav a:hover {
    color: #00ADB5;
    transform: translateY(-2px);
}

.footer_social {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 25px;
}

.footer_social a {
    color: #BFBFBF;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer_social a:hover {
    color: #00ADB5;
    transform: scale(1.2);
}

.footer_divider {
    width: 80%;
    height: 1px;
    background: rgba(255,255,255,0.1);
    border: none;
    margin: 20px 0;
}

.footer_rights {
    font-size: 13px;
    color: #777;
}

.footer_btn_report {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 18px;
    background-color: rgba(0, 173, 181, 0.15);
    color: #00ADB5;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #00ADB5;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer_btn_report:hover {
    background-color: #00ADB5;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 173, 181, 0.4);
}

.footer_btn_report:active {
    transform: translateY(1px);
    box-shadow: 0 2px 6px rgba(0, 173, 181, 0.4);
    background-color: #00ADB5;
    color: #fff;
}


@media (max-width: 600px) {
    .footer_nav {
        gap: 18px;
        font-size: 14px;
    }

    .footer_text {
        font-size: 14px;
    }

    .footer_social {
        gap: 18px;
        font-size: 22px;
    }
}
