/* Steam账号分享 - 主题原生集成样式
 * 从 steam-share-plugin/assets/style.css 复制
 * 加载路径：get_template_directory_uri() . '/assets/css/steam-share.css'
 */

/* 账号展示盒子 */
.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;
}

.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;
}

/* ============================================================
 * ripro-v5主题付费系统集成样式
 * ============================================================ */

/* 未登录 / 无权限提示框 */
.ssp-no-access-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 20px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.ssp-no-access-icon {
    font-size: 2rem;
    color: #66c0f4;
    flex-shrink: 0;
}
.ssp-no-access-text {
    flex: 1;
    color: #c6d4df;
    line-height: 1.5;
}
.ssp-no-access-text strong {
    color: #fff;
    font-size: 1rem;
}

/* Steam账号展示盒子 - rihide风格 */
.ssp-steam-account-box {
    background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
    border-radius: 12px;
    overflow: hidden;
    margin: 20px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* 多账号时相邻盒子间距 */
.ssp-account-multiple + .ssp-account-multiple {
    margin-top: 16px;
    border-top: 2px solid rgba(102, 192, 244, 0.2);
}

/* 账号编号徽章 */
.ssp-account-badge {
    font-size: 12px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: auto;
}

.ssp-account-header {
    background: rgba(102, 192, 244, 0.2);
    padding: 15px 20px;
    color: #66c0f4;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ssp-account-header i {
    font-size: 20px;
}

.ssp-account-body {
    padding: 20px;
}

.ssp-account-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    margin-bottom: 10px;
}

.ssp-account-item:last-child {
    margin-bottom: 0;
}

.ssp-account-item.ssp-email-section {
    margin-top: 15px;
    border-top: 1px dashed rgba(255,255,255,0.1);
    padding-top: 15px;
}

.ssp-label {
    color: #8f98a0;
    font-size: 13px;
    min-width: 80px;
}

.ssp-value {
    flex: 1;
    color: #fff;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ssp-copy-text {
    cursor: pointer;
    transition: all 0.2s;
}

.ssp-copy-text:hover {
    color: #66c0f4;
}

.ssp-copy-text i {
    color: #66c0f4;
    font-size: 12px;
    opacity: 0.7;
}

.ssp-copy-text:hover i {
    opacity: 1;
}

.ssp-account-footer {
    background: rgba(0,0,0,0.2);
    padding: 12px 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* 反馈按钮 */
.ssp-feedback-btn {
    background: none;
    border: 1px solid rgba(231,76,60,0.4);
    color: #e74c3c;
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: all .2s;
}
.ssp-feedback-btn:hover {
    background: rgba(231,76,60,0.1);
    border-color: #e74c3c;
}

/* 反馈表单 */
.ssp-feedback-form {
    margin-top: 12px;
}

/* 反馈原因选项 */
.ssp-feedback-reasons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    border-radius: 8px;
    transition: outline .2s;
}
.ssp-reason-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    font-size: 12px;
    color: #c7d5e0;
    cursor: pointer;
    transition: all .2s;
}
.ssp-reason-item:hover {
    border-color: rgba(231,76,60,0.5);
    background: rgba(231,76,60,0.08);
}
.ssp-reason-item.active {
    border-color: #e74c3c;
    background: rgba(231,76,60,0.15);
    color: #e74c3c;
}
.ssp-reason-item input[type="radio"] {
    display: none;
}
.ssp-reason-item i {
    font-size: 11px;
}

