.comparison-table-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.material-card-v2 {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.material-card-v2:hover {
    transform: translateY(-5px);
}

.material-header-v2 {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    padding: 1.5rem;
    text-align: center;
}

.material-header-v2 h3 {
    margin: 0;
    font-size: 1.5rem;
}

.material-content-v2 {
    padding: 1.5rem;
}

.rating-v2 {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.rating-label-v2 {
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.rating-stars-v2 {
    color: #ffd700;
    font-size: 1.2rem;
}

.rating-stars-v2 .star {
    color: #ffd700;
}

.rating-stars-v2 .star-empty {
    color: #ddd;
}

.pros-cons-v2 {
    margin-top: 2rem;
    display: grid;
    gap: 1.5rem;
}

.pros-v2, .cons-v2 {
    padding: 1.5rem;
    border-radius: 10px;
}

.pros-v2 {
    background: rgba(76, 175, 80, 0.1);
}

.cons-v2 {
    background: rgba(244, 67, 54, 0.1);
}

.pros-v2 h4, .cons-v2 h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    position: relative;
    padding-left: 1.5rem;
}

.pros-v2 h4:before {
    content: "✓";
    color: #4CAF50;
    position: absolute;
    left: 0;
}

.cons-v2 h4:before {
    content: "✗";
    color: #F44336;
    position: absolute;
    left: 0;
}

.pros-v2 ul, .cons-v2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-v2 li, .cons-v2 li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.pros-v2 li:before {
    content: "•";
    color: #4CAF50;
    position: absolute;
    left: 0;
}

.cons-v2 li:before {
    content: "•";
    color: #F44336;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .comparison-table-v2 {
        grid-template-columns: 1fr;
    }
} 