/* Article-specific styles */

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    z-index: 10001;
    transition: width 0.3s ease;
}

/* Article Header */
.article {
    padding-top: 80px;
}

.article-header {
    background: #111111;
    padding: 40px 0 60px;
}

.breadcrumbs {
    margin-bottom: 20px;
    font-size: 14px;
    color: #888;
}

.breadcrumbs a {
    color: #ff6b35;
    text-decoration: none;
}

.breadcrumbs span {
    margin: 0 10px;
    color: #666;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.article-category {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.article-category.official {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.article-category.leaks {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

.article-category.analysis {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
}

.article-date,
.article-read-time,
.article-views {
    font-size: 14px;
    color: #888;
}

.article-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 900;
}

.article-excerpt {
    font-size: 18px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 30px;
    max-width: 800px;
}

.article-sharing {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    background: #333;
    color: #ffffff;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-btn:hover {
    background: #ff6b35;
    transform: translateY(-2px);
}

/* Featured Image */
.article-featured-image {
    margin: 0 0 60px;
    text-align: center;
}

.article-featured-image img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.image-caption {
    margin-top: 15px;
    font-size: 14px;
    color: #888;
    font-style: italic;
}

/* Content Layout */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
}

/* Table of Contents */
.table-of-contents {
    background: rgba(255, 107, 53, 0.1);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
    margin-bottom: 40px;
    position: sticky;
    top: 100px;
}

.table-of-contents h3 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-size: 18px;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin-bottom: 10px;
}

.table-of-contents a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.table-of-contents a:hover {
    color: #ff6b35;
}

/* Article Body */
.article-body {
    max-width: 800px;
}

.article-body h2 {
    font-size: 2rem;
    margin: 50px 0 25px;
    color: #ffffff;
    font-weight: 700;
}

.article-body h3 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
    color: #ffffff;
    font-weight: 600;
}

.article-body h4 {
    font-size: 1.25rem;
    margin: 30px 0 15px;
    color: #ff6b35;
    font-weight: 600;
}

.article-body p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #cccccc;
}

.article-body ul,
.article-body ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.article-body li {
    margin-bottom: 8px;
    color: #cccccc;
    line-height: 1.6;
}

.article-body strong {
    color: #ffffff;
    font-weight: 600;
}

.article-body blockquote {
    background: #1a1a1a;
    border-left: 4px solid #ff6b35;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 8px;
    font-style: italic;
    color: #cccccc;
}

/* Special Content Boxes */
.highlight-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
}

.highlight-box h4 {
    color: #ff6b35;
    margin-bottom: 15px;
    font-size: 18px;
}

.highlight-box ul {
    margin-bottom: 0;
}

.prediction-box {
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.3);
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
}

.prediction-box h4 {
    color: #3498db;
    margin-bottom: 15px;
}

.conclusion-box {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
}

.conclusion-box h4 {
    color: #2ecc71;
    margin-bottom: 15px;
}

/* Comparison Grids */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.comparison-item {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #333;
}

.comparison-item h4 {
    color: #ff6b35;
    margin-bottom: 10px;
    font-size: 16px;
}

.comparison-item p {
    color: #cccccc;
    margin: 0;
    font-weight: 600;
}

.trailer-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.trailer-column {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #333;
}

.trailer-column h4 {
    color: #ff6b35;
    margin-bottom: 15px;
}

.weather-comparison {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    border: 1px solid #333;
}

.weather-comparison h4 {
    color: #ff6b35;
    margin-bottom: 15px;
}

.weather-comparison ol {
    margin: 0;
    padding-left: 20px;
}

/* Video Embed */
.video-embed {
    margin: 30px 0;
    text-align: center;
}

.video-placeholder {
    background: #1a1a1a;
    border: 2px dashed #333;
    padding: 60px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.video-placeholder i {
    font-size: 48px;
    color: #ff6b35;
    margin-bottom: 15px;
    display: block;
}

.video-placeholder p {
    color: #cccccc;
    margin: 0;
    font-weight: 600;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #333;
}

.sidebar-widget h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
}

.fact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fact-list li {
    padding: 8px 0;
    border-bottom: 1px solid #333;
    color: #cccccc;
    font-size: 14px;
}

.fact-list li:last-child {
    border-bottom: none;
}

.fact-list strong {
    color: #ff6b35;
}

.related-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.related-links a {
    color: #cccccc;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #333;
    font-size: 14px;
    transition: color 0.3s ease;
}

.related-links a:hover {
    color: #ff6b35;
}

.related-links a:last-child {
    border-bottom: none;
}

.newsletter-widget {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
}

.newsletter-widget h3 {
    color: #ffffff;
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 20px;
}

.sidebar-newsletter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-newsletter input {
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
}

.sidebar-newsletter button {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.sidebar-newsletter button:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Article Footer */
.article-footer {
    background: #111111;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid #333;
}

.article-tags {
    margin-bottom: 30px;
}

.article-tags h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 16px;
}

.article-tags .tag {
    background: #333;
    color: #cccccc;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    margin-right: 10px;
    margin-bottom: 10px;
    display: inline-block;
    transition: all 0.3s ease;
}

.article-tags .tag:hover {
    background: #ff6b35;
    color: #ffffff;
}

.article-sharing-footer h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 16px;
}

.sharing-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Related Posts Section */
.related-posts-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.related-posts-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
    font-size: 2.5rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-post {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.related-post-image {
    height: 200px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-content {
    padding: 20px;
}

.related-post-title {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.4;
}

.related-post-excerpt {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.related-post-meta {
    margin-bottom: 15px;
}

.related-post-meta .read-time {
    color: #888;
    font-size: 12px;
}

.related-post-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.related-post-link:hover {
    color: #f7931e;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .table-of-contents {
        position: static;
        margin-bottom: 40px;
    }
    
    .article-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .article {
        padding-top: 60px;
    }
    
    .article-header {
        padding: 20px 0 40px;
    }
    
    .article-meta {
        gap: 10px;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-excerpt {
        font-size: 16px;
    }
    
    .article-sharing {
        gap: 10px;
    }
    
    .share-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .content-wrapper {
        gap: 30px;
    }
    
    .article-body {
        max-width: 100%;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
        margin: 30px 0 20px;
    }
    
    .article-body h3 {
        font-size: 1.25rem;
        margin: 25px 0 15px;
    }
    
    .trailer-comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .related-posts-section {
        padding: 60px 0;
    }
    
    .related-posts-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .article-header {
        padding: 15px 0 30px;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    .article-excerpt {
        font-size: 14px;
    }
    
    .article-body p {
        font-size: 15px;
    }
    
    .table-of-contents,
    .highlight-box,
    .prediction-box,
    .conclusion-box {
        padding: 20px;
    }
    
    .sidebar-widget {
        padding: 15px;
    }
    
    .article-footer {
        padding: 30px 0;
    }
    
    .sharing-buttons {
        gap: 8px;
    }
    
    .share-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
}
