/* 郭教授会员系统 - 样式 */

/* 套餐卡片 */
.gj-pricing-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    padding: 20px 0;
}

.gj-plan-card {
    background: #1E293B;
    border-radius: 16px;
    padding: 32px 28px;
    width: 320px;
    border: 2px solid #334155;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.gj-plan-card:hover {
    border-color: #3B82F6;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
}

.gj-plan-card.recommended {
    border-color: #F59E0B;
    box-shadow: 0 4px 24px rgba(245, 158, 11, 0.2);
}

.gj-plan-badge {
    position: absolute;
    top: 16px;
    right: -32px;
    background: #F59E0B;
    color: #0F172A;
    padding: 4px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
}

.gj-plan-icon {
    font-size: 48px;
    text-align: center;
    margin-bottom: 12px;
}

.gj-plan-name {
    font-size: 22px;
    font-weight: 700;
    color: #F1F5F9;
    text-align: center;
    margin-bottom: 8px;
}

.gj-plan-desc {
    font-size: 13px;
    color: #64748B;
    text-align: center;
    margin-bottom: 20px;
    min-height: 36px;
}

.gj-plan-price {
    text-align: center;
    padding: 16px 0;
    border-top: 1px solid #334155;
    border-bottom: 1px solid #334155;
    margin-bottom: 20px;
}

.gj-plan-price .amount {
    font-size: 40px;
    font-weight: 800;
    color: #F1F5F9;
}

.gj-plan-price .unit {
    font-size: 14px;
    color: #94A3B8;
    margin-left: 4px;
}

.gj-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.gj-plan-features li {
    padding: 8px 0;
    color: #CBD5E1;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gj-plan-features .check {
    color: #10B981;
    font-weight: 700;
}

.gj-plan-features .cross {
    color: #64748B;
}

.gj-btn-plan {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.gj-btn-plan.primary {
    background: #3B82F6;
    color: #fff;
}

.gj-btn-plan.primary:hover {
    background: #2563EB;
    transform: scale(1.02);
}

.gj-btn-plan.gold {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #0F172A;
}

.gj-btn-plan.gold:hover {
    background: linear-gradient(135deg, #FBBF24, #F59E0B);
    transform: scale(1.02);
}

.gj-btn-plan.outline {
    background: transparent;
    color: #94A3B8;
    border: 2px solid #334155;
}

.gj-btn-plan.outline:hover {
    border-color: #64748B;
    color: #F1F5F9;
}

/* 支付结果 */
.gj-pay-result {
    margin-top: 12px;
    font-size: 14px;
}

/* 会员中心面板 */
.gj-member-panel {
    max-width: 800px;
    margin: 0 auto;
    background: #1E293B;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #334155;
}

.gj-member-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid #334155;
    margin-bottom: 24px;
}

.gj-member-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.gj-member-info h3 {
    margin: 0 0 4px 0;
    color: #F1F5F9;
    font-size: 20px;
}

.gj-member-info .gj-level {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.gj-member-info .gj-level.free {
    background: #334155;
    color: #94A3B8;
}

.gj-member-info .gj-level.silver {
    background: rgba(59, 130, 246, 0.2);
    color: #3B82F6;
}

.gj-member-info .gj-level.gold {
    background: rgba(245, 158, 11, 0.2);
    color: #F59E0B;
}

.gj-member-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.gj-stat-card {
    flex: 1;
    background: #0F172A;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid #334155;
}

.gj-stat-card .stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #F1F5F9;
    margin-bottom: 4px;
}

.gj-stat-card .stat-label {
    font-size: 13px;
    color: #64748B;
}

.gj-member-quota {
    background: #0F172A;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #334155;
}

.gj-quota-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #1E293B;
}

.gj-quota-item:last-child {
    border-bottom: none;
}

.gj-quota-item .label {
    color: #94A3B8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gj-quota-item .value {
    color: #F1F5F9;
    font-weight: 600;
}

.gj-quota-item .value.available {
    color: #10B981;
}

.gj-quota-item .value.locked {
    color: #64748B;
}

/* FAQ */
.gj-faq {
    margin-top: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.gj-faq-q {
    color: #F1F5F9;
    font-weight: 600;
    margin: 20px 0 8px 0;
    font-size: 15px;
}

.gj-faq-a {
    color: #94A3B8;
    font-size: 14px;
    line-height: 1.7;
    padding-bottom: 8px;
    border-bottom: 1px solid #1E293B;
}

/* 响应式 */
@media (max-width: 768px) {
    .gj-pricing-wrap {
        flex-direction: column;
        align-items: center;
    }
    .gj-plan-card {
        width: 100%;
        max-width: 360px;
    }
    .gj-member-stats {
        flex-direction: column;
    }
}
