.ad-banner-section {
    margin-top: 20px;
}

.ad-banner-section .ad-banner,
.ad-banner-section-2 .ad-banner {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all .4s cubic-bezier(.4,0,.2,1);
}

.ad-banner-section .ad-banner-content,
.ad-banner-section-2 .ad-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(16px, 4vw, 40px);
    padding: clamp(24px, 5vw, 56px) clamp(20px, 4vw, 56px);
}

.ad-banner-section .ad-banner {
    background: linear-gradient(120deg, #ffffff 0%, #f8f9fb 50%, #ffffff 100%);
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 0 0 1px rgba(255,255,255,.5) inset, 0 10px 40px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.05);
}

.ad-banner-section .ad-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 0 1px rgba(255,107,0,.15) inset, 0 18px 50px rgba(0,0,0,.12), 0 5px 15px rgba(255,107,0,.1);
    border-color: rgba(255,107,0,.2);
}

.ad-banner-section .ad-banner::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(255,145,0,.1) 0%, rgba(255,200,150,.05) 35%, transparent 70%);
    animation: fire-breathe 5s ease-in-out infinite;
    pointer-events: none;
    mix-blend-mode: multiply;
}

.ad-banner-section .ad-banner::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -60px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(255,160,50,.08) 0%, transparent 70%);
    animation: fire-breathe 7s ease-in-out infinite reverse;
    pointer-events: none;
    mix-blend-mode: multiply;
}

@keyframes fire-breathe {
    0%, 100% { transform: scale(1) translate(0,0); opacity: .7; }
    50% { transform: scale(1.1) translate(-15px,15px); opacity: 1; }
}

.ad-banner-section .ad-banner-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: rgba(255,85,0,.9);
    background: rgba(255,107,0,.08);
    border: 1px solid rgba(255,107,0,.2);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: clamp(10px, 2vw, 20px);
}

.ad-banner-section .ad-banner-label::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent-primary);
    animation: ad1-blink 2s ease-in-out infinite;
}

@keyframes ad1-blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(255,107,0,.8); }
    50% { opacity: .4; box-shadow: none; }
}

.ad-banner-section .ad-banner-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(18px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: clamp(8px, 1.5vw, 18px);
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 50%, #ff6b00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -.03em;
}

.ad-banner-section .ad-banner-description {
    font-size: clamp(13px, 2vw, 16px);
    color: rgba(0,0,0,.65);
    line-height: 1.7;
    margin-bottom: clamp(16px, 3vw, 36px);
}

.ad-banner-section .ad-banner-cta,
.ad-banner-section-2 .ad-banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: clamp(12px, 1.5vw, 16px) clamp(20px, 3vw, 36px);
    border-radius: 14px;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: clamp(13px, 2vw, 15px);
    letter-spacing: .01em;
    text-decoration: none;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
}

