/* =========================================
   FOOTER PREMIUM DARK MODE (PAWANGSLOT)
   FIXED: Anchor Color Priority
   ========================================= */

.main-footer {
    background-color: var(--color-navbar-bg);
    border-top: 1px solid var(--color-border-subtle);
    padding: 50px 0 20px 0;
    margin-top: 40px;
    color: var(--color-text-light);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- PERBAIKAN WARNA LINK BRAND --- */
/* Menggunakan selector spesifik untuk mengalahkan default browser */
.footer-article .pdp-desc strong a.brand-link,
.footer-bottom .footer-copy strong a.brand-link-copy {
    color: var(--color-text-yellow) !important;
    text-decoration: none !important;
    transition: opacity 0.3s ease;
}

.footer-article .pdp-desc strong a.brand-link:hover,
.footer-bottom .footer-copy strong a.brand-link-copy:hover {
    opacity: 0.8;
    text-decoration: underline !important;
}

/* Footer Article SEO Style */
.footer-article .pdp-desc {
    background-color: var(--color-card-bg);
    border-radius: 12px;
    padding: 30px;
    border-left: 4px solid var(--color-text-yellow);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    margin-bottom: 40px;
}

.footer-article h3 {
    color: var(--color-text-yellow);
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.footer-article p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #ccc;
    text-align: justify;
}

/* Memastikan teks strong di dalam artikel berwarna kuning */
.footer-article .pdp-desc strong {
    color: var(--color-text-yellow) !important;
}

/* Divider Line */
.footer-divider {
    border: 0;
    border-top: 1px solid var(--color-border-subtle);
    margin: 30px 0;
}

/* Bottom Navigation & Copyright */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Gaya link navigasi bawah */
.footer-bottom .footer-links a {
    color: #999 !important;
    text-decoration: none !important;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-bottom .footer-links a:hover {
    color: var(--color-text-yellow) !important;
    transform: translateY(-2px);
}

.footer-copy p {
    font-size: 0.8rem;
    color: #666;
    letter-spacing: 0.5px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .main-footer {
        padding: 30px 0 15px 0;
    }
    
    .footer-article .pdp-desc {
        padding: 20px;
        font-size: 0.85rem;
    }

    .footer-links {
        gap: 10px;
    }
    
    .footer-bottom .footer-links a {
        font-size: 0.8rem;
        background: var(--color-button-dark);
        padding: 5px 12px;
        border-radius: 4px;
        color: var(--color-text-light) !important;
    }
}