/* Steam账号分享插件样式 */

/* 账号展示盒子 */
.ssp-account-box {
    background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    color: #c7d5e0;
}

.ssp-account-box h5 {
    color: #66c0f4;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ssp-account-box h5 i {
    font-size: 24px;
}

.ssp-account-box h5 .badge {
    font-size: 12px;
    font-weight: normal;
}

/* 账号项 */
.ssp-account-item {
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.ssp-account-item:last-child {
    margin-bottom: 0;
}

.ssp-account-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ssp-account-num {
    background: #66c0f4;
    color: #1b2838;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
}

.ssp-account-type {
    color: #8f98a0;
    font-size: 13px;
}

.ssp-account-claims {
    margin-left: auto;
    font-size: 12px;
    color: #8f98a0;
}

/* 账号信息行 */
.ssp-row {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    margin-bottom: 8px;
}

.ssp-row:last-child {
    margin-bottom: 0;
}

.ssp-row strong {
    color: #66c0f4;
    min-width: 80px;
    font-size: 13px;
}

.ssp-row .ssp-text {
    flex: 1;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 14px;
    color: #fff;
    padding: 0 15px;
    word-break: break-all;
}

.ssp-row .ssp-copy,
.ssp-row .btn {
    font-size: 12px;
    padding: 4px 10px;
    border-color: #66c0f4;
    color: #66c0f4;
    background: transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.ssp-row .ssp-copy:hover,
.ssp-row .btn:hover {
    background: #66c0f4;
    color: #1b2838;
}

/* 邮箱验证码获取 */
.ssp-email-verify {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed rgba(255,255,255,0.1);
}

.ssp-email-verify .btn-warning {
    background: #f39c12;
    border-color: #f39c12;
    color: #fff;
}

.ssp-email-verify .btn-warning:hover {
    background: #e67e22;
    border-color: #e67e22;
}

/* 提示信息 */
.ssp-notice {
    background: rgba(102, 192, 244, 0.1);
    border-left: 3px solid #66c0f4;
    padding: 10px 15px;
    margin-top: 10px;
    font-size: 13px;
    border-radius: 0 6px 6px 0;
}

/* 锁定状态 */
.ssp-locked {
    text-align: center;
    padding: 40px 20px;
    color: #8f98a0;
}

.ssp-locked i {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
    color: #66c0f4;
}

.ssp-locked p {
    margin: 0;
    font-size: 14px;
}

/* 投稿页面输入区域 */
#ssp-input-wrap {
    background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
}

#ssp-input-wrap h6 {
    color: #66c0f4;
    font-weight: 600;
}

#ssp-input-wrap .form-label {
    color: #66c0f4;
}

#ssp-input-wrap .form-control {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}

#ssp-input-wrap .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

#ssp-input-wrap .form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: #66c0f4;
    box-shadow: 0 0 0 0.2rem rgba(102, 192, 244, 0.25);
}

/* 复制成功提示 */
.ssp-copy-tip {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.9);
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    z-index: 99999;
    font-size: 14px;
}

/* 验证码弹窗 */
.ssp-verify-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99998;
}

.ssp-verify-content {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.ssp-verify-content h3 {
    margin-bottom: 20px;
    color: #1b2838;
}

.ssp-verify-content img {
    max-width: 200px;
    margin-bottom: 20px;
}

.ssp-verify-content input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 16px;
}

.ssp-verify-content button {
    width: 100%;
    padding: 12px;
    background: #66c0f4;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

.ssp-verify-content button:hover {
    background: #5ab0e0;
}

.ssp-verify-content .ssp-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.ssp-verify-content .message {
    margin-top: 10px;
    font-size: 14px;
}

/* 验证码结果 */
.ssp-code-result {
    background: #e8f5e9;
    border: 1px solid #4caf50;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    text-align: center;
}

.ssp-code-result .code {
    font-size: 24px;
    font-weight: bold;
    color: #2e7d32;
    font-family: monospace;
    letter-spacing: 2px;
}

/* 投稿页面分享卡片 */
.ssp-share-card {
    background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
    border-radius: 12px;
    padding: 20px;
    color: #c7d5e0;
    overflow: hidden;
}

.ssp-share-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ssp-share-header h6 {
    color: #66c0f4;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.ssp-share-header h6 i {
    margin-right: 8px;
}

.ssp-user-stats .badge {
    margin-left: 5px;
    font-size: 11px;
    font-weight: normal;
}

.ssp-share-guide {
    background: rgba(102, 192, 244, 0.15);
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #8bb9d0;
}

.ssp-share-guide i {
    color: #f39c12;
    margin-right: 8px;
}

.ssp-share-form {
    background: rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.ssp-share-form .form-label {
    color: #66c0f4;
    font-size: 13px;
    margin-bottom: 5px;
}

.ssp-share-form .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 6px;
}

.ssp-share-form .form-control::placeholder {
    color: rgba(255,255,255,0.4);
}

.ssp-share-form .form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: #66c0f4;
    box-shadow: 0 0 0 3px rgba(102, 192, 244, 0.2);
    color: #fff;
}

