/* Article Page Styles */

.article-page {
    padding-top: 100px;
}

.article-header {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
    position: relative;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.article-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.article-breadcrumb a {
    color: #667eea;
    transition: color 0.3s ease;
}

.article-breadcrumb a:hover {
    color: #764ba2;
}

.article-breadcrumb span {
    color: var(--text-muted);
}

.article-header .article-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    color: #667eea;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.article-featured-image {
    max-width: 900px;
    margin: 2rem auto 2.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-header .article-meta {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.article-header .author {
    color: #667eea;
    font-weight: 600;
}

/* Article Content */
.article-content-wrapper {
    padding: 4rem 0;
    background: var(--bg);
}

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

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

.article-section h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
}

.article-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    margin-top: 0.5rem;
    border-radius: 2px;
}

.article-section h3 {
    font-size: 1.3rem;
    color: #fff;
    margin: 1.5rem 0 1rem;
}

.article-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.article-section ul, .article-section ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.article-section li {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.article-section li strong {
    color: #667eea;
}

/* Comparison Table */
.comparison-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
    background: rgba(102, 126, 234, 0.1);
    color: #fff;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .positive {
    color: #4ade80;
}

.comparison-table .negative {
    color: #f87171;
}

/* Highlight & Warning Boxes */
.highlight-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border-left: 4px solid #667eea;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
}

.highlight-box p {
    color: #fff;
    margin: 0;
}

.warning-box {
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.warning-box h3 {
    color: #f87171;
    margin-top: 0;
}

.warning-box ul {
    margin: 0;
}

.warning-box li {
    color: var(--text-muted);
}

/* Product Review */
.product-review {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    margin-top: 3rem;
}

.rank-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.product-review h2 {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.product-review h2::after {
    display: none;
}

.rating {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.verdict {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1), rgba(74, 222, 128, 0.05));
    border-left: 4px solid #4ade80;
    padding: 1rem;
    border-radius: 0 8px 8px 0;
    margin-top: 1.5rem;
    color: #4ade80 !important;
    font-weight: 600;
}

/* Article CTA */
.article-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
}

.article-cta h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.article-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.article-cta .btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #fff;
    color: #667eea;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.article-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .article-section h2 {
        font-size: 1.4rem;
    }
    
    .product-review {
        padding: 1.5rem;
    }
    
    .article-cta {
        padding: 2rem 1.5rem;
    }
}
