.caads-banner {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99999;
    max-width: 320px;
    width: calc(100% - 40px);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    animation: caads-fade-in .4s ease-out;
}

.caads-banner img {
    display: block;
    width: 100%;
    height: auto;
}

.caads-banner .caads-link {
    display: block;
    line-height: 0;
    cursor: pointer;
}

.caads-banner .caads-close {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 2;
    transition: background .2s;
}

.caads-banner .caads-close:hover {
    background: rgba(0, 0, 0, 0.85);
}

.caads-banner.caads-hidden {
    display: none !important;
}

@keyframes caads-fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .caads-banner {
        right: 10px;
        bottom: 10px;
        max-width: 260px;
    }
}

.caads-inline {
    margin: 32px auto;
    max-width: 1400px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.caads-inline img {
    display: block;
    width: 100%;
    height: auto;
}

.caads-inline .caads-link {
    display: block;
    line-height: 0;
}
