/* ========== 卡片主容器: 完全保留 .Turnstile 类名 ========== */
.Turnstile {
    background: #ffffff;
    border-radius: 24px; /* 增大圆角匹配官方样式 */
    box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.3); /* 更柔和的阴影 */
    max-width: 480px;
    width: 100%;
    padding: 2.5rem 2rem 2rem 2rem; /* 调整内边距匹配官方比例 */
    text-align: center;
    transition: all 0.2s ease;
}

/* 图标容器: 保留 .Turnstile__Container 类名 */
.Turnstile__Container {
    margin-bottom: 1.5rem;
}
/* 替换为官方三层菱形图标 */
.Turnstile__Container svg {
    width: 72px;
    height: 72px;
    color: #f6821f; /* 官方橙色 */
}

/* 主标题: 保留 .Turnstile__h2 类名 */
.Turnstile__h2 {
    font-size: 2rem;
    font-weight: 700; /* 加粗字体 */
    color: #1e293b; /* 更深的黑色 */
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
    user-select: none;
}

/* 副标题: 保留 .Turnstile__subtitle 类名 */
.Turnstile__subtitle {
    color: #64748b; /* 官方灰色 */
    font-size: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1.5rem;
    user-select: none;
}

/* 验证区域: 保留你原有的拼写错误 .TurnstilE__area 不修改 */
.TurnstilE__area {
    background: #f8fafc; /* 官方浅灰背景 */
    border-radius: 16px; /* 更大的圆角 */
    padding: 2rem 1rem;
    margin: 1rem 0 1.5rem 0;
}

/* Turnstile 组件包装器: 保留 .Turnstile-wrapper 类名 */
.Turnstile-wrapper {
    display: flex;
    justify-content: center;
    margin: 0.5rem 0;
}

/* 状态消息区域: 保留通用类名 */
.status-message {
    margin-top: 1rem;
    font-size: 1rem;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    user-select: none;
    
}

/* 加载动画: 完全匹配官方样式 */
.spinner {
    width: 24px;
    height: 24px;
    border: 2px solid #e2e8f0;
    border-top-color: #f6821f;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

.success-badge {
    color: #22c55e;
    font-weight: 500;
}

/* 底部按钮: 保留 .verify-continue-btn 类名 */
.verify-continue-btn {
    background: #cbd5e1; /* 验证中灰色 */
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.9rem 1.5rem;
    border-radius: 40px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    transition: 0.2s;
    width: 100%;
    font-family: inherit;
}
.verify-continue-btn:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    opacity: 1;
}
.verify-continue-btn:hover:not(:disabled) {
    background: #f6821f;
    transform: scale(0.98);
}

/* 底部脚注: 保留 .footer-note 类名 */
.footer-note {
    margin-top: 0;
    font-size: 0.75rem;
    color: #94a3b8;
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    user-select: none;
}

/* 额外适配官方组件居中 */
.cf-turnstile {
    display: flex;
    justify-content: center;
}
.TurnstilE__area .cf-turnstile > div {
    margin: 0 auto;
}

.se {
    margin: auto;
    width: 50%;
    padding: 10px;
}

.se p {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin-bottom: 10px;
    font-size: 13px;
    color: rgb(43, 129, 99);
    margin-bottom: 5px;
}