    /* --- Footer Section --- */
    .footer-wrapper {
        margin: 20px auto 40px;
        width: calc(100% - 12px);
        max-width: 1000px;
        box-sizing: border-box;
    }
    .footer-container {
        background-color: var(--nav-bg);
        border-radius: 30px;
        box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
        padding: 24px;
        box-sizing: border-box;
    }
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    .logo-svg {
        height: 38px;
        width: auto;
    }
    .footer-description {
        margin: 0;
        font-size: 14px;
        color: #666;
        line-height: 1.5;
    }
    .footer-menus {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .footer-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .footer-menu h3 {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
        color: #333;
    }
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .footer-links a {
        color: #666;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.2s;
    }
    .footer-links a:hover {
        color: var(--nav-btn-bg, #3060FF);
    }
    .footer-bottom {
        margin-top: 24px;
        padding-top: 20px;
        border-top: 1px solid #eee;
        text-align: center;
    }
    .footer-bottom p {
        margin: 0;
        font-size: 13px;
        color: #888;
    }
    /* --- Desktop Enhancements --- */
    @media (min-width: 768px) {
        .mobile-nav-wrapper {
            max-width: 1000px; /* Expand the navigation bar on desktop */
            width: calc(100% - 80px); /* Slightly more margin on sides for large screens */
        }
        .search-dropdown {
            width: 100%; /* Full width of the nav wrapper on desktop */
        }
        /* Full width dropdown - both corners should be flattened when active */
        .mobile-nav-pill.search-mode.search-active {
            border-radius: 30px 30px 0 0; 
        }
        .releases-list, .list2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }
        /* Footer Desktop Layout */
        .footer-content {
            flex-direction: row;
            justify-content: space-between;
        }
        .footer-brand {
            align-items: flex-start;
            text-align: left;
            max-width: 300px;
        }
        .footer-menu {
            align-items: flex-start;
        }
        .footer-links {
            align-items: flex-start;
        }
        .footer-bottom {
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
    }