/* 反馈输入行 */
.ssp-feedback-input-row {
    display: flex;
    gap: 8px;
    align-items: center;
}
.ssp-feedback-note {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    color: #c7d5e0;
    outline: none;
}
.ssp-feedback-note:focus {
    border-color: #66c0f4;
    background: rgba(255,255,255,0.12);
}
.ssp-feedback-note::placeholder {
    color: rgba(199,213,224,0.4);
}
.ssp-feedback-submit {
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s;
}
.ssp-feedback-submit:hover {
    background: #c0392b;
}
.ssp-feedback-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* 反馈成功提示 */
.ssp-feedback-success {
    color: #2ecc71;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== 安全提示横幅 ===== */
.ssp-security-notice {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background: rgba(46, 204, 113, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 8px;
    color: #2ecc71;
    font-size: 12px;
}
.ssp-security-notice i {
    font-size: 16px;
    flex-shrink: 0;
}

/* ===== 验证图标 ===== */
.ssp-valid-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    z-index: 2;
    pointer-events: none;
}
.ssp-field-error {
    font-size: 11px;
    color: #e74c3c;
    margin-top: 4px;
    padding-left: 2px;
}

/* ===== 预览区域 ===== */
#ssp-preview-area {
    padding-top: 12px;
    border-top: 1px dashed rgba(255,255,255,0.1);
}
#ssp-preview-area .form-label {
    color: #66c0f4 !important;
    font-size: 13px;
}
#ssp-preview-card {
    opacity: 0.85;
    pointer-events: none;
}
#ssp-preview-card .ssp-account-body {
    padding: 15px 20px;
}

/* ===== 快捷添加按钮 ===== */
.ssp-quick-add {
    padding-top: 12px;
    border-top: 1px dashed rgba(255,255,255,0.1);
}
.ssp-quick-add-btn {
    transition: all .2s;
    border-radius: 6px;
    font-size: 13px;
}
.ssp-quick-add-btn:hover {
    background: rgba(102,192,244,0.25) !important;
    border-color: rgba(102,192,244,0.5) !important;
}

/* ===== 验证字段右侧留出图标空间 ===== */
.ssp-validate-field {
    padding-right: 35px;
}

/* 购买区域样式 - 与rihide保持一致 */
.ssp-purchase-box {
    margin: 20px 0;
}

