/* Points Introduction Section Styles */

.points-intro-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.points-intro-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(252, 49, 48, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.points-intro-section .section-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.points-intro-section .section-subtitle {
    color: #aaa;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 3rem;
}

/* Points Cards Grid */
.points-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.points-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.points-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(252, 49, 48, 0.3);
}

.points-card.featured {
    background: linear-gradient(135deg, rgba(252, 49, 48, 0.15) 0%, rgba(252, 49, 48, 0.05) 100%);
    border-color: rgba(252, 49, 48, 0.4);
}

.points-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(252, 49, 48, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.points-card-icon svg {
    width: 32px;
    height: 32px;
    stroke: #FC3130;
    fill: none;
    stroke-width: 2;
}

.points-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.points-card-value {
    font-size: 2rem;
    font-weight: 700;
    color: #FC3130;
    margin-bottom: 8px;
    line-height: 1.2;
}

.points-card-value span {
    font-size: 1rem;
    color: #aaa;
    font-weight: 400;
}

.points-card-desc {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.5;
}

/* New Member Bonus Badge */
.points-card-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #FC3130 0%, #B43228 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(252, 49, 48, 0.4);
}

/* Points Flow Diagram */
.points-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.points-flow-step {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.points-flow-step-icon {
    width: 40px;
    height: 40px;
    background: rgba(252, 49, 48, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.points-flow-step-icon svg {
    width: 20px;
    height: 20px;
    stroke: #FC3130;
    fill: none;
    stroke-width: 2;
}

.points-flow-step-text {
    font-size: 0.95rem;
    color: #ddd;
}

.points-flow-step-text strong {
    color: #FC3130;
}

.points-flow-arrow {
    color: #555;
    font-size: 1.5rem;
}

/* CTA Button */
.points-intro-cta {
    text-align: center;
}

.points-intro-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FC3130 0%, #B43228 100%);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.points-intro-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(252, 49, 48, 0.4);
}

.points-intro-cta .btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Responsive Design */
@media (max-width: 900px) {
    .points-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .points-cards-grid .points-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .points-intro-section {
        padding: 60px 0;
    }
    
    .points-intro-section .section-title {
        font-size: 1.5rem;
    }
    
    .points-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 16px;
    }
    
    .points-cards-grid .points-card:last-child {
        max-width: none;
    }
    
    .points-card {
        padding: 24px 20px;
    }
    
    .points-card-value {
        font-size: 1.75rem;
    }
    
    .points-flow {
        flex-direction: column;
        gap: 12px;
    }
    
    .points-flow-arrow {
        transform: rotate(90deg);
    }
    
    .points-flow-step {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