.ssp-login-type .form-check-label {
    color: #c7d5e0;
}

.ssp-login-type .form-check-label i {
    margin-right: 5px;
}

.ssp-share-reward {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.2) 0%, rgba(230, 126, 34, 0.2) 100%);
    padding: 12px 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
}

.ssp-share-reward i {
    color: #f39c12;
    margin-right: 8px;
}

.ssp-share-reward strong {
    color: #f39c12;
}

/* 分享开关样式 */
.ssp-switch-wrap .form-check-label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ssp-switch-wrap .badge {
    font-size: 10px;
    padding: 2px 6px;
}

/* 文章分享提醒 */
.ssp-share-reminder {
    animation: ssp-pulse 2s infinite;
}

@keyframes ssp-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(102, 192, 244, 0.4); }
    50% { box-shadow: 0 0 20px 10px rgba(102, 192, 244, 0); }
}

/* 响应式 */
@media (max-width: 768px) {
    .ssp-share-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .ssp-user-stats {
        width: 100%;
    }
    
    .ssp-ranking-item {
        padding: 6px 8px;
    }
    
    .rank-avatar {
        display: none;
    }
}

/* 领取区域样式 */
.ssp-claim-area {
    background: rgba(0,0,0,0.15);
    border-radius: 8px;
    text-align: center;
    padding: 20px;
}

/* 领取提示条 */
.ssp-claim-tip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.ssp-claim-tip-muted {
    color: #8f98a0;
    background: rgba(255,255,255,0.04);
}

.ssp-claim-tip-login {
    background: rgba(102,192,244,0.08);
    color: #c7d5e0;
    border: 1px solid rgba(102,192,244,0.2);
}

.ssp-claim-tip-free {
    background: rgba(39,174,96,0.08);
    color: #2ecc71;
    border: 1px solid rgba(39,174,96,0.2);
}

.ssp-claim-tip-paid {
    background: rgba(243,156,18,0.08);
    color: #f39c12;
    border: 1px solid rgba(243,156,18,0.2);
    font-size: 15px;
    font-weight: 600;
}

.ssp-login-link {
    background: rgba(102,192,244,0.2);
    color: #66c0f4 !important;
    padding: 3px 12px;
    border-radius: 12px;
    text-decoration: none !important;
    font-size: 13px;
    transition: background 0.2s;
    white-space: nowrap;
}

.ssp-login-link:hover {
    background: rgba(102,192,244,0.35);
}

/* 免费/付费领取主按鈕 */
.ssp-btn-claim-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    color: #fff;
    letter-spacing: 0.3px;
}

.ssp-btn-free {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    box-shadow: 0 4px 15px rgba(39,174,96,0.35);
}

.ssp-btn-free:hover {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39,174,96,0.5);
}

.ssp-btn-paid {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    box-shadow: 0 4px 15px rgba(243,156,18,0.4);
    font-size: 16px;
    padding: 14px 36px;
}

.ssp-btn-paid:hover {
    background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(243,156,18,0.55);
}

/* 付费预览区域 */
.ssp-pay-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.ssp-pay-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 4px;
}

.ssp-price-num {
    font-size: 36px;
    font-weight: 800;
    color: #f39c12;
    line-height: 1;
}

.ssp-price-unit {
    font-size: 16px;
    color: #f39c12;
    opacity: 0.8;
}

.ssp-pay-note {
    margin: 0;
    font-size: 12px;
    color: #8f98a0;
}

