/* 会员权益页面专业化样式 */

.member-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
}

.member-page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
    margin-bottom: 40px;
    text-align: center;
}

.member-page-header h1 {
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

.member-page-header p {
    margin-top: 15px;
    font-size: 18px;
    opacity: 0.95;
}

/* 会员卡片区域 */
.pricing-cards {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 25px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 220px;
    max-width: 250px;
    border: 3px solid transparent;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #ffd700;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.pricing-card.featured::before {
    content: "推荐";
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.pricing-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card.card-normal .pricing-card-title {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card.card-problem .pricing-card-title {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card.card-play .pricing-card-title {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card.card-review .pricing-card-title {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card.card-vip .pricing-card-title {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-subtitle {
    color: #6c757d;
    font-size: 13px;
}

.pricing-price {
    text-align: center;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 14px;
    color: #2c3e50;
    line-height: 1.6;
}

.price-amount strong {
    font-size: 22px;
    color: #667eea;
    font-weight: 700;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-features li {
    padding: 8px 0;
    color: #57606a;
    font-size: 13px;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    margin-right: 6px;
    color: #28a745;
    font-size: 13px;
}

.pricing-btn {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.pricing-btn:hover {
    transform: translateY(-2px);
}

.member-section-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.member-section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.member-card-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 20px 30px;
    text-align: center;
}

.member-card-header h2 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.member-table {
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.member-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.member-table thead td {
    color: white;
    font-weight: 600;
    padding: 15px 10px;
    border: none;
    font-size: 14px;
}

.member-table tbody td {
    padding: 12px 10px;
    vertical-align: middle;
    border-bottom: 1px solid #eaeef2;
    font-size: 13px;
}

.member-table tbody tr {
    transition: background-color 0.2s;
}

.member-table tbody tr:hover {
    background-color: #f8f9fa;
}

/* 会员类型标签样式 */
.member-type-badge {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    margin: 3px;
}

.badge-vip-all {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.badge-vip-problem {
    background: linear-gradient(135deg, #17a2b8 0%, #3fbac7 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(23, 162, 184, 0.3);
}

.badge-vip-play {
    background: linear-gradient(135deg, #28a745 0%, #48c774 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.badge-normal {
    background: #6c757d;
    color: white;
}

/* 价格链接样式 */
.price-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.price-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* 功能可用性图标 */
.icon-available {
    color: #28a745;
    font-size: 20px;
}

.icon-unavailable {
    color: #dc3545;
    font-size: 20px;
}

/* 条件限制文本 */
.condition-text {
    font-size: 12px;
    line-height: 1.6;
}

/* 专业图标样式 */
.icon-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    transition: all 0.2s ease;
}

.icon-check:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.icon-cross {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    transition: all 0.2s ease;
}

.icon-cross:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

/* 响应式优化 */
@media (max-width: 1400px) {
    .pricing-cards {
        flex-wrap: wrap;
    }

    .pricing-card {
        min-width: 200px;
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .member-container {
        padding: 10px;
    }

    .member-page-header {
        padding: 35px 20px;
        margin-bottom: 25px;
        border-radius: 16px;
    }

    .member-page-header h1 {
        font-size: 26px;
    }

    .member-page-header p {
        font-size: 15px;
    }

    .pricing-cards {
        flex-direction: column;
        gap: 20px;
        flex-wrap: nowrap;
    }

    .pricing-card {
        max-width: 100%;
        min-width: auto;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: scale(1.0);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px) scale(1.0);
    }

    .pricing-card-title {
        font-size: 18px;
    }

    .pricing-subtitle {
        font-size: 12px;
    }

    .price-amount {
        font-size: 13px;
    }

    .price-amount strong {
        font-size: 20px;
    }

    .pricing-features li {
        font-size: 12px;
        padding: 8px 0;
    }

    .pricing-features li i {
        font-size: 12px;
    }

    .pricing-btn {
        padding: 10px;
        font-size: 14px;
    }

    .member-card-header h2 {
        font-size: 20px;
    }

    .member-table thead td,
    .member-table tbody td {
        padding: 8px 5px;
        font-size: 12px;
    }

    .member-type-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .icon-check,
    .icon-cross {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
}