/* Article Specific Styles */

/* Article Hero */
.article-hero {
    padding: 2rem 0 4rem;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article-hero-content {
    max-width: 800px;
    margin-bottom: 3rem;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #fff;
}

.article-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.anime-category {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.article-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ff6b6b, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ff6b6b;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #fff;
}

.publish-date {
    font-size: 0.9rem;
    color: #888;
}

.article-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #888;
}

.article-hero-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    padding: 2rem 1.5rem 1rem;
    font-size: 0.9rem;
}

/* Article Content */
.article-content {
    padding: 2rem 0;
}

.social-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.share-label {
    font-weight: 600;
    color: #fff;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.2);
}

/* Article Body */
.article-body {
    max-width: 800px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-body h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ff6b6b;
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 107, 107, 0.3);
}

.article-body h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin: 2rem 0 1rem;
}

.article-body p {
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 107, 107, 0.1);
    border-left: 4px solid #ff6b6b;
    border-radius: 0 10px 10px 0;
}

.highlight-quote {
    background: rgba(0, 212, 255, 0.1);
    border-left: 4px solid #00d4ff;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    font-size: 1.2rem;
    color: #fff;
    position: relative;
}

.highlight-quote::before {
    content: '"';
    font-size: 4rem;
    color: #00d4ff;
    position: absolute;
    top: -10px;
    left: 10px;
    font-family: serif;
}

.content-highlight {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.content-highlight h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.content-highlight ul {
    list-style: none;
    padding: 0;
}

.content-highlight li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content-highlight li:last-child {
    border-bottom: none;
}

.content-highlight strong {
    color: #00d4ff;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.gallery-item {
    text-align: center;
}

.gallery-item img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.gallery-caption {
    margin-top: 1rem;
    color: #888;
    font-size: 0.9rem;
}

.warning-box {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.warning-box h4 {
    color: #ffc107;
    margin-bottom: 1rem;
}

.warning-box p {
    color: #e0e0e0;
    margin-bottom: 0;
}

/* Tags */
.article-tags {
    margin: 3rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tag-label {
    font-weight: 600;
    color: #fff;
}

.tag {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.tag:hover {
    background: rgba(255, 107, 107, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

/* Author Bio */
.author-bio {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.author-bio-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #ff6b6b;
    flex-shrink: 0;
}

.author-bio-content h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.author-bio-content p {
    color: #b0b0b0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.author-social {
    display: flex;
    gap: 0.5rem;
}

.author-social .social-link {
    width: 35px;
    height: 35px;
    font-size: 1rem;
}

/* Related Articles */
.related-articles {
    margin: 4rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.related-articles h2 {
    font-family: 'Orbitron', monospace;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.related-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.2);
    border-color: rgba(255, 107, 107, 0.3);
}

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

.related-content {
    padding: 1.5rem;
}

.related-category {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.related-content h3 {
    color: #fff;
    margin: 1rem 0 0.5rem;
    font-size: 1.1rem;
    line-height: 1.4;
}

.related-content p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.related-link {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.related-link:hover {
    color: #fff;
}

/* Comments Section */
.comments-section {
    margin: 4rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comments-section h2 {
    font-family: 'Orbitron', monospace;
    color: #fff;
    margin-bottom: 2rem;
}

.comment-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comment-form h3 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.8rem;
    color: #e0e0e0;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #ff6b6b;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}

.form-textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1rem;
    color: #e0e0e0;
    font-size: 0.9rem;
    outline: none;
    resize: vertical;
    min-height: 120px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-textarea:focus {
    border-color: #ff6b6b;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #888;
}

.submit-btn {
    background: linear-gradient(45deg, #ff6b6b, #ff00ff);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.comments-list {
    margin-bottom: 2rem;
}

.comment {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ff6b6b;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comment-author {
    font-weight: 600;
    color: #fff;
}

.comment-date {
    font-size: 0.8rem;
    color: #888;
}

.comment-content p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.comment-actions {
    display: flex;
    gap: 1rem;
}

.like-btn,
.reply-btn {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.like-btn:hover,
.reply-btn:hover {
    color: #ff6b6b;
}

.like-btn.liked {
    color: #ff6b6b;
}

.load-more-comments {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.load-more-comments:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ff6b6b;
}

/* Sidebar Widgets for Articles */
.recent-widget .recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-post {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #e0e0e0;
    text-decoration: none;
    padding: 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.recent-post:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.recent-post img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.recent-content {
    display: flex;
    flex-direction: column;
}

.recent-title {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.2rem;
}

.recent-date {
    font-size: 0.8rem;
    color: #888;
}

/* Responsive Design for Articles */
@media (max-width: 768px) {
    .article-title {
        font-size: 2rem;
    }
    
    .article-subtitle {
        font-size: 1.1rem;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .article-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .social-share {
        flex-wrap: wrap;
    }
    
    .article-body {
        font-size: 1rem;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .form-group {
        grid-template-columns: 1fr;
    }
    
    .comment {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-hero {
        padding: 1rem 0 2rem;
    }
    
    .article-content {
        padding: 1rem 0;
    }
    
    .content-highlight,
    .comment-form,
    .author-bio {
        padding: 1rem;
    }
    
    .lead {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .highlight-quote {
        font-size: 1.1rem;
        padding: 1rem;
    }
}

