.review-article {
    padding-top: 100px;
    padding-bottom: 40px;
}

.article-header {
    margin-bottom: 2rem;
}

.breadcrumb {
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #3498db;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 2px solid #eee;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #f39c12;
    font-size: 1.2rem;
}

.score {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.specs-quick {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.specs-quick span {
    background: #3498db;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-image {
    margin: 2rem 0;
    height: 400px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #666;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content section {
    margin-bottom: 3rem;
}

.article-content h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid #3498db;
    padding-bottom: 0.5rem;
}

.article-content h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.article-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.spec-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.performance-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 1rem;
}

.performance-item h3 {
    margin-bottom: 0.5rem;
}

.performance-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    transition: width 0.3s ease;
}

.performance-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.pros, .cons {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
}

.pros {
    border-left: 4px solid #27ae60;
}

.cons {
    border-left: 4px solid #e74c3c;
}

.pros h3 {
    color: #27ae60;
    margin-bottom: 1rem;
}

.cons h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

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

.pros li, .cons li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.pros li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.cons li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.sample-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.sample-item {
    text-align: center;
}

.sample-item .placeholder-image {
    height: 200px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.sample-item p {
    font-size: 0.85rem;
    color: #666;
    font-family: monospace;
    margin: 0;
}

.final-rating {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.rating-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8f9fa;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 2px solid #3498db;
}

.final-score {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
}

.rating-text {
    text-align: center;
}

.rating-text .stars {
    font-size: 1.5rem;
    color: #f39c12;
    display: block;
    margin-bottom: 0.5rem;
}

.rating-text p {
    margin: 0;
    font-weight: 600;
    color: #2c3e50;
}

.nav-brand a {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .specs-quick {
        justify-content: flex-start;
    }
    
    .hero-image {
        height: 250px;
        font-size: 1.5rem;
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .sample-grid {
        grid-template-columns: 1fr;
    }
    
    .rating-box {
        flex-direction: column;
        text-align: center;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
}