/* =================================================================
   DB POST QUICK NAVIGATION
   Style matching News 'Complete Series Navigation' (Dark/Gold)
   ================================================================= */

.bo-quick-nav {
    background: linear-gradient(135deg, #0F111A 0%, #1a1c29 100%);
    border: 2px solid #FFD700;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.bo-quick-nav h3 {
    font-size: 20px;
    font-weight: 700;
    color: #FFD700;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.bo-quick-nav h3::before {
    content: '📑';
    font-size: 20px;
}

.bo-quick-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bo-quick-nav li {
    margin: 0;
    padding: 0;
}

.bo-quick-nav a {
    display: inline-block;
    padding: 10px 16px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bo-quick-nav a:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.bo-quick-nav a:active {
    transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .bo-quick-nav {
        padding: 20px;
    }

    .bo-quick-nav h3 {
        font-size: 18px;
    }

    .bo-quick-nav ul {
        gap: 8px;
    }

    .bo-quick-nav a {
        padding: 8px 12px;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }

    .bo-quick-nav li {
        width: 100%;
        /* Full width buttons on mobile */
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Section anchor offset */
.bo-nav-section {
    scroll-margin-top: 100px;
    /* Increased offset for header */
}