.article-page {
    padding: 120px 20px 60px;
    background: rgba(255, 255, 255, 0.95);
    min-height: 100vh;
}
.article-container {
    max-width: 900px;
    margin: 0 auto;
}
.article-header {
    margin-bottom: 40px;
}
.article-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: #666;
}
.article-meta a {
    color: #FF0000;
    text-decoration: none;
    font-weight: 600;
}
.article-meta a:hover {
    text-decoration: underline;
}
.table-of-contents {
    background: rgba(255, 255, 255, 0.9);
    border-left: 4px solid #FF0000;
    padding: 25px;
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.table-of-contents h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #000;
}
.table-of-contents ul {
    list-style: none;
    padding-left: 0;
}
.table-of-contents li {
    margin-bottom: 10px;
}
.table-of-contents a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}
.table-of-contents a:hover {
    color: #FF0000;
}
.article-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
}
.article-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 50px 0 25px;
    color: #000;
}
.article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 35px 0 20px;
    color: #000;
}
.article-content p {
    margin-bottom: 20px;
}
.article-content ul, .article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}
.article-content li {
    margin-bottom: 12px;
}
.article-content a {
    color: #FF0000;
    text-decoration: underline;
}
.article-content a:hover {
    color: #DC143C;
}
.author-box {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 30px;
    margin: 50px 0;
    display: flex;
    gap: 20px;
    align-items: center;
}
.author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
.author-box-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.author-box-content p {
    margin-bottom: 10px;
    color: #555;
}
.author-box-content a {
    color: #FF0000;
    text-decoration: none;
    font-weight: 600;
}
.cta-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 235, 59, 0.1) 100%);
    border: 2px solid #FFD700;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
}
.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.cta-box .btn {
    margin-top: 20px;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}
.comparison-table th {
    background: #FF0000;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 700;
}
.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}
.comparison-table tr:last-child td {
    border-bottom: none;
}
.comparison-table tr:nth-child(even) {
    background: rgba(255, 215, 0, 0.05);
}
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }
    .article-content {
        font-size: 1rem;
    }
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    .comparison-table {
        font-size: 0.9rem;
    }
    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }
}
