.points-system {
    padding: 80px 0;
    background-color: #ffffff;
}

.points-system__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.points-system__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.points-system__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.points-system__row-center {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.points-system__row-center .points-system__card {
    flex: 0 0 calc(33.333% - 22px);
    max-width: calc(33.333% - 22px);
}

.points-system__card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.points-system__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.points-system__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.points-system__badge--variant-1 {
    background: linear-gradient(135deg, #2f0000 0%, #bf0404 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.points-system__badge--variant-2 {
    background: linear-gradient(135deg, #2f0000 0%, #bf0404 100%);
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
}

.points-system__badge--variant-3 {
    background: linear-gradient(135deg, #2f0000 0%, #bf0404 100%);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.points-system__badge--variant-4 {
    background: linear-gradient(135deg, #2f0000 0%, #bf0404 100%);
    box-shadow: 0 4px 15px rgba(67, 233, 123, 0.3);
}

.points-system__badge--variant-5 {
    background: linear-gradient(135deg, #2f0000 0%, #bf0404 100%);
    box-shadow: 0 4px 15px rgba(250, 112, 154, 0.3);
}

.points-system__badge-text {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.points-system__category {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.points-system__description {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.points-system__description-item {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    list-style: none;
    list-style-type: none;
}

.points-system__description-item::marker {
    content: '';
    display: none;
}

.points-system__description-item:last-child {
    margin-bottom: 0;
}

.points-system__description-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 24px;
    line-height: 1;
    top: 0;
}

@media (max-width: 1024px) {
    .points-system {
        padding: 60px 0;
    }

    .points-system__title {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .points-system__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .points-system__row-center .points-system__card {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }

    .points-system__card {
        padding: 28px;
    }

    .points-system__badge {
        width: 90px;
        height: 90px;
        font-size: 28px;
    }

    .points-system__badge-text {
        font-size: 28px;
    }

    .points-system__category {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .points-system {
        padding: 40px 0;
    }

    .points-system__container {
        padding: 0 16px;
    }

    .points-system__title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .points-system__grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 0;
    }

    .points-system__row-center .points-system__card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .points-system__card {
        padding: 24px;
        border-radius: 20px;
    }

    .points-system__badge {
        width: 80px;
        height: 80px;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .points-system__badge-text {
        font-size: 24px;
    }

    .points-system__category {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .points-system__description-item {
        font-size: 15px;
        margin-bottom: 10px;
    }
}