.cs-protected-bar {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 10px 16px;
    box-sizing: border-box;
    background: #0b1220;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.cs-protected-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 6px;
    text-decoration: none !important;
    color: #ffffff !important;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.cs-protected-badge:hover,
.cs-protected-badge:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
    outline: none;
}

.cs-protected-badge__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
}

.cs-protected-badge__icon img {
    display: block;
    width: 16px;
    height: 20px;
}

.cs-protected-badge__copy {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    line-height: 1.2;
}

.cs-protected-badge__label,
.cs-protected-badge__brand {
    color: #ffffff;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.cs-protected-badge__label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
}

.cs-protected-badge__brand {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.cs-protected-badge__status {
    width: 8px;
    height: 8px;
    margin-left: 2px;
    flex-shrink: 0;
}

.cs-protected-badge__pulse {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);
    animation: cs-protected-pulse 2s ease-out infinite;
}

@keyframes cs-protected-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@media (max-width: 640px) {
    .cs-protected-bar {
        padding: 8px 12px;
    }

    .cs-protected-badge {
        padding: 5px 12px 5px 5px;
    }

    .cs-protected-badge__label {
        font-size: 10px;
        letter-spacing: 0.08em;
    }

    .cs-protected-badge__brand {
        font-size: 13px;
    }
}
