/* CSS untuk Halaman Umberto Fedeli Net Worth */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.header {
    background-color: #2e2e33;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    border-radius: 4px;
}

#menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

#menu a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

#menu a:hover {
    background-color: rgba(255,255,255,0.1);
}

#theme-toggle {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

#theme-toggle:hover {
    background-color: rgba(255,255,255,0.1);
}

.main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.breadcrumbs {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumbs a {
    color: #0066cc;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.post-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #2e2e33;
}

.post-meta {
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.post-content {
    line-height: 1.8;
}

.post-content h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem 0;
    color: #2e2e33;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 0.5rem;
}

.post-content h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem 0;
    color: #2e2e33;
}

.post-content p {
    margin-bottom: 1rem;
    text-align: justify;
}

.post-content ul,
.post-content ol {
    margin: 1rem 0 1rem 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content strong {
    color: #2e2e33;
    font-weight: 600;
}

.paginav {
    display: flex;
    justify-content: space-between;
    margin: 3rem 0;
    gap: 1rem;
}

.paginav a {
    flex: 1;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.paginav a:hover {
    background-color: #f5f5f5;
    border-color: #0066cc;
}

.paginav .title {
    font-weight: bold;
    color: #0066cc;
}

.footer {
    background-color: #f8f9fa;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    border-top: 1px solid #eee;
}

.footer a {
    color: #0066cc;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.top-link {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #0066cc;
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}

.top-link:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

/* Dark theme */
.dark {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

.dark .post-title,
.dark .post-content h2,
.dark .post-content h3,
.dark .post-content strong {
    color: #e0e0e0;
}

.dark .post-content h2 {
    border-bottom-color: #4a9eff;
}

.dark .breadcrumbs {
    color: #aaa;
}

.dark .post-meta {
    color: #aaa;
}

.dark .paginav a {
    background-color: #2e2e33;
    border-color: #444;
    color: #e0e0e0;
}

.dark .paginav a:hover {
    background-color: #3a3a3f;
    border-color: #4a9eff;
}

.dark .footer {
    background-color: #2e2e33;
    border-top-color: #444;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .post-title {
        font-size: 2rem;
    }
    
    .main {
        padding: 0 1rem;
    }
    
    .paginav {
        flex-direction: column;
    }
    
    #menu {
        gap: 1rem;
    }
}
/* 
Additional styles for better integration */
.post-single {
    background: transparent;
}

.post-header {
    margin-bottom: 2rem;
}

.toc {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.dark .toc {
    background-color: #2e2e33;
    border-color: #444;
}

.toc details {
    margin: 0;
}

.toc summary {
    font-weight: bold;
    cursor: pointer;
    padding: 0.5rem 0;
}

.toc .inner ul {
    margin: 0.5rem 0 0 1rem;
    list-style: none;
}

.toc .inner li {
    margin: 0.25rem 0;
}

.toc .inner a {
    color: #0066cc;
    text-decoration: none;
    font-size: 0.9rem;
}

.toc .inner a:hover {
    text-decoration: underline;
}

.dark .toc .inner a {
    color: #4a9eff;
}

/* Logo switches styling */
.logo-switches {
    margin-left: 1rem;
}

/* SVG icons in theme toggle */
#theme-toggle svg {
    width: 20px;
    height: 20px;
}

.dark #sun {
    display: none;
}

.dark #moon {
    display: block;
}

#sun {
    display: none;
}

#moon {
    display: block;
}

.dark #sun {
    display: block;
}

.dark #moon {
    display: none;
}

/* Improved image styling */
.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.dark .post-content img {
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Better list styling */
.post-content ol li strong {
    color: #0066cc;
}

.dark .post-content ol li strong {
    color: #4a9eff;
}

/* Smooth transitions */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}

.dark a:focus,
.dark button:focus {
    outline-color: #4a9eff;
}

/* Additional CSS for Advanced Templates */

/* Template 1 Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.site-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin: 0;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.main-nav a:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Article Styles */
.article {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    margin: 2rem 0;
}

.article-header {
    padding: 2rem 2rem 1rem 2rem;
}

.article-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2e2e33;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    gap: 1rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.article-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 2rem;
}

.intro-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.article-content h2 {
    font-size: 1.8rem;
    color: #2e2e33;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 0.5rem;
}

.article-content h3 {
    font-size: 1.4rem;
    color: #2e2e33;
    margin: 1.5rem 0 1rem 0;
}

.article-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #444;
}

/* Template 2 Specific Styles */
.featured-image {
    margin: 2rem 0;
    text-align: center;
}

.featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.lead {
    font-size: 1.3rem;
    font-weight: 300;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.content-wrapper ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-wrapper li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

blockquote {
    background: #f8f9fa;
    border-left: 4px solid #0066cc;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
}

/* Template 3 Specific Styles */
.highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.highlight-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.highlight-box ol {
    padding-left: 1.5rem;
}

.highlight-box li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.conclusion {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-content {
        padding: 1rem;
    }
    
    .article-header {
        padding: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Dark Theme Support */
.dark .article {
    background: #2e2e33;
    color: #e0e0e0;
}

.dark .article-title,
.dark .article-content h2,
.dark .article-content h3 {
    color: #e0e0e0;
}

.dark .article-content h2 {
    border-bottom-color: #4a9eff;
}

.dark .intro-text,
.dark .lead {
    color: #ccc;
}

.dark .article-content p {
    color: #ddd;
}

.dark blockquote {
    background: #3a3a3f;
    color: #ddd;
}

.dark .stat-item {
    background: #3a3a3f;
    color: #e0e0e0;
}

.dark .conclusion {
    background: #3a3a3f;
    color: #e0e0e0;
}

/* Animation and Transitions */
.article {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.highlight-box {
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}/* SEO T
emplate Specific Styles */

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

/* Breadcrumbs */
.breadcrumbs {
    margin: 1rem 0;
    font-size: 0.9rem;
}

.breadcrumbs ol {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs li {
    margin-right: 0.5rem;
}

.breadcrumbs li:not(:last-child)::after {
    content: " › ";
    margin-left: 0.5rem;
    color: #666;
}

.breadcrumbs a {
    color: #0066cc;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Table of Contents */
.table-of-contents {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.table-of-contents h2 {
    margin-top: 0;
    font-size: 1.3rem;
    color: #2e2e33;
}

.table-of-contents ol {
    margin: 1rem 0 0 0;
    padding-left: 1.5rem;
}

.table-of-contents li {
    margin-bottom: 0.5rem;
}

.table-of-contents a {
    color: #0066cc;
    text-decoration: none;
}

.table-of-contents a:hover {
    text-decoration: underline;
}

/* Article Tags */
.article-tags {
    margin: 1rem 0;
}

.tag {
    display: inline-block;
    background: #e9ecef;
    color: #495057;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.tag:hover {
    background: #0066cc;
    color: white;
}

/* FAQ Section */
.faq-section {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.faq-section h2 {
    color: #2e2e33;
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    margin: 0;
    line-height: 1.6;
}

/* Article Footer */
.article-footer {
    border-top: 1px solid #e9ecef;
    padding-top: 2rem;
    margin-top: 3rem;
}

.share-buttons {
    margin-top: 1rem;
}

.share-buttons a {
    display: inline-block;
    background: #0066cc;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 4px;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.share-buttons a:hover {
    background: #0052a3;
}

/* Related Articles */
.related-articles {
    margin: 4rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.related-articles h2 {
    color: #2e2e33;
    margin-bottom: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.related-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.related-item h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.related-item a {
    color: #0066cc;
    text-decoration: none;
}

.related-item a:hover {
    text-decoration: underline;
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

#back-to-top:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #0066cc, #4a9eff);
    z-index: 1000;
    transition: width 0.3s ease;
}

/* Enhanced Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Dark Theme Enhancements */
.dark .table-of-contents {
    background: #3a3a3f;
    border-color: #555;
    color: #e0e0e0;
}

.dark .faq-section {
    background: #3a3a3f;
}

.dark .faq-item {
    background: #2e2e33;
    color: #e0e0e0;
}

.dark .related-articles {
    background: #3a3a3f;
}

.dark .related-item {
    background: #2e2e33;
    color: #e0e0e0;
}

.dark .tag {
    background: #555;
    color: #e0e0e0;
}

.dark .tag:hover {
    background: #4a9eff;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .table-of-contents {
        padding: 1rem;
    }
    
    .faq-section {
        padding: 1rem;
    }
    
    .faq-item {
        padding: 1rem;
    }
    
    .article-footer {
        padding-top: 1rem;
    }
    
    .share-buttons a {
        display: block;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    #back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    .header, .footer, #back-to-top, .share-buttons, .related-articles {
        display: none;
    }
    
    .article {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .article-content {
        padding: 1rem;
    }
}
/* 
Ad Container Styling */
.ad-container {
    margin: 20px auto;
    padding: 15px;
    text-align: center;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    max-width: 320px;
}

.ad-container iframe {
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Responsive ad styling */
@media (max-width: 768px) {
    .ad-container {
        margin: 15px auto;
        padding: 10px;
        max-width: 300px;
    }
}

/* Dark mode ad styling */
.dark .ad-container {
    background: #2d3748;
    border-color: #4a5568;
}

/* Ad spacing in content */
.article-content .ad-container {
    margin: 25px auto;
}

.article-content .ad-container:first-of-type {
    margin-top: 20px;
}

.article-content .ad-container:last-of-type {
    margin-bottom: 20px;
}/* Re
lated Articles Styling */
.related-articles {
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.related-articles h2 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 1.8rem;
    text-align: center;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.related-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.related-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.related-item h3 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    line-height: 1.4;
}

.related-item h3 a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.related-item h3 a:hover {
    color: #3498db;
}

.related-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Dark mode related articles */
.dark .related-articles {
    background: #2d3748;
    border-color: #4a5568;
}

.dark .related-articles h2 {
    color: #e2e8f0;
    border-bottom-color: #4299e1;
}

.dark .related-item {
    background: #1a202c;
    border-color: #4a5568;
}

.dark .related-item h3 a {
    color: #e2e8f0;
}

.dark .related-item h3 a:hover {
    color: #4299e1;
}

.dark .related-item p {
    color: #a0aec0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .related-articles {
        margin: 30px 0;
        padding: 20px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .related-item {
        padding: 15px;
    }
    
    .related-articles h2 {
        font-size: 1.5rem;
    }
}/* Foote
r Internal Links Styling */
.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    padding: 30px 0;
    border-bottom: 1px solid #e9ecef;
}

.footer-categories h4,
.footer-topics h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-categories ul,
.footer-topics ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-categories li,
.footer-topics li {
    margin-bottom: 8px;
}

.footer-categories a,
.footer-topics a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    padding: 2px 0;
}

.footer-categories a:hover,
.footer-topics a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom a {
    color: #3498db;
    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Dark mode footer */
.dark .footer-links {
    border-bottom-color: #4a5568;
}

.dark .footer-categories h4,
.dark .footer-topics h4 {
    color: #e2e8f0;
}

.dark .footer-categories a,
.dark .footer-topics a {
    color: #a0aec0;
}

.dark .footer-categories a:hover,
.dark .footer-topics a:hover {
    color: #4299e1;
}

.dark .footer-bottom p {
    color: #a0aec0;
}

.dark .footer-bottom a {
    color: #4299e1;
}

/* Mobile responsive footer */
@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 0;
    }
    
    .footer-categories h4,
    .footer-topics h4 {
        font-size: 1rem;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

/* Breadcrumb styling enhancement */
.breadcrumbs {
    margin: 20px 0;
    padding: 10px 0;
}

.breadcrumbs ol {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: #666;
    font-weight: bold;
}

.breadcrumbs a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.breadcrumbs li[aria-current="page"] {
    color: #666;
    font-size: 0.9rem;
}

/* Dark mode breadcrumbs */
.dark .breadcrumbs li:not(:last-child)::after {
    color: #a0aec0;
}

.dark .breadcrumbs a {
    color: #4299e1;
}

.dark .breadcrumbs a:hover {
    color: #63b3ed;
}

.dark .breadcrumbs li[aria-current="page"] {
    color: #a0aec0;
}