/* 推广中心禁用按鈕 */
.ssp-promo-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.ssp-claim-btn {
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ssp-claim-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.ssp-claim-btn.btn-success {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: #fff;
}

.ssp-claim-btn.btn-success:hover:not(:disabled) {
    background: linear-gradient(135deg, #219a52 0%, #27ae60 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
}

.ssp-claim-btn.btn-warning {
    background: linear-gradient(135deg, #f39c12 0%, #f1c40f 100%);
    color: #1b2838;
}

.ssp-claim-btn.btn-warning:hover:not(:disabled) {
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

/* 价格标签 */
.ssp-account-price .badge {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 10px;
}

.ssp-account-price .bg-success {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%) !important;
}

.ssp-account-price .bg-warning {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%) !important;
    color: #fff !important;
}

/* 验证码弹窗绿色按钮 */
.ssp-verify-content button#ssp-submit-claim {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.ssp-verify-content button#ssp-submit-claim:hover {
    background: linear-gradient(135deg, #219a52 0%, #27ae60 100%);
}

/* 领取成功提示 */
.ssp-info {
    animation: ssp-fadeIn 0.5s ease;
}

@keyframes ssp-fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 充值弹窗样式 */
.ssp-recharge-content {
    max-width: 380px;
}

.ssp-balance-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    text-align: left;
}

.ssp-balance-info p {
    margin: 8px 0;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.ssp-recharge-btn {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #fff !important;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    text-align: center;
    transition: all 0.3s;
}

.ssp-recharge-btn:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.ssp-retry-btn {
    display: inline-block;
    width: 100%;
    padding: 10px;
    background: #95a5a6;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.ssp-retry-btn:hover {
    background: #7f8c8d;
}

/* 已下架账号样式 */
.ssp-account-inactive {
    opacity: 0.55;
    position: relative;
}

.ssp-account-inactive::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    border: 2px dashed rgba(231,76,60,0.5);
    pointer-events: none;
}

.ssp-inactive-badge {
    background: rgba(231,76,60,0.2);
    color: #e74c3c;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid rgba(231,76,60,0.4);
    margin-left: auto;
}

/* 分享者管理按钮 */
.ssp-owner-actions {
    margin-left: auto;
    display: flex;
    gap: 6px;
}

.ssp-takedown-btn,
.ssp-restore-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #aaa;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.ssp-takedown-btn:hover {
    background: rgba(231,76,60,0.2);
    border-color: #e74c3c;
    color: #e74c3c;
}

.ssp-restore-btn:hover {
    background: rgba(39,174,96,0.2);
    border-color: #27ae60;
    color: #27ae60;
}

/* 举报按钮 */
.ssp-report-btn {
    background: transparent;
    border: 1px solid rgba(231,76,60,0.3);
    color: rgba(231,76,60,0.6);
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.ssp-report-btn:hover {
    background: rgba(231,76,60,0.1);
    border-color: #e74c3c;
    color: #e74c3c;
}

/* 举报弹窗 选择原因 */
.ssp-report-reasons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}

.ssp-report-reasons label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    font-size: 13px;
    transition: background 0.2s;
}

.ssp-report-reasons label:hover {
    background: rgba(231,76,60,0.1);
    border-color: rgba(231,76,60,0.3);
}

.ssp-report-reasons input[type="radio"] {
    accent-color: #e74c3c;
}

/* 通知弹窗 */
.ssp-notify-content {
    min-width: 360px;
}

.ssp-notify-item:last-child {
    border-bottom: none !important;
}

/* ============================================================
   推广中心样式
   ============================================================ */

.ssp-promo-box {
    background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
    border-radius: 14px;
    padding: 25px;
    margin: 20px 0;
    color: #c7d5e0;
}

.ssp-promo-header {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(102,192,244,0.2);
    padding-bottom: 15px;
}

.ssp-promo-header h4 {
    color: #66c0f4;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 6px;
}

.ssp-promo-header p {
    color: #8f98a0;
    font-size: 13px;
    margin: 0;
}

/* 推广链接输入框 */
.ssp-promo-link-box {
    margin-bottom: 20px;
}

.ssp-promo-link-box label {
    display: block;
    font-size: 13px;
    color: #8f98a0;
    margin-bottom: 8px;
}

.ssp-promo-link-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ssp-promo-url-input {
    flex: 1;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(102,192,244,0.25);
    border-radius: 6px;
    color: #66c0f4;
    padding: 8px 12px;
    font-size: 13px;
    outline: none;
    min-width: 0;
}

.ssp-copy-promo-link {
    background: rgba(102,192,244,0.15);
    border: 1px solid rgba(102,192,244,0.35);
    color: #66c0f4;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    white-space: nowrap;
    transition: all 0.2s;
}

.ssp-copy-promo-link:hover {
    background: rgba(102,192,244,0.3);
    transform: translateY(-1px);
}

/* 统计卡片 */
.ssp-promo-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.ssp-promo-stat-card {
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: transform 0.2s;
}

.ssp-promo-stat-card:hover {
    transform: translateY(-2px);
}

.ssp-promo-stat-card.ssp-highlight {
    background: rgba(39,174,96,0.12);
    border-color: rgba(39,174,96,0.35);
}

.ssp-stat-num {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.ssp-promo-stat-card.ssp-highlight .ssp-stat-num {
    color: #2ecc71;
}

.ssp-stat-label {
    font-size: 12px;
    color: #8f98a0;
}

/* 操作按鈕 */
.ssp-promo-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.ssp-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s;
    color: #fff;
}

