/* Article Styles */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 20px 60px;
}

.article-container h1, .article-container h2, .article-container h3 {
    color: #222;
}

.breadcrumb {
    display: flex;
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
}

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

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

.breadcrumb span {
    margin: 0 10px;
}

.article-header {
    margin-bottom: 40px;
}

.article-title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #222;
}

.article-meta {
    display: flex;
    align-items: center;
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.article-date {
    margin-right: 15px;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.article-tag {
    background-color: #f0f0f0;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    color: #555;
}

.article-feature-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.article-content {
    line-height: 1.8;
    color: #333;
}

.article-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    text-align: left;
}

.article-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    text-align: left;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul, 
.article-content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 20px 0;
}

.article-content blockquote {
    background-color: #f9f9f9;
    border-left: 4px solid #3498db;
    padding: 15px 20px;
    margin: 20px 0;
    font-style: italic;
}

.article-content code {
    background-color: #f0f0f0;
    padding: 2px 5px;
    border-radius: 3px;
    font-family: monospace;
}

.share-article {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.share-article h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.related-articles {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.related-articles h3 {
    margin-bottom: 25px;
    font-size: 24px;
    text-align: center;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-article-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.related-article-card:hover {
    transform: translateY(-5px);
}

.related-article-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.related-article-content {
    padding: 15px;
}

.related-article-title {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.related-article-date {
    font-size: 12px;
    color: #666;
}

.back-to-home {
    display: inline-block;
    margin-top: 40px;
    color: #3498db;
    text-decoration: none;
}

.back-to-home:hover {
    text-decoration: underline;
}

/* Article List Page Styles */
.articles-list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 60px;
}

.articles-header {
    margin-bottom: 40px;
    text-align: center;
}

.articles-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.articles-header p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-tag {
    padding: 6px 15px;
    border-radius: 20px;
    background-color: #f0f0f0;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-tag:hover {
    background-color: #e0e0e0;
}

.filter-tag.active {
    background-color: #3498db;
    color: white;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.article-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

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

.article-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-card-content {
    padding: 20px;
}

.article-card-title {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.article-card-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.article-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 15px;
}

.article-card-tag {
    background-color: #f0f0f0;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: #555;
}

.article-card-excerpt {
    color: #666;
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.read-more {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}

.read-more:hover {
    text-decoration: underline;
}

/* Home page articles section */
.game-guides {
    background-color: #f9f9f9;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.view-all-guides {
    display: block;
    width: 200px;
    margin: 40px auto 0;
    padding: 12px 20px;
    background-color: #3498db;
    color: white;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.view-all-guides:hover {
    background-color: #2980b9;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .related-articles-grid {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .guides-grid {
        grid-template-columns: 1fr;
    }
    
    .article-container {
        padding: 100px 15px 40px;
    }
    
    .article-title {
        font-size: 28px;
    }
    
    .article-content h2 {
        font-size: 24px;
    }
    
    .article-content h3 {
        font-size: 20px;
    }
    
    .articles-list-container {
        padding: 100px 15px 40px;
    }
} 