.ad-banner-section .ad-banner-cta { background: linear-gradient(135deg, var(--accent-primary) 0%, #ff3d00 100%); color: #fff; box-shadow: 0 6px 20px rgba(255,81,0,.3); }
.ad-banner-section .ad-banner-cta:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 30px rgba(255,81,0,.4); }

.ad-banner-section .ad-banner-visual,
.ad-banner-section-2 .ad-banner-visual {
    flex-shrink: 0;
    width: clamp(80px, 15vw, 180px);
    height: clamp(80px, 15vw, 180px);
}

.ad-banner-section .ad-banner-icon,
.ad-banner-section-2 .ad-banner-icon {
    width: 100%; height: 100%;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-banner-section .ad-banner-icon { background: linear-gradient(145deg, #ffffff 0%, rgba(255,235,220,.5) 100%); border: 1px solid rgba(255,107,0,.15); }
.ad-banner-section .ad-banner-icon svg { width: clamp(40px, 8vw, 80px); height: clamp(40px, 8vw, 80px); color: var(--accent-primary); filter: drop-shadow(0 4px 8px rgba(255,107,0,.3)); }

.ad-banner-section.narrow .ad-banner {
    border-radius: 20px;
}

.ad-banner-section.narrow .ad-banner-content {
    padding: 14px 24px;
    gap: 16px;
}

.ad-banner-section.narrow .ad-banner-visual { width: 56px; height: 56px; }

.ad-banner-section.narrow .ad-banner-icon { border-radius: 12px; }

.ad-banner-section.narrow .ad-banner-icon svg { width: 28px; height: 28px; }

.ad-banner-section.narrow .ad-banner-text { flex-grow: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }

.ad-banner-section.narrow .ad-banner-header { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.ad-banner-section.narrow .ad-banner-label { margin-bottom: 0; padding: 3px 10px; font-size: 9px; }

.ad-banner-section.narrow .ad-banner-title { font-size: clamp(14px, 2.5vw, 20px); margin-bottom: 0; }

.ad-banner-section.narrow .ad-banner-description { font-size: clamp(12px, 1.8vw, 14px); margin-bottom: 0; max-width: 500px; }

.ad-banner-section.narrow .ad-banner-cta { padding: 10px 20px; font-size: 13px; border-radius: 10px; }

.ad-banner-section.narrow .ad-banner-actions { flex-shrink: 0; }

.ad-banner-section-2 { margin-bottom: clamp(40px, 8vw, 60px); }

.ad-banner-section-2 .ad-banner {
    background: linear-gradient(135deg, #0a1628 0%, #0d2240 35%, #071523 100%);
    border: 1px solid rgba(56,189,248,.15);
    box-shadow: 0 0 0 1px rgba(255,255,255,.03) inset, 0 18px 60px rgba(0,0,0,.4), 0 0 60px rgba(56,189,248,.05);
}

.ad-banner-section-2 .ad-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 0 1px rgba(56,189,248,.2) inset, 0 24px 80px rgba(0,0,0,.45), 0 0 80px rgba(56,189,248,.1);
    border-color: rgba(56,189,248,.28);
}

.ad-banner-section-2 .ad-banner::before {
    content: '';
    position: absolute;
    top: -100px; right: -60px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(56,189,248,.14) 0%, rgba(99,102,241,.08) 45%, transparent 70%);
    animation: blue-drift 6s ease-in-out infinite;
    pointer-events: none;
}

.ad-banner-section-2 .ad-banner::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(99,102,241,.1) 0%, rgba(56,189,248,.05) 50%, transparent 75%);
    animation: blue-drift 8s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes blue-drift {
    0%, 100% { transform: translate(0,0) scale(1); opacity: .7; }
    50% { transform: translate(-30px,-20px) scale(1.1); opacity: 1; }
}

.ad-banner-section-2 .ad-banner-text { position: relative; padding-left: 20px; }

.ad-banner-section-2 .ad-banner-text::after {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 3px; height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(56,189,248,.6) 30%, rgba(99,102,241,.6) 70%, transparent 100%);
    animation: scan-vert 3s ease-in-out infinite;
    border-radius: 2px;
}

@keyframes scan-vert {
    0%, 100% { opacity: .4; transform: scaleY(.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

.ad-banner-section-2 .ad-banner-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: rgba(56,189,248,.9);
    background: rgba(56,189,248,.08);
    border: 1px solid rgba(56,189,248,.22);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: clamp(10px, 2vw, 20px);
}

.ad-banner-section-2 .ad-banner-label::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #38bdf8;
    animation: ad2-blink 2s ease-in-out infinite;
}

@keyframes ad2-blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(56,189,248,.9); }
    50% { opacity: .3; box-shadow: none; }
}

.ad-banner-section-2 .ad-banner-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(18px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: clamp(8px, 1.5vw, 18px);
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 40%, #7dd3fc 70%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -.03em;
}

.ad-banner-section-2 .ad-banner-description { font-size: clamp(13px, 2vw, 16px); color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: clamp(16px, 3vw, 36px); }

.ad-banner-section-2 .ad-banner-cta { background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%); color: #fff; box-shadow: 0 6px 28px rgba(14,165,233,.4), 0 0 0 1px rgba(255,255,255,.08) inset; }
.ad-banner-section-2 .ad-banner-cta:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 40px rgba(14,165,233,.5), 0 6px 20px rgba(99,102,241,.3); }

.ad-banner-section-2 .ad-banner-icon { background: linear-gradient(145deg, rgba(56,189,248,.12) 0%, rgba(99,102,241,.08) 100%); border: 1.5px solid rgba(56,189,248,.2); }
.ad-banner-section-2 .ad-banner-icon svg { width: clamp(40px, 8vw, 80px); height: clamp(40px, 8vw, 80px); color: #38bdf8; filter: drop-shadow(0 0 16px rgba(56,189,248,.5)); }

.cs-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s cubic-bezier(.4,0,.2,1);
}

.cs-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

.cs-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 20, .75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.cs-card {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, #0d0f1c 0%, #131629 50%, #0d0f1c 100%);
    border: 1.5px solid rgba(255, 107, 0, .22);
    border-radius: 28px;
    padding: clamp(36px, 6vw, 64px) clamp(28px, 5vw, 72px);
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow:
        0 0 0 1px rgba(255,107,0,.06),
        0 24px 80px rgba(0,0,0,.6),
        0 0 120px rgba(255,107,0,.08);
    transform: translateY(24px) scale(.96);
    transition: transform .4s cubic-bezier(.34,1.56,.64,1);
    overflow: hidden;
}

.cs-overlay.is-open .cs-card {
    transform: translateY(0) scale(1);
}

.cs-card::before {
    content: '';
    position: absolute;
    top: -120px; left: 50%;
    transform: translateX(-50%);
    width: 380px; height: 380px;
    background: radial-gradient(ellipse, rgba(255,107,0,.18) 0%, transparent 65%);
    pointer-events: none;
    animation: cs-breathe 4s ease-in-out infinite;
}

.cs-card::after {
    content: '';
    position: absolute;
    bottom: -80px; right: -60px;
    width: 260px; height: 260px;
    background: radial-gradient(ellipse, rgba(139,92,246,.1) 0%, transparent 65%);
    pointer-events: none;
    animation: cs-breathe 6s ease-in-out infinite reverse;
}

@keyframes cs-breathe {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: .7; }
    50% { transform: translateX(-50%) scale(1.15); opacity: 1; }
}

.cs-card::after { transform: none; }

.cs-glow-line {
    position: absolute;
    top: 0; left: 15%; right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,107,0,.9), rgba(255,143,61,1), rgba(255,107,0,.9), transparent);
    border-radius: 2px;
    animation: cs-line-pulse 3s ease-in-out infinite;
}

@keyframes cs-line-pulse {
    0%, 100% { opacity: .5; transform: scaleX(.7); }
    50% { opacity: 1; transform: scaleX(1); }
}

.cs-icon {
    width: 72px; height: 72px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, rgba(255,107,0,.15) 0%, rgba(255,143,61,.08) 100%);
    border: 1.5px solid rgba(255,107,0,.3);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 32px rgba(255,107,0,.15), inset 0 1px 0 rgba(255,107,0,.15);
    animation: cs-icon-float 3s ease-in-out infinite;
}

@keyframes cs-icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.cs-icon::before {
    content: '';
    position: absolute;
    inset: -7px;
    border-radius: 28px;
    border: 1.5px dashed rgba(255,107,0,.25);
    animation: icon-rotate 10s linear infinite;
}

.cs-icon svg {
    width: 34px; height: 34px;
    color: #ff8f3d;
    filter: drop-shadow(0 0 10px rgba(255,107,0,.55));
}

.cs-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,107,0,.1);
    border: 1px solid rgba(255,107,0,.25);
    color: #ff8f3d;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .18em;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.cs-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #ff6b00;
    animation: pulse-live 2s ease-in-out infinite;
}

.cs-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.1;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #ffffff 0%, #ffe0c8 50%, #ff8f3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.cs-desc {
    font-size: clamp(13px, 2vw, 15px);
    color: rgba(255,255,255,.5);
    line-height: 1.75;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.cs-divider {
    width: 40px; height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
    margin: 0 auto 28px;
    box-shadow: 0 0 10px rgba(255,107,0,.4);
}

.cs-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #ff3d00 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 6px 24px rgba(255,107,0,.35), inset 0 1px 0 rgba(255,255,255,.15);
    position: relative;
    z-index: 1;
    letter-spacing: .01em;
}

.cs-close:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 36px rgba(255,107,0,.5);
}

.cs-close:active { transform: scale(.98); }

.cs-close-x {
    position: absolute;
    top: 18px; right: 18px;
    width: 36px; height: 36px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
    z-index: 2;
}

.cs-close-x:hover { background: rgba(255,107,0,.15); border-color: rgba(255,107,0,.3); }
.cs-close-x svg { width: 16px; height: 16px; color: rgba(255,255,255,.6); }

.cs-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 28px;
}

.cs-particle {
    position: absolute;
    width: 3px; height: 3px;
    background: rgba(255,107,0,.6);
    border-radius: 50%;
    animation: cs-particle-float linear infinite;
}

@keyframes cs-particle-float {
    0% { transform: translateY(0) scale(1); opacity: .8; }
    100% { transform: translateY(-100px) scale(0); opacity: 0; }
}

@media (max-width: 899px) {
    .ad-banner-section .ad-banner-visual,
    .ad-banner-section-2 .ad-banner-visual {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 599px) {

    .ad-banner-section .ad-banner-content,
    .ad-banner-section-2 .ad-banner-content {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }

    .ad-banner-section .ad-banner-visual,
    .ad-banner-section-2 .ad-banner-visual { display: none; }

    .ad-banner-section .ad-banner-cta,
    .ad-banner-section-2 .ad-banner-cta { width: 100%; justify-content: center; }

    .ad-banner-section-2 { margin-top: 0; }

    .ad-banner-section.narrow .ad-banner-content {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 12px;
        padding: 12px 16px;
    }

    .ad-banner-section.narrow .ad-banner-visual {
        display: flex;
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }

    .ad-banner-section.narrow .ad-banner-icon { border-radius: 10px; }

    .ad-banner-section.narrow .ad-banner-icon svg { width: 22px; height: 22px; }

    .ad-banner-section.narrow .ad-banner-text {
        flex: 1;
        min-width: 0;
        gap: 2px;
    }

    .ad-banner-section.narrow .ad-banner-header {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .ad-banner-section.narrow .ad-banner-label {
        margin-bottom: 0;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .ad-banner-section.narrow .ad-banner-title {
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 0;
    }

    .ad-banner-section.narrow .ad-banner-description { display: none; }

    .ad-banner-section.narrow .ad-banner-actions { flex-shrink: 0; }

    .ad-banner-section.narrow .ad-banner-cta {
        padding: 9px 14px;
        font-size: 12px;
        border-radius: 9px;
        gap: 5px;
        width: auto;
    }

    .ad-banner-section.narrow .ad-banner-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }

    .ad-banner-section.narrow .ad-banner-label {
        font-size: 8.5px;
        padding: 2px 8px;
        margin-bottom: 0;
    }

    .ad-banner-section.narrow .ad-banner-title {
        font-size: 12px;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        line-height: 1.3;
        display: -webkit-box;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

@media print {
    .ad-banner-section,
    .ad-banner-section-2 { display: none; }
}