.ssp-btn-withdraw {
    background: linear-gradient(135deg, #2980b9 0%, #1a6fa3 100%);
}

.ssp-btn-withdraw:hover {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(41,128,185,0.4);
}

.ssp-btn-convert {
    background: linear-gradient(135deg, #27ae60 0%, #1d8a4e 100%);
}

.ssp-btn-convert:hover {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39,174,96,0.4);
}

.ssp-action-tip {
    color: #8f98a0;
    font-size: 13px;
    margin: 0;
}

/* 推广说明 */
.ssp-promo-rules {
    background: rgba(102,192,244,0.06);
    border: 1px solid rgba(102,192,244,0.15);
    border-radius: 8px;
    padding: 15px 18px;
    margin-bottom: 20px;
}

.ssp-promo-rules h6 {
    color: #66c0f4;
    margin: 0 0 10px;
    font-size: 14px;
}

.ssp-promo-rules ul {
    margin: 0;
    padding-left: 18px;
}

.ssp-promo-rules li {
    color: #aab4bd;
    font-size: 13px;
    line-height: 1.8;
}

/* 佣金记录 */
.ssp-promo-logs {
    margin-top: 5px;
}

.ssp-promo-logs h6 {
    color: #c7d5e0;
    margin: 0 0 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ssp-promo-logs h6 small {
    color: #8f98a0;
    font-size: 12px;
    font-weight: normal;
}

.ssp-promo-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.ssp-promo-table th {
    background: rgba(0,0,0,0.2);
    color: #8f98a0;
    padding: 8px 10px;
    text-align: left;
    font-weight: normal;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ssp-promo-table td {
    padding: 9px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #c7d5e0;
}

.ssp-promo-table tr:last-child td {
    border-bottom: none;
}

.ssp-promo-table tr:hover td {
    background: rgba(255,255,255,0.03);
}

.ssp-badge-type {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
}

.ssp-badge-type.register {
    background: rgba(155,89,182,0.2);
    color: #b97ddf;
    border: 1px solid rgba(155,89,182,0.3);
}

.ssp-badge-type.claim {
    background: rgba(39,174,96,0.2);
    color: #2ecc71;
    border: 1px solid rgba(39,174,96,0.3);
}

/* 提现/转换弹窗 */
.ssp-withdraw-content,
.ssp-convert-content {
    min-width: 360px;
    max-width: 480px;
}

@media (max-width: 500px) {
    .ssp-promo-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .ssp-withdraw-content,
    .ssp-convert-content {
        min-width: auto;
        width: calc(100vw - 40px);
    }
}

/* ================================================
   Rihide 付费保护层样式
   ================================================ */

/* 锁定状态的外层容器 */
.ssp-account-locked {
    border: 1px solid rgba(220,53,69,0.25);
    background: rgba(220,53,69,0.04);
}

/* Rihide 付费门徒卡片 */
.ssp-rihide-gate {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 20px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    margin-top: 12px;
    flex-wrap: wrap;
}

/* 左侧锁头图标 */
.ssp-rihide-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(220,53,69,0.15);
    border: 1px solid rgba(220,53,69,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #dc3545;
    flex-shrink: 0;
}

/* 中间文字区 */
.ssp-rihide-info {
    flex: 1;
    min-width: 0;
}

.ssp-rihide-title {
    font-size: 16px;
    font-weight: 700;
    color: #e8e8e8;
    margin-bottom: 6px;
}

.ssp-rihide-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin: 0;
    line-height: 1.5;
}

.ssp-rihide-link {
    color: #66c0f4;
    text-decoration: none;
    font-weight: 600;
}

.ssp-rihide-link:hover {
    text-decoration: underline;
}

/* 右侧按钮 */
.ssp-rihide-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.ssp-rihide-btn-login {
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: #fff;
}

.ssp-rihide-btn-login:hover {
    background: linear-gradient(135deg, #138496, #0f6674);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(23,162,184,0.4);
}

.ssp-rihide-btn-pay {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
}

.ssp-rihide-btn-pay:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(231,76,60,0.4);
}

/* 已解锁提示条 */
.ssp-rihide-unlocked {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(46,204,113,0.1);
    border: 1px solid rgba(46,204,113,0.25);
    border-radius: 20px;
    font-size: 12px;
    color: #2ecc71;
    margin-bottom: 12px;
}

/* 移动端自适应 */
@media (max-width: 600px) {
    .ssp-rihide-gate {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .ssp-rihide-btn {
        width: 100%;
        justify-content: center;
    }
}
