.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #ffae39;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-current {
    color: #ffae39;
    font-weight: 600;
}

.article-header {
    text-align: center;
}

.article-category {
    display: flex;
    justify-content: center;
}

.category-badge-large {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}

.publish-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.meta-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.reading-time,
.view-count {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.featured-image-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.featured-image-full {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.article-content {
    max-width: none;
}

.article-excerpt {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 174, 57, 0.1);
    border-left: 4px solid #ffae39;
    border-radius: 8px;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    text-align: left;
}

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

.article-footer {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.share-section {
    text-align: center;
}

.share-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid;
}

.share-copy {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.share-copy:hover {
    background: rgba(255, 174, 57, 0.2);
    border-color: rgba(255, 174, 57, 0.5);
    color: #ffae39;
}

.share-discord {
    background: rgba(88, 101, 242, 0.2);
    border-color: rgba(88, 101, 242, 0.4);
    color: #5865f2;
}

.share-discord:hover {
    background: rgba(88, 101, 242, 0.3);
    border-color: #5865f2;
    color: #ffffff;
}

.navigation-section {
    text-align: center;
}

.btn-back-to-news {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 174, 57, 0.3);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-back-to-news:hover {
    background: rgba(255, 174, 57, 0.15);
    border-color: rgba(255, 174, 57, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 174, 57, 0.2);
}

@media (max-width: 768px) {
    .article-title {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .meta-right {
        align-items: center;
    }
    
    .featured-image-full {
        height: 250px;
    }
    
    .article-body {
        font-size: 1rem;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .share-btn {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 1.75rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }
    
    .breadcrumb-current {
        word-break: break-word;
    }
}
