/* Article Detail Page - Dark Theme */

/* Body Background - Dark Theme */
body {
    background: #0a0a0a !important;
    color: #ffffff;
}

/* Hero Section - Dark Theme */
.article-hero-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%) !important;
}

.article-hero-section .section-title-body h1.head-title {
    color: #ffffff !important;
    text-shadow: 0 2px 20px rgba(1, 192, 87, 0.3);
}

.article-hero-section .section-title-body p.head-text {
    color: #cccccc !important;
}

.article-hero-section .breadcrumb a {
    color: #01c057 !important;
}

.article-hero-section .breadcrumb li.active {
    color: #ffffff !important;
}

/* Article Detail Section - Dark Theme */
.article-detail-section {
    background: #0a0a0a !important;
    color: #ffffff;
    padding: 60px 0;
}

.article-detail-section .block {
    background: transparent !important;
}

/* Article Content - Dark Theme */
.article-content {
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Article Meta - Dark Theme */
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.article-meta > div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b0b0b0;
    font-size: 14px;
}

.article-meta i {
    color: #01c057;
    font-size: 18px;
}

.article-category span {
    background: linear-gradient(135deg, #01c057 0%, #00d4aa 100%);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Featured Image - Dark Theme */
.article-featured-image {
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.95) contrast(1.05);
}

/* Article Body - Dark Theme */
.article-body {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 16px;
}

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(1, 192, 87, 0.2);
}

.article-body h2 {
    border-bottom: 2px solid rgba(1, 192, 87, 0.3);
    padding-bottom: 10px;
}

.article-body p {
    margin-bottom: 20px;
    color: #cccccc;
}

.article-body a {
    color: #01c057;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(1, 192, 87, 0.3);
}

.article-body a:hover {
    color: #00d4aa;
    border-bottom-color: #00d4aa;
}

.article-body ul,
.article-body ol {
    color: #cccccc;
    margin-bottom: 20px;
    padding-left: 25px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-body strong {
    color: #ffffff;
    font-weight: 700;
}

.article-body code {
    background: rgba(1, 192, 87, 0.1);
    color: #01c057;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

.article-body pre {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    overflow-x: auto;
    margin-bottom: 20px;
}

.article-body pre code {
    background: transparent;
    color: #01c057;
    padding: 0;
}

.article-body blockquote {
    border-left: 4px solid #01c057;
    padding-left: 20px;
    margin: 20px 0;
    color: #b0b0b0;
    font-style: italic;
    background: rgba(1, 192, 87, 0.05);
    padding: 15px 20px;
    border-radius: 8px;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Article Footer - Dark Theme */
.article-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.article-share h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 18px;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.share-btn.facebook {
    background: rgba(59, 89, 152, 0.2);
    color: #3b5998;
    border-color: rgba(59, 89, 152, 0.3);
}

.share-btn.facebook:hover {
    background: rgba(59, 89, 152, 0.3);
    transform: translateY(-2px);
}

.share-btn.twitter {
    background: rgba(29, 161, 242, 0.2);
    color: #1da1f2;
    border-color: rgba(29, 161, 242, 0.3);
}

.share-btn.twitter:hover {
    background: rgba(29, 161, 242, 0.3);
    transform: translateY(-2px);
}

.share-btn.linkedin {
    background: rgba(0, 119, 181, 0.2);
    color: #0077b5;
    border-color: rgba(0, 119, 181, 0.3);
}

.share-btn.linkedin:hover {
    background: rgba(0, 119, 181, 0.3);
    transform: translateY(-2px);
}

.share-btn.whatsapp {
    background: rgba(37, 211, 102, 0.2);
    color: #25d366;
    border-color: rgba(37, 211, 102, 0.3);
}

.share-btn.whatsapp:hover {
    background: rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

/* Sidebar - Dark Theme */
.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-widget h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(1, 192, 87, 0.2);
}

.sidebar-widget p {
    color: #b0b0b0;
    margin-bottom: 15px;
    line-height: 1.7;
}

.contact-info p {
    color: #cccccc;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #01c057;
    font-size: 18px;
}

.contact-info a {
    color: #01c057;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #00d4aa;
}

.btn-default.blue {
    background: linear-gradient(135deg, #01c057 0%, #00d4aa 100%);
    color: #ffffff !important;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-default.blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 192, 87, 0.4);
}

/* Related Articles - Dark Theme */
.related-articles-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-article-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.related-article-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-article-image {
    flex-shrink: 0;
    width: 100px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
}

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

.related-article-item:hover .related-article-image img {
    transform: scale(1.1);
}

.related-article-content h5 {
    margin: 0 0 8px 0;
}

.related-article-content h5 a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.related-article-content h5 a:hover {
    color: #01c057;
}

.related-article-date {
    color: #888888;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.related-article-date i {
    color: #01c057;
}

/* CTA Widget - Dark Theme */
.cta-widget {
    background: linear-gradient(135deg, rgba(1, 192, 87, 0.1) 0%, rgba(0, 212, 170, 0.1) 100%);
    border: 2px solid rgba(1, 192, 87, 0.3);
}

.cta-widget h4 {
    color: #01c057;
}

/* Responsive */
@media (max-width: 767px) {
    .article-content {
        padding: 25px 20px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 12px;
    }
}