.ssp-purchase-box .hide-buy-warp {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.ssp-purchase-box .buy-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

.ssp-purchase-box .buy-title i {
    color: #66c0f4;
    font-size: 20px;
}

.ssp-purchase-box .prices-info {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.ssp-purchase-box .price-item {
    background: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.ssp-purchase-box .price-item.no {
    color: #666;
}

.ssp-purchase-box .price-item.vip {
    color: #27ae60;
}

.ssp-purchase-box .price-item.boosvip {
    color: #f39c12;
}

.ssp-purchase-box .buy-btns {
    margin: 20px 0;
}

.ssp-purchase-box .buy-count {
    color: #999;
    font-size: 13px;
}

.ssp-purchase-box .buy-count span {
    color: #e74c3c;
    font-weight: bold;
}

/* 已解锁提示 */
.ssp-unlocked-notice {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #28a745;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
}

.ssp-unlocked-notice .hide-msg-unlocked {
    display: block;
    color: #155724;
    font-weight: 600;
    margin-bottom: 15px;
}

.ssp-show-account-btn {
    background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
    border: none;
    color: #66c0f4;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.ssp-show-account-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 192, 244, 0.4);
}

/* VIP免费领取按钮 */
.ssp-free-claim-btn {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.ssp-free-claim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

/* 查看区域 */
.ssp-view-section {
    margin: 20px 0;
}

.ssp-account-content {
    animation: ssp-fadeIn 0.5s ease;
}

/* 复制成功提示 */
.ssp-copy-success {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(39, 174, 96, 0.95);
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    z-index: 99999;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* 响应式适配 */
@media (max-width: 768px) {
    .ssp-steam-account-box {
        margin: 15px 0;
    }
    
    .ssp-account-body {
        padding: 15px;
    }
    
    .ssp-account-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .ssp-label {
        min-width: auto;
    }
    
    .ssp-value {
        word-break: break-all;
    }
    
    .ssp-purchase-box .prices-info {
        flex-direction: column;
        align-items: center;
    }
    
    .ssp-purchase-box .price-item {
        width: 100%;
        max-width: 280px;
    }
}

/* ============================================================
 * VIP Gate 样式（与rihide完全一致）
 * ============================================================ */

.ssp-steam-warp {
    margin: 20px 0;
}

/* VIP Gate 卡片样式 */
.rihide-vip-gate {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 20px;
    margin-top: 15px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.rihide-vip-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.rihide-vip-icon i {
    font-size: 24px;
    color: #fff;
}

.rihide-vip-info {
    flex: 1;
}

.rihide-vip-info .hide-msg-vip {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 15px;
}

.rihide-vip-desc {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
}

.rihide-btn-wrap {
    flex-shrink: 0;
    text-align: center;
    margin-left: 15px;
}

.rihide-vip-btn {
    background: #fff;
    color: #667eea;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.rihide-vip-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

.rihide-vip-btn.rihide-btn-exhausted {
    background: rgba(255, 255, 255, 0.5);
    color: rgba(102, 126, 234, 0.7);
    cursor: not-allowed;
}

.rihide-vip-btn.rihide-btn-verify {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #fff;
}

.rihide-remain-badge {
    margin-top: 8px;
    font-size: 12px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.rihide-remain-badge.rihide-badge-zero {
    color: #ffccc8;
}

.rihide-remain-badge.rihide-badge-low {
    background: rgba(243, 156, 18, 0.3);
    padding: 3px 10px;
    border-radius: 10px;
}

/* 内容展开区域 */
.rihide-content-wrap {
    animation: ssp-fadeIn 0.5s ease;
}

/* Steam专用隐藏消息 */
.ssp-steam-warp .hide-msg {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.ssp-steam-warp .hide-msg-unlocked {
    color: #27ae60;
    font-weight: 600;
}

/* 响应式适配 - VIP Gate */
@media (max-width: 768px) {
    .rihide-vip-gate {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .rihide-vip-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .rihide-btn-wrap {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
    }
    
    .rihide-vip-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
 * 密码显示/隐藏切换样式
 * ============================================================ */

/* 密码默认隐藏样式 */
.ssp-row .ssp-text.ssp-reveal-text:not(.revealed) {
    color: transparent;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    user-select: none;
    -webkit-user-select: none;
}

.ssp-row .ssp-text.ssp-reveal-text.revealed {
    color: #fff;
    text-shadow: none;
    user-select: auto;
    -webkit-user-select: auto;
}

/* VIP Gate 内的密码隐藏样式 */
.ssp-value .ssp-reveal-text:not(.revealed) {
    color: transparent;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    user-select: none;
    -webkit-user-select: none;
}

.ssp-value .ssp-reveal-text.revealed {
    color: #fff;
    text-shadow: none;
    user-select: auto;
    -webkit-user-select: auto;
}

/* 密码切换按钮 */
.ssp-toggle-pwd {
    font-size: 12px;
    padding: 2px 8px;
    border-color: rgba(255,255,255,0.3);
    color: #8f98a0;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.ssp-toggle-pwd:hover {
    border-color: #66c0f4;
    color: #66c0f4;
}

/* 复制密码按钮 */
.ssp-copy-pwd {
    font-size: 12px;
    padding: 2px 8px;
    border-color: rgba(102, 192, 244, 0.3);
    color: #66c0f4;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.ssp-copy-pwd:hover {
    border-color: #66c0f4;
    background: rgba(102, 192, 244, 0.1);
}

/* 密码包裹容器 */
.ssp-password-wrap {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 密码文本 */
.ssp-password-text {
    font-family: 'Consolas', 'Monaco', monospace;
    color: #fff;
    letter-spacing: 2px;
}

/* 复制图标样式 */
.ssp-copy-icon {
    color: #66c0f4;
    font-size: 12px;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.2s;
}

.ssp-copy-icon:hover {
    opacity: 1;
}

/* ===========================================
   投稿编辑页面 - 已关联账号列表样式
   =========================================== */

/* 已关联账号容器 */
#ssp-existing-accounts {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
}

/* 已关联账号标题 */
.ssp-existing-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #66c0f4;
    font-size: 14px;
}

.ssp-existing-header i {
    margin-right: 8px;
}

/* 账号列表容器 */
.ssp-accounts-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 单个账号卡片 */
.ssp-account-card {
    background: rgba(0,0,0,0.25);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.2s ease;
}

.ssp-account-card:hover {
    border-color: rgba(102, 192, 244, 0.3);
    background: rgba(0,0,0,0.3);
}

/* 账号卡片头部 */
.ssp-account-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    flex-wrap: wrap;
}

.ssp-account-card-header .ssp-account-num {
    background: #66c0f4;
    color: #1b2838;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 11px;
}

.ssp-account-card-header .badge {
    font-size: 10px;
    font-weight: 500;
}

.ssp-account-card-header .ssp-account-time {
    margin-left: auto;
    font-size: 11px;
    color: #8f98a0;
}

/* 账号卡片内容 */
.ssp-account-card-body {
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
}

/* 账号信息区域 */
.ssp-account-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ssp-info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.ssp-info-label {
    color: #8f98a0;
    font-size: 11px;
    min-width: 60px;
}

.ssp-info-value {
    color: #fff;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 13px;
}

/* 账号统计区域 */
.ssp-account-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.ssp-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 50px;
}

.ssp-stat-label {
    font-size: 10px;
    color: #8f98a0;
    text-transform: uppercase;
}

.ssp-stat-value {
    font-size: 13px;
    font-weight: 600;
    color: #c7d5e0;
}

.ssp-stat-value.text-warning {
    color: #f39c12;
}

.ssp-stat-item .badge {
    font-size: 10px;
    font-weight: normal;
}

/* 分隔线 */
.ssp-existing-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 15px;
    color: #8f98a0;
    font-size: 12px;
}

.ssp-existing-divider span {
    background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
    padding: 0 15px;
    color: #66c0f4;
}

.ssp-existing-divider::before,
.ssp-existing-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

/* 响应式适配 */
@media (max-width: 768px) {
    .ssp-account-card-body {
        grid-template-columns: 1fr;
    }
    
    .ssp-account-stats {
        justify-content: flex-start;
        padding-top: 10px;
        border-top: 1px dashed rgba(255,255,255,0.1);
    }
    
    .ssp-account-card-header .ssp-account-time {
        width: 100%;
        margin-left: 0;
        margin-top: 5px;
    }
}

/* ===========================================
   投稿页面增强样式 - 筛选、编辑、删除功能
   =========================================== */

/* 筛选按钮组 */
.ssp-filter-tabs {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.ssp-filter-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #8f98a0;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ssp-filter-btn:hover {
    background: rgba(102, 192, 244, 0.2);
    border-color: rgba(102, 192, 244, 0.4);
    color: #66c0f4;
}

.ssp-filter-btn.active {
    background: #66c0f4;
    border-color: #66c0f4;
    color: #1b2838;
}

/* 投稿页面已关联账号头部增强 */
.ssp-existing-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
    color: #66c0f4;
    font-size: 14px;
}

/* 加载状态 */
.ssp-loading {
    text-align: center;
    padding: 30px;
    color: #66c0f4;
    font-size: 14px;
}

.ssp-loading i {
    margin-right: 8px;
}

/* 空状态 */
.ssp-empty {
    text-align: center;
    padding: 25px;
    color: #8f98a0;
    font-size: 13px;
    background: rgba(0,0,0,0.15);
    border-radius: 8px;
}

/* 错误状态 */
.ssp-error {
    text-align: center;
    padding: 25px;
    color: #e74c3c;
    font-size: 13px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

/* 价格编辑区域 */
.ssp-price-edit {
    min-width: 100px;
}

.ssp-price-input-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ssp-edit-price-input {
    width: 60px;
    padding: 4px 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    text-align: center;
    transition: all 0.2s ease;
}

.ssp-edit-price-input:focus {
    outline: none;
    border-color: #66c0f4;
    background: rgba(255,255,255,0.15);
}

.ssp-edit-price-input.ssp-saving {
    border-color: #f39c12;
    background: rgba(243, 156, 18, 0.1);
}

.ssp-edit-price-input.ssp-saved {
    border-color: #27ae60;
    background: rgba(39, 174, 96, 0.15);
}

.ssp-price-unit {
    font-size: 10px;
    color: #8f98a0;
}

/* 操作按钮区域 */
.ssp-account-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed rgba(255,255,255,0.1);
}

.ssp-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.ssp-btn-delete {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.ssp-btn-delete:hover {
    background: #e74c3c;
    color: #fff;
}

.ssp-btn-delete:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.ssp-action-tip {
    font-size: 11px;
    color: #8f98a0;
    font-style: italic;
}

/* 账号卡片增强 */
.ssp-account-card .ssp-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.ssp-account-card .ssp-info-label {
    color: #8f98a0;
    font-size: 12px;
    min-width: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ssp-account-card .ssp-info-label i {
    font-size: 11px;
    color: #66c0f4;
}

.ssp-account-card .ssp-info-value {
    color: #fff;
    font-family: 'Consolas', 'Monaco', monospace;
}

.ssp-account-card .ssp-info-value.ssp-masked {
    color: #f39c12;
    letter-spacing: 1px;
}

/* 统计项增强 */
.ssp-account-card .ssp-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 60px;
}

.ssp-account-card .ssp-stat-label {
    font-size: 10px;
    color: #8f98a0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ssp-account-card .ssp-stat-label i {
    font-size: 10px;
    color: #66c0f4;
}

/* 投稿页面Toast提示 */
.ssp-toast {
    animation: ssp-slideIn 0.3s ease;
}

/* 显示密码按钮 */
.ssp-show-pwd-btn {
    padding: 0 6px;
    margin-left: 8px;
    color: #66c0f4;
    font-size: 12px;
    vertical-align: middle;
}

.ssp-show-pwd-btn:hover {
    color: #a4d7fc;
}

/* 编辑模态框 */
.ssp-edit-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: none;
}

.ssp-edit-modal-content {
    background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: ssp-modalIn 0.3s ease;
}

@keyframes ssp-modalIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.ssp-edit-modal-header {
    background: rgba(102, 192, 244, 0.2);
    padding: 15px 20px;
    color: #66c0f4;
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px 12px 0 0;
}

.ssp-edit-modal-body {
    padding: 20px;
}

.ssp-edit-modal-body .form-label {
    color: #c7d5e0;
    font-size: 13px;
    margin-bottom: 6px;
}

.ssp-edit-modal-body .form-control {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(102, 192, 244, 0.3);
    color: #fff;
    border-radius: 8px;
    padding: 10px 15px;
}

.ssp-edit-modal-body .form-control:focus {
    background: rgba(0,0,0,0.4);
    border-color: #66c0f4;
    box-shadow: 0 0 0 3px rgba(102, 192, 244, 0.2);
    color: #fff;
}

.ssp-edit-modal-body .form-control::placeholder {
    color: #8f98a0;
}

.ssp-edit-modal-footer {
    padding: 15px 20px;
    background: rgba(0,0,0,0.2);
    border-radius: 0 0 12px 12px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.ssp-edit-modal-footer .btn {
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
}

.ssp-edit-modal-footer .btn-secondary {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #c7d5e0;
}

.ssp-edit-modal-footer .btn-secondary:hover {
    background: rgba(255,255,255,0.2);
}

.ssp-edit-modal-footer .btn-primary {
    background: linear-gradient(135deg, #66c0f4, #4fa3d1);
    border: none;
    color: #fff;
}

.ssp-edit-modal-footer .btn-primary:hover {
    background: linear-gradient(135deg, #7ad0ff, #5ab8e6);
}

/* 编辑按钮 */
.ssp-btn-edit {
    background: linear-gradient(135deg, #66c0f4, #4fa3d1) !important;
    color: #fff !important;
}

.ssp-btn-edit:hover {
    background: linear-gradient(135deg, #7ad0ff, #5ab8e6) !important;
}

/* 响应式 - 投稿页面增强 */
@media (max-width: 768px) {
    .ssp-filter-tabs {
        width: 100%;
        margin-top: 8px;
    }
    
    .ssp-account-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .ssp-price-input-wrap {
        width: 100%;
    }
    
    .ssp-edit-price-input {
        width: 100%;
        max-width: 80px;
    }
    
    .ssp-edit-modal-content {
        width: 95%;
        margin: 20px;
    }
}
