#clo-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #545454 !important;
    color: #ffffff !important;
    padding: 16px 24px;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 99999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    flex-wrap: wrap;
    text-align: center;
    line-height: 1.5;
}

#clo-banner p {
    margin: 0;
    flex: 1;
    min-width: 250px;
    color: #ffffff !important;
    font-weight: 400;
}

#clo-banner a {
    color: #ffffff !important;
    text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.2s;
}

#clo-banner a:hover {
    opacity: 0.8;
}

#clo-accept {
    background: #000000;
    color: #ffffff !important;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 100px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    user-select: none;
}

#clo-accept:hover {
    background: #1a1a1a;
}

#clo-accept:active {
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
    background: #1a1a1a;
}

#clo-close {
    cursor: pointer;
    font-size: 22px;
    color: #ffffff !important;
    font-weight: bold;
    padding: 0 10px;
    user-select: none;
    transition: opacity 0.2s;
    border: none;
    background: none;
}

#clo-close:hover {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 680px) {
    #clo-banner {
        flex-direction: column;
        gap: 14px;
        padding: 18px 16px;
        text-align: center;
    }
    #clo-banner p {
        font-size: 13.5px;
        min-width: auto;
    }
    #clo-accept {
        width: 100%;
        max-width: 160px;
    }
    #clo-close {
        position: absolute;
        top: 10px;
        right: 15px;
    }
}