/* Cloudflare Turnstile widget - 300x65 light */

#cf-widget {
    width: 300px;
    min-height: 65px;
    border: 1px solid #e0e0e0;
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    user-select: none;
    transition: height 0.25s ease;
}

#cf-widget .widget-top {
    display: grid;
    grid-template-columns: 1fr 88px;
    align-items: center;
    min-height: 65px;
    height: auto;
    flex-shrink: 0;
}

#cf-widget .widget-body {
    display: flex;
    align-items: center;
    padding: 8px 4px 8px 13px;
    min-width: 0;
    overflow: visible;
}

#cf-widget .cb-lb {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    width: 100%;
    min-width: 0;
}

#cf-widget .cb-lb input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}

#cf-widget .cb-ch {
    width: 28px;
    height: 28px;
    border: 2px solid #c4c4c4;
    border-radius: 2px;
    background: #fff;
    flex-shrink: 0;
}

#cf-widget .cb-lb-t {
    font-size: 11.5px;
    line-height: 1.25;
    color: #000;
    white-space: normal;
    word-break: break-word;
    overflow: visible;
    text-overflow: unset;
    hyphens: auto;
}

#cf-widget .cb-container {
    display: none;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-width: 0;
}

#cf-widget .cb-container.active {
    display: flex;
}

#cf-widget .cb-c.hidden {
    display: none;
}

#cf-widget .cb-c {
    display: block;
    width: 100%;
    min-width: 0;
}

#cf-widget .verifying-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#cf-widget .verifying-icon svg {
    width: 24px;
    height: 24px;
    animation: cf-widget-spin 0.9s linear infinite;
}

#cf-widget .success-icon {
    width: 28px;
    height: 28px;
    border-radius: 2px;
    background: #038127;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: cf-widget-pop 0.3s ease-out;
}

#cf-widget .success-icon svg {
    width: 18px;
    height: 18px;
}

#cf-widget #branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    flex-shrink: 0;
}

#cf-widget #branding .logo-img {
    width: 28px;
    height: 26px;
    object-fit: contain;
    object-position: center;
    margin-bottom: 2px;
    display: block;
    flex-shrink: 0;
}

#cf-widget #branding .logo-text {
    font-size: 7px;
    font-weight: 700;
    color: #404040;
    letter-spacing: 0.8px;
    line-height: 1;
    margin-bottom: 2px;
}

#cf-widget #branding .logo-links {
    font-size: 7px;
    color: #666;
    line-height: 1.2;
    white-space: nowrap;
}

#cf-widget #branding .logo-links a {
    color: #666;
    text-decoration: none;
}

#cf-widget #branding .logo-links a:hover {
    text-decoration: underline;
}

#cf-widget.busy .cb-lb {
    cursor: default;
    pointer-events: none;
}

#cf-widget .widget-expand {
    display: none;
    padding: 10px 13px 12px;
    border-top: 1px solid #e8e8e8;
    background-color: #fafafa;
}

#cf-widget.expanded .widget-expand {
    display: block;
}

#cf-widget .prove-title {
    font-size: 13px;
    font-weight: 400;
    color: #000;
    line-height: 1.4;
    margin-bottom: 8px;
}

#cf-widget .prove-step {
    font-size: 11px;
    font-weight: 400;
    color: #444;
    line-height: 1.5;
    margin-bottom: 4px;
}

#cf-widget .prove-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff8e6;
    border: 1px solid #f5d061;
    border-left: 4px solid #f6821f;
    border-radius: 3px;
    padding: 10px 10px 10px 8px;
    margin-bottom: 8px;
}

#cf-widget .prove-alert-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: #f6821f;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    margin-top: 1px;
}

#cf-widget .prove-step-highlight {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.45;
    margin-bottom: 0;
}

#cf-widget .prove-step-highlight strong {
    color: #d97706;
    font-weight: 700;
    font-size: 14px;
}

#cf-widget .prove-step:last-child {
    margin-bottom: 0;
}

@keyframes cf-widget-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes cf-widget-pop {
    0% { transform: scale(0.6); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
