.turnstile-box {
    width: 100%;
    margin: 18px 0 20px;
    padding: 14px;
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: 16px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.turnstile-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.turnstile-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #e0efff;
    font-size: 18px;
    flex-shrink: 0;
}

.turnstile-info strong {
    display: block;
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.turnstile-info small {
    display: block;
    margin-top: 2px;
    color: #64748b;
    font-size: 12px;
    line-height: 1.4;
}

.turnstile-widget {
    width: 100%;
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px dashed rgba(37, 99, 235, 0.20);
    overflow: hidden;
}

/* Responsive untuk layar kecil */
@media (max-width: 480px) {
    .turnstile-box {
        padding: 12px;
        border-radius: 14px;
    }

    .turnstile-widget {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .turnstile-info strong {
        font-size: 13px;
    }

    .turnstile-info small {
        font-size: 11px;
    }
}