:root {
    --lrev-bg: #ffffff;
    --lrev-text-main: #1e293b;
    --lrev-text-desc: #475569;
    --lrev-fake-color: #ef4444;
    --lrev-fake-bg: #fef2f2;
    --lrev-real-color: #10b981;
    --lrev-real-bg: #ecfdf5;
    --lrev-shadow: 0 1.2rem 3.5rem rgba(0, 0, 0, 0.04);
    --lrev-shadow-hover: 0 2rem 5rem rgba(0, 0, 0, 0.08);
}

.lpled-rev-wrapper {
    width: 100%;
    max-width: 100rem;
    margin: 0 auto;
    padding: 3rem 0;
}

.lpled-rev-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.lpled-rev-card {
    background: var(--lrev-bg);
    border-radius: 2rem;
    padding: 4rem 3.2rem;
    box-shadow: var(--lrev-shadow);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(4rem);
    border-top: 0.6rem solid transparent;
}

.lpled-rev-card.lpled-rev-visible {
    opacity: 1;
    transform: translateY(0);
}

.lpled-rev-card:hover {
    transform: translateY(-0.8rem);
    box-shadow: var(--lrev-shadow-hover);
}

.lpled-rev-fake {
    border-color: var(--lrev-fake-color);
}

.lpled-rev-real {
    border-color: var(--lrev-real-color);
}

.lpled-rev-icon {
    width: 6.4rem;
    height: 6.4rem;
    border-radius: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.4rem;
}

.lpled-rev-fake .lpled-rev-icon {
    background: var(--lrev-fake-bg);
    color: var(--lrev-fake-color);
}

.lpled-rev-real .lpled-rev-icon {
    background: var(--lrev-real-bg);
    color: var(--lrev-real-color);
}

.lpled-rev-icon svg {
    width: 3.2rem;
    height: 3.2rem;
}

.lpled-rev-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--lrev-text-main);
    margin-bottom: 2.4rem;
    letter-spacing: -0.05rem;
}

.lpled-rev-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lpled-rev-list li {
    font-size: 1.6rem;
    color: var(--lrev-text-desc);
    margin-bottom: 1.8rem;
    padding-left: 3.2rem;
    position: relative;
    line-height: 1.6;
}

.lpled-rev-list li:last-child {
    margin-bottom: 0;
}

.lpled-rev-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 2rem;
    height: 2rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.lpled-rev-fake .lpled-rev-list li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
}

.lpled-rev-real .lpled-rev-list li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

@media (max-width: 767px) {
    .lpled-rev-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1.6rem;
        padding-bottom: 3rem;
        scrollbar-width: none;
    }
    
    .lpled-rev-grid::-webkit-scrollbar {
        display: none;
    }

    .lpled-rev-card {
        flex: 0 0 88vw;
        scroll-snap-align: center;
        padding: 3.2rem 2.4rem;
    }
}