/* ========================================
   ARTICLE PAGE STYLES - LEONIDA BRASIL
   ======================================== */

/* Article Container */
.article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    background: white;
    border-left: 1px solid #e9ecef;
    border-right: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.article-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: flex-start;
    
}




/* ========================================
   ARTICLE HEADER
   ======================================== */

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

.article-category {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
}

.category-badge.analyses {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.article-featured {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--color-accent), #f39c12);
    color: #333;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.article-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
    margin: 0 0 16px 0;
}

.article-subtitle {
    font-size: 18px;
    line-height: 1.5;
    color: #6c757d;
    margin-bottom: 24px;
    font-weight: 400;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #e9ecef;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
}

.verified {
    color: #28a745;
    font-size: 12px;
}

.author-role {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
}

.article-stats {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
}

.stat-item .fa {
    color: var(--color-primary);
    font-size: 11px;
}

/* ========================================
   ARTICLE FEATURED IMAGE
   ======================================== */

.article-featured-image {
    margin: 32px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.article-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-featured-image:hover img {
    transform: scale(1.02);
}

.image-caption {
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 12px 16px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.image-caption .fa {
    color: var(--color-accent);
}
/* ========================================
   ARTICLE ACTIONS
   ======================================== */

.article-actions {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 16px;
    margin: 32px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 80px;
    z-index: 10;
}

.social-actions {
    display: flex;
    gap: 12px;
}

.action-btn {
    background: white;
    border: 1px solid #e9ecef;
    color: #6c757d;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.action-btn:hover {
    background: #e9ecef;
    color: #333;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.action-btn.like-btn.liked {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.action-btn.like-btn.animate-heart {
    animation: heartBeat 0.6s ease;
}

.action-btn.bookmarked {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: white;
}

.action-btn .count {
    background: var(--color-primary);
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    min-width: 20px;
    text-align: center;
}

.reading-progress {
    display: flex;
    align-items: center;
    gap: 12px;
}

.progress-bar {
    width: 120px;
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    width: 0%;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 11px;
    color: #6c757d;
    font-weight: 600;
    min-width: 50px;
}

/* ========================================
   ARTICLE CONTENT
   ======================================== */

.article-content {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.content-intro .lead {
    font-size: 18px;
    font-weight: 500;
    color: #495057;
    margin-bottom: 32px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 8px 8px 0;
}

.content-section {
    margin: 32px 0;
}

.content-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e9ecef;
}

.content-section h2 .fa {
    color: var(--color-primary);
    font-size: 20px;
}

.content-section p {
    margin-bottom: 16px;
}

.article-quote {
    background: #f8f9fa;
    border-left: 4px solid var(--color-secondary);
    padding: 20px;
    margin: 24px 0;
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    border-radius: 0 8px 8px 0;
}

.article-quote cite {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    color: #6c757d;
    font-style: normal;
    font-weight: 600;
}

.content-highlight {
    background: rgba(255, 0, 127, 0.05);
    border: 1px solid rgba(255, 0, 127, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin: 24px 0;
}

.content-highlight h3 {
    color: var(--color-primary);
    font-size: 16px;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.content-highlight ul {
    margin: 0;
    padding-left: 20px;
}

.content-highlight li {
    margin-bottom: 8px;
    color: #495057;
}

.content-highlight strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* ========================================
   SPECIAL CONTENT BLOCKS
   ======================================== */

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.location-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.location-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

.location-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.location-card p {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

.easter-eggs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.egg-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.egg-timestamp {
    background: var(--color-primary);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.egg-description {
    flex: 1;
    font-size: 14px;
    color: #495057;
}

.egg-description strong {
    color: var(--color-primary);
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.feature-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: var(--color-primary);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
}

.feature-card p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.predictions-timeline {
    margin: 24px 0;
}

.timeline-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-date {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    min-width: 80px;
    text-align: center;
    flex-shrink: 0;
}

.timeline-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 6px 0;
}

.timeline-content p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

.content-conclusion {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 32px;
    margin: 40px 0;
}

.content-conclusion h2 {
    border-bottom: none;
    margin-bottom: 20px;
}

.article-rating {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.rating-label {
    font-size: 14px;
    font-weight: 600;
    color: #495057;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars .fa {
    color: var(--color-accent);
    font-size: 18px;
}

.rating-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

/* ========================================
   ARTICLE TAGS
   ======================================== */

.article-tags {
    margin: 40px 0;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.article-tags h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-tags .fa {
    color: var(--color-primary);
}

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

.tag {
    background: white;
    border: 1px solid #e9ecef;
    color: var(--color-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tag:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-1px);
}

/* ========================================
   RELATED ARTICLES
   ======================================== */

.related-articles {
    margin: 40px 0;
    padding: 24px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.related-articles h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e9ecef;
}

.related-articles .fa {
    color: var(--color-primary);
}

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

.related-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.related-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.related-thumb {
    height: 120px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    position: relative;
    overflow: hidden;
}

.related-category {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.related-content {
    padding: 16px;
}

.related-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: #6c757d;
}

.related-meta .fa {
    color: var(--color-primary);
    margin-right: 4px;
}

/* ========================================
   SIDEBAR
   ======================================== */

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.widget-header {
    background: var(--color-primary);
    color: white;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-content {
    padding: 20px;
}

/* Author Card */
.author-full-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.author-avatar-large {
    position: relative;
    width: 80px;
    height: 80px;
}

.author-avatar-large img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #e9ecef;
    object-fit: cover;
}

.author-status {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid white;
}

.author-status.online {
    background: #28a745;
}

.author-info-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0 0 4px 0;
}

.author-title {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 12px;
}

.author-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
}

.author-bio {
    font-size: 13px;
    color: #495057;
    line-height: 1.4;
    margin-bottom: 16px;
}

/* Newsletter Widget */
.newsletter h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.newsletter p {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 16px;
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.newsletter-form input {
    padding: 10px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-size: 13px;
}

.newsletter-stats {
    margin-top: 12px;
    font-size: 11px;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 6px;
}

.newsletter-stats .fa {
    color: var(--color-primary);
}

/* Popular Articles */
.popular-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popular-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.popular-item:hover {
    background: #e9ecef;
}

.popular-rank {
    background: var(--color-primary);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.popular-content h5 {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin: 0 0 6px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-meta {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: #6c757d;
}

.popular-meta .fa {
    margin-right: 3px;
}

/* Social Widget */
.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.2s ease;
}

.social-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn.youtube {
    background: #ff0000;
}

.social-btn.discord {
    background: #5865f2;
}

.social-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.social-name {
    font-size: 13px;
}

.social-count {
    font-size: 11px;
    opacity: 0.9;
}

/* Ad Widget */
.ad-space {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: white;
}

.ad-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.ad-content p {
    font-size: 13px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.btn-premium {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-premium:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ========================================
   COMMENTS SECTION
   ======================================== */

.comments-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid #e9ecef;
}

.comments-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.comments-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comments-header .fa {
    color: var(--color-primary);
}

.sort-comments {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    color: #6c757d;
}

/* Comment Form */
.comment-form-section {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 32px;
    transition: all 0.3s ease;
}

.comment-form-section.highlight-pulse {
    animation: highlightPulse 3s ease;
}

.comment-form-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #e9ecef;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
}

.comment-textarea {
    width: 100%;
    min-height: 100px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 16px;
    transition: border-color 0.2s ease;
}

.comment-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary);
}

.comment-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comment-options {
    display: flex;
    align-items: center;
    gap: 12px;
}

.option {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6c757d;
    cursor: pointer;
}

.option input[type="checkbox"] {
    accent-color: var(--color-primary);
}

.char-counter {
    font-size: 11px;
    color: #6c757d;
    margin-left: 8px;
}

.char-counter.warning {
    color: #dc3545;
    font-weight: 600;
}

/* Comments List */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.comment-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.comment-item.reply {
    margin-left: 40px;
    margin-top: 16px;
    padding-left: 16px;
    border-left: 2px solid #e9ecef;
}

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

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
    min-width: 0;
}

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

.comment-author {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-badge {
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
}

.comment-badge.verified {
    background: #28a745;
    color: white;
}

.comment-badge.author {
    background: var(--color-primary);
    color: white;
}

.comment-time {
    font-size: 12px;
    color: #6c757d;
}

.comment-text {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #495057;
}

.comment-text p {
    margin: 0;
}

.comment-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.comment-action {
    background: none;
    border: none;
    color: #6c757d;
    font-size: 12px;
    cursor: pointer;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.comment-action:hover {
    color: var(--color-primary);
}

.comment-action.like.liked {
    color: var(--color-primary);
}

.comment-replies {
    margin-top: 16px;
}

.load-more-comments {
    text-align: center;
    margin-top: 32px;
}

/* ========================================
   MODAL SYSTEM
   ======================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.8) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.modal-overlay.show .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px 12px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 13px;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-size: 13px;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary);
}

.form-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 20px;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    border: 1px solid #6c757d;
}

.btn-secondary:hover {
    background: #5a6268;
    border-color: #5a6268;
}

.btn-danger {
    background: #dc3545;
    color: white;
    border: 1px solid #dc3545;
}

.btn-danger:hover {
    background: #c82333;
    border-color: #bd2130;
}

.share-modal .modal-content {
    max-width: 500px;
}

.share-preview {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.share-preview h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.share-preview p {
    font-size: 13px;
    color: #6c757d;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.share-preview small {
    font-size: 11px;
    color: #999;
    word-break: break-all;
}

.share-options {
    margin-bottom: 20px;
}

.share-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.share-option {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.share-option:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.share-option.facebook:hover {
    border-color: #1877f2;
    color: #1877f2;
}

.share-option.twitter:hover {
    border-color: #1da1f2;
    color: #1da1f2;
}

.share-option.whatsapp:hover {
    border-color: #25d366;
    color: #25d366;
}

.share-option.telegram:hover {
    border-color: #0088cc;
    color: #0088cc;
}

.share-option.reddit:hover {
    border-color: #ff4500;
    color: #ff4500;
}

.share-option.email:hover {
    border-color: #6c757d;
    color: #6c757d;
}

.share-option i {
    font-size: 24px;
}

.share-option span {
    font-size: 12px;
    font-weight: 600;
}

.share-link {
    margin-top: 16px;
}

.share-link label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.link-input-group {
    display: flex;
    gap: 8px;
}

.share-url {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-size: 12px;
    background: #f8f9fa;
}

.copy-link-btn {
    background: var(--color-primary);
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.copy-link-btn:hover {
    background: var(--color-primary-dark);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .article-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .article-sidebar {
        position: static;
        display: grid;
        order: 2;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .article-actions {
        position: static;
    }
}

@media (max-width: 768px) {
    .article-container {
        padding: 16px;
    }
    
    .breadcrumb-content {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        padding: 0 16px;
    }
    
    .page-actions {
        align-self: stretch;
        justify-content: space-between;
    }
    
    .breadcrumb {
        font-size: 11px;
    }
    
    .breadcrumb-item.current {
        max-width: 200px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .article-title {
        font-size: 28px;
    }
    
    .article-subtitle {
        font-size: 16px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .article-stats {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .article-featured-image img {
        height: 250px;
    }
    
    .article-actions {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
    
    .social-actions {
        justify-content: center;
    }
    
    .reading-progress {
        justify-content: center;
    }
    
    .location-grid,
    .features-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .timeline-date {
        align-self: flex-start;
    }
    
    .article-rating {
        flex-direction: column;
        gap: 12px;
    }
    
    .tags-list {
        justify-content: center;
    }
    
    .sidebar-widget {
        margin-bottom: 16px;
    }
    
    .comments-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .comment-item.reply {
        margin-left: 20px;
        padding-left: 12px;
    }
    
    .comment-actions {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .share-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .breadcrumb-content {
        padding: 0 12px;
    }
    
    .breadcrumb {
        font-size: 10px;
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .breadcrumb-separator {
        margin: 0 2px;
    }
    
    .breadcrumb-item.current {
        max-width: 150px;
    }
    
    .page-actions {
        flex-direction: column;
        gap: 6px;
    }
    
    .action-btn {
        justify-content: center;
        padding: 6px 12px;
        font-size: 10px;
    }
    
    .article-subtitle {
        font-size: 15px;
    }
    
    .article-content {
        font-size: 15px;
    }
    
    .content-intro .lead {
        font-size: 16px;
        padding: 16px;
    }
    
    .content-section h2 {
        font-size: 20px;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .article-quote {
        font-size: 16px;
        padding: 16px;
    }
    
    .article-featured-image img {
        height: 200px;
    }
    
    .action-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .location-card,
    .feature-card {
        padding: 16px;
    }
    
    .feature-icon {
        font-size: 28px;
    }
    
    .author-full-info {
        gap: 12px;
    }
    
    .author-avatar-large {
        width: 60px;
        height: 60px;
    }
    
    .author-stats {
        gap: 16px;
    }
    
    .comment-form-section {
        padding: 16px;
    }
    
    .comment-item {
        gap: 12px;
    }
    
    .comment-item.reply {
        margin-left: 12px;
        padding-left: 8px;
    }
    
    .breadcrumb {
        font-size: 11px;
        flex-wrap: wrap;
    }
    
    .page-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .action-btn {
        justify-content: center;
    }
    
    .share-grid {
        grid-template-columns: 1fr;
    }
    
    .link-input-group {
        flex-direction: column;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes highlightPulse {
    0%, 100% {
        background: #f8f9fa;
        border-color: #e9ecef;
    }
    50% {
        background: rgba(255, 0, 127, 0.05);
        border-color: var(--color-primary);
    }
}

.article-header {
    animation: fadeInUp 0.6s ease-out;
}

.article-content {
    animation: fadeInUp 0.8s ease-out;
}

.sidebar-widget {
    animation: slideInLeft 0.6s ease-out;
}

.sidebar-widget:nth-child(2) {
    animation-delay: 0.1s;
}

.sidebar-widget:nth-child(3) {
    animation-delay: 0.2s;
}

.sidebar-widget:nth-child(4) {
    animation-delay: 0.3s;
}

.comment-item {
    animation: fadeInUp 0.5s ease-out;
}

.comment-item:nth-child(2) {
    animation-delay: 0.1s;
}

.comment-item:nth-child(3) {
    animation-delay: 0.2s;
}

/* ========================================
   LOADING STATES
   ======================================== */

.comment-form.loading {
    opacity: 0.6;
    pointer-events: none;
}

.comment-form.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--color-primary);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   HOVER EFFECTS
   ======================================== */

.article-featured-image {
    overflow: hidden;
}

.location-card:hover .location-icon,
.feature-card:hover .feature-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.tag:hover {
    transform: translateY(-2px) scale(1.05);
}

.popular-item:hover .popular-rank {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
}



/* ========================================
   ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {
    .action-btn,
    .tag,
    .comment-action {
        border-width: 2px;
    }
    
    .article-quote,
    .content-highlight {
        border-width: 3px;
    }
}

/* Focus indicators */
.action-btn:focus-visible,
.tag:focus-visible,
.comment-action:focus-visible,
.comment-textarea:focus-visible,
.newsletter-form input:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ========================================
   SCROLL TO TOP
   ======================================== */

.scroll-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--color-primary);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 0, 127, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 0, 127, 0.4);
}