/* Blog Post Specific Styles */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    font-size: 0.9rem;
}

.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: #666;
}

.breadcrumb a {
    color: #6c5ce7;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Post Hero */
.post-hero {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.post-header {
    max-width: 800px;
    margin: 0 auto;
}

.post-category {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.category-badge {
    background: #6c5ce7;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.read-time {
    color: #666;
    font-size: 0.9rem;
}

.post-title {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #333;
    margin-bottom: 1.5rem;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: #333;
    display: block;
}

.post-date {
    color: #666;
    font-size: 0.9rem;
}

.post-stats {
    display: flex;
    gap: 1.5rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.stat i {
    color: #6c5ce7;
}

/* Featured Image */
.featured-image {
    padding: 2rem 0;
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.image-caption {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Main Content */
.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding: 3rem 0;
}

/* Article Content */
.article-intro {
    margin-bottom: 2rem;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1.5rem;
}

.key-takeaways {
    background: #f8f9fa;
    border-left: 4px solid #6c5ce7;
    padding: 1.5rem;
    border-radius: 0 5px 5px 0;
}

.key-takeaways h3 {
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.key-takeaways ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.key-takeaways li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.key-takeaways li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6c5ce7;
    font-weight: bold;
}

/* Table of Contents */
.table-of-contents {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.table-of-contents h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-of-contents nav ol {
    list-style: decimal;
    padding-left: 1.5rem;
    margin: 0;
}

.table-of-contents li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.table-of-contents a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.table-of-contents a:hover {
    color: #6c5ce7;
}

/* Game Reviews */
.game-review {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.game-review::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe);
    border-radius: 10px 10px 0 0;
}

.game-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.game-number {
    background: #6c5ce7;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.game-title-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.game-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
}

.game-platform, .game-size, .game-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    background: #f8f9fa;
}

.game-platform i {
    color: #2ecc71;
}

.game-size i {
    color: #3498db;
}

.game-rating i {
    color: #f39c12;
}

.game-image {
    margin-bottom: 1.5rem;
}

.game-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.game-content h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.game-content h4 {
    color: #444;
    margin: 1.5rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.game-features ul, .game-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.game-features li, .game-requirements li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.game-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #6c5ce7;
    font-size: 1.2rem;
}

.cta-section {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Comparison Table */
.comparison-table {
    margin: 3rem 0;
}

.comparison-table h3 {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: #6c5ce7;
    color: white;
}

th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

tbody tr {
    border-bottom: 1px solid #eee;
}

tbody tr:nth-child(even) {
    background: #f8f9fa;
}

td {
    padding: 1rem;
}

/* Conclusion & FAQ */
.article-conclusion, .faq-section {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.faq-item {
    margin: 1.5rem 0;
}

.faq-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

/* Author Bio */
.author-bio {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin: 3rem 0;
}

.author-bio-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-bio-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.author-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.author-social a {
    color: #666;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.author-social a:hover {
    color: #6c5ce7;
}

/* Share Buttons */
.share-buttons {
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.share-buttons h4 {
    margin-bottom: 1rem;
    color: #333;
}

.share-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.share-btn {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.facebook { background: #1877f2; color: white; }
.share-btn.twitter { background: #1da1f2; color: white; }
.share-btn.telegram { background: #0088cc; color: white; }
.share-btn.whatsapp { background: #25d366; color: white; }
.share-btn.copy-link { background: #6c5ce7; color: white; }

/* Sidebar Styles */
.sidebar-widget {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sidebar-widget h3 {
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Related Posts */
.related-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-post {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.related-post:last-child {
    border-bottom: none;
}

.related-post img {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    object-fit: cover;
    flex-shrink: 0;
}

.related-content h4 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.related-content h4 a {
    color: #333;
    text-decoration: none;
}

.related-content h4 a:hover {
    color: #6c5ce7;
}

.related-content p {
    font-size: 0.8rem;
    color: #666;
}

/* Category Links */
.category-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.category-link:hover {
    background: #6c5ce7;
    color: white;
}

.category-link i {
    font-size: 1.2rem;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
}

.newsletter h3,
.newsletter p {
    color: white;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
}

.newsletter-form .btn {
    background: white;
    color: #6c5ce7;
    border: none;
}

/* Tags Cloud */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tags-cloud a {
    background: #f8f9fa;
    color: #666;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s;
}

.tags-cloud a:hover {
    background: #6c5ce7;
    color: white;
}

/* Recent Posts */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-post {
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.recent-post:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.recent-date {
    font-size: 0.8rem;
    color: #666;
    display: block;
    margin-bottom: 0.3rem;
}

.recent-post a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
}

.recent-post a:hover {
    color: #6c5ce7;
}

/* Comments Section */
.comments-section {
    padding: 3rem 0;
    border-top: 1px solid #eee;
}

.comments-section h3 {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-form {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.comment-form h4 {
    margin-bottom: 1.5rem;
    color: #333;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comment {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-author h5 {
    margin: 0;
    color: #333;
}

.comment-date {
    font-size: 0.8rem;
    color: #666;
}

.comment-content p {
    color: #444;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .post-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .post-stats {
        width: 100%;
        justify-content: flex-start;
    }
    
    .featured-image img {
        height: 250px;
    }
    
    .game-header {
        flex-direction: column;
    }
    
    .game-title-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-section {
        flex-direction: column;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .share-links {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .post-title {
        font-size: 1.8rem;
    }
    
    .game-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .table-responsive {
        font-size: 0.9rem;
    }
}