
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }
 /* ========== 瀵艰埅鏍� ========== */
        .navbar {
            /* max-width: 1352px; */
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid #eef2f8;
            flex-wrap: wrap;
            gap: 0.8rem;
            position: relative;
            z-index: 1000;
        }
       .navbar .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e3a5f;
            letter-spacing: -0.3px;
            text-decoration: none;
        }
        .logo span {
            color: #5685a8;
        }
        .nav-container {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-links {
            display: flex;
            gap: 0.3rem;
            list-style: none;
        }
        .nav-item {
            position: relative;
        }
        .nav-item > a {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 0.6rem 1rem;
            text-decoration: none;
            color: #5a6e7c;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.2s;
            border-radius: 0.5rem;
        }
        .nav-item > a:hover, .nav-item > a.active {
            color: #2c6280;
            background: rgba(44, 98, 128, 0.08);
        }
        .nav-item > a .arrow {
            font-size: 0.7rem;
            transition: transform 0.2s;
        }
        .nav-item:hover > a .arrow {
            transform: rotate(180deg);
        }
        .nav-item .arrow {
            font-size: 10px;
        }

        /* 涓嬫媺鑿滃崟 */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 200px;
            background: #fff;
            border-radius: 1rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.12);
            padding: 0.8rem 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1001;
        }
        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .dropdown a {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.7rem 1.2rem;
            text-decoration: none;
            color: #5a6e7c;
            font-size: 0.85rem;
            transition: all 0.2s;
        }
        .dropdown a:hover {
            background: #f0f4f8;
            color: #2c6280;
        }
        .dropdown a .icon {
            font-size: 1rem;
        }
        .dropdown-divider {
            height: 1px;
            background: #eef2f8;
            margin: 0.5rem 0;
        }
        .dropdown-title {
            padding: 0.5rem 1.2rem;
            font-size: 0.75rem;
            color: #9aaebf;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .nav-btn {
            background: linear-gradient(135deg, #ff6b35, #ff8f5a);
            padding: 0.6rem 1.4rem;
            border-radius: 2rem;
            text-decoration: none;
            color: white;
            font-weight: 500;
            font-size: 0.85rem;
            transition: all 0.2s;
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
        }
        .nav-btn:hover {
            background: linear-gradient(135deg, #e55a28, #ff6b35);
            box-shadow: 0 6px 16px rgba(255, 107, 53, 0.35);
            transform: translateY(-2px);
        }
        .nav-login {
            color: #5a6e7c;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            padding: 0.6rem 1rem;
            border-radius: 0.5rem;
            transition: all 0.2s;
        }
        .nav-login:hover {
            color: #2c6280;
            background: rgba(44, 98, 128, 0.08);
        }

        /* 绉诲姩绔彍鍗曟寜閽� */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            padding: 0.5rem;
            cursor: pointer;
        }
        .mobile-menu-btn span {
            display: block;
            width: 24px;
            height: 2px;
            background: #5a6e7c;
            margin: 5px 0;
            border-radius: 2px;
            transition: all 0.3s;
        }

        /* ========== 鑻遍泟鍖� - 澶ф悳绱㈡爮 ========== */
        .hero-search {
            max-width: 1352px;
            text-align: center;
            padding: 3rem 1rem 4rem;
            background: linear-gradient(135deg, #94a2b4 0%, #2c6280 100%);
            border-radius: 2rem;
            margin: 2rem 0 1.5rem;
        }
        .hero-search h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.8rem;
            letter-spacing: -0.02em;
        }
        .hero-search p {
            font-size: 1rem;
            color: rgba(255,255,255,0.8);
            margin-bottom: 2rem;
        }
        .search-container {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            gap: 0.5rem;
            background: white;
            border-radius: 3rem;
            padding: 0.3rem;
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        }
        .search-container input {
            flex: 1;
            border: none;
            padding: 0 1.2rem;
            font-size: 1rem;
            outline: none;
            background: transparent;
            color: #1e2a3a;
        }
        .search-container input::placeholder {
            color: #9aaebf;
        }
        .search-container button {
            background: #ff6b35;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 3rem;
            color: white;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 0.9rem;
        }
        .search-container button:hover {
            background: #e55a28;
        }
        .hot-keywords {
            margin-top: 1.2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.8rem;
        }
        .hot-keywords span {
            padding-top: 2px;
            font-size: 1.0rem;
            color: rgba(255,255,255,0.8);
        }
        .hot-keywords a {
            color: #ffffff;
            text-decoration: none;
            font-size: 0.8rem;
            background: rgba(255,255,255,0.15);
            padding: 0.3rem 0.8rem;
            border-radius: 2rem;
            transition: background 0.2s;
        }
        .hot-keywords a:hover {
            background: rgba(255,255,255,0.25);
        }
       

        /* 姒滃崟鍒囨崲鏍囩 */
        .rank-tabs {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 50px 0 30px;
            flex-wrap: wrap;
        }

        .rank-tab {
            color: #5a6e7c;
            padding: 15px 40px;
            background: #fff;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
            font-size: 1rem;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            border: 2px solid transparent;
        }

        .rank-tab:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 25px rgba(0,0,0,0.12);
        }

        .rank-tab.active {
            background: linear-gradient(135deg, #ff6b35 0%, #ff6b35 100%);
            color: #fff;
        }

        /* 姒滃崟鍐呭鍖� */
        .rank-content {
            display: none;
        }

        .rank-content.active {
            display: block;
        }

        .section-header {
            text-align: center;
            margin: 40px 0 30px;
        }

        .section-header h2 {
            font-size: 2rem;
            color: #5a6e7c;
            margin-bottom: 10px;
        }

        .section-header p {
            color: #5a6e7c;
            font-size: 1rem;
        }

        /* 鍝佺墝鍗＄墖缃戞牸 */
        .brand-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }

        .brand-card {
            background: #fff;
            border-radius: 16px;
            padding: 25px;
            transition: all 0.3s;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .brand-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #5a6e7c 0%, #5a6e7c 100%);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .brand-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }

        .brand-card:hover::before {
            transform: scaleX(1);
        }

        .brand-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f0f0f0;
        }

        .brand-card-header h3 {
            font-size: 1.1rem;
            color: #333;
        }

        .brand-card-header .rank-badge {
            background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
            color: #fff;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: bold;
        }

        .brand-rank-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .brand-rank-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px;
            border-radius: 10px;
            transition: all 0.2s;
        }

        .brand-rank-item:hover {
            background: #f8f9fa;
        }

        .brand-rank-item .position {
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            font-weight: bold;
            font-size: 0.85rem;
            flex-shrink: 0;
        }

        .brand-rank-item .position.top1 {
            background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
            color: #fff;
        }

        .brand-rank-item .position.top2 {
            background: linear-gradient(135deg, #c0c0c0 0%, #a0a0a0 100%);
            color: #fff;
        }

        .brand-rank-item .position.top3 {
            background: linear-gradient(135deg, #cd7f32 0%, #b8860b 100%);
            color: #fff;
        }

        .brand-rank-item .position.other {
            background: #f0f0f0;
            color: #666;
        }

        .brand-rank-item img {
            width: 45px;
            height: 45px;
            border-radius: 10px;
            object-fit: contain;
            background: #f8f9fa;
            padding: 5px;
            display: none;
        }

        .brand-rank-item .info {
            flex: 1;
            min-width: 0;
        }

        .brand-rank-item .brand-name {
            font-weight: 600;
            color: #333;
            font-size: 0.95rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .brand-rank-item .brand-name a {
            color: inherit;
            text-decoration: none;
        }

        .brand-rank-item .brand-name a:hover {
            color: #e94560;
        }

        .brand-rank-item .score {
            font-size: 0.8rem;
            color: #999;
            margin-top: 2px;
        }

        .brand-rank-item .heat {
            color: #ff6b6b;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .view-more {
            display: block;
            text-align: center;
            padding: 15px;
            background: linear-gradient(135deg, #5a6e7c 0%, #5a6e7c 100%);
            color: #fff;
            text-decoration: none;
            border-radius: 10px;
            margin-top: 15px;
            transition: all 0.3s;
            font-weight: 500;
        }

        .view-more:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(102,126,234,0.4);
        }

        /* 鐗硅壊姒滃崟灞曠ず */
        .featured-ranks {
            
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin: 40px 0;
        }

        .featured-rank-card {
           
            background: linear-gradient(135deg, #fff 0%, #fff 100%);
            border-radius: 20px;
            padding: 30px;
            color: #5a6e7c;
            position: relative;
            overflow: hidden;
        }

        .featured-rank-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        }

        .featured-rank-card.secondary {
            background: linear-gradient(135deg, #fff 0%, #fff 100%);
        }

        .featured-rank-card.tertiary {
            background: linear-gradient(135deg, #fff 0%, #fff 100%);
        }

        .featured-rank-card.quaternary {
            background: linear-gradient(135deg, #fff 0%, #fff 100%);
        }

        .featured-rank-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .featured-rank-header h3 {
            font-size: 1.5rem;
        }

        .featured-rank-header .icon {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .featured-rank-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
            position: relative;
            z-index: 1;
        }

        .featured-rank-item {
             text-decoration: none;
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(44, 98, 128, 0.08);
            padding: 12px 15px;
            border-radius: 12px;
            transition: all 0.3s;
        }

        .featured-rank-item:hover {
            background: rgba(255,255,255,0.25);
            transform: translateX(5px);
        }

        .featured-rank-item .num {
            font-size: 1.5rem;
            font-weight: bold;
            width: 35px;
            text-align: center;
        }

        .featured-rank-item img {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            object-fit: contain;
            background: #fff;
            padding: 3px;
            display: none;
        }

        .featured-rank-item .name {
            
            color: #5a6e7c;
            flex: 1;
            font-weight: 500;
        }

        .featured-rank-item .score {
            
            color: #5a6e7c;
            opacity: 0.8;
            font-size: 0.9rem;
        }

        /* 鍏ㄩ儴姒滃崟姒傝 */
        .all-ranks-overview {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            margin: 50px 0;
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
        }

        .all-ranks-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .category-card {
            border: 1px solid #eee;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
        }

        .category-card:hover {
            border-color: #667eea;
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(102,126,234,0.15);
        }

        .category-card .icon {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .category-card h4 {
            font-size: 1rem;
            margin-bottom: 5px;
            color: #333;
        }

        .category-card p {
            font-size: 0.85rem;
            color: #999;
        }

       
  /* ========== 搴曢儴 ========== */
        .footer {
            margin-top: 3rem;
            padding: 2rem 0 3rem;
            border-top: 1px solid #eef2f8;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }
        .footer-col p {
            color: #8aa2b8;
            font-size: 0.8rem;
            margin-top: 0.5rem;
        }
        .footer-links {
            display: flex;
            gap: 2rem;
        }
        .footer-links a {
            text-decoration: none;
            color: #5a6e7c;
            font-size: 0.8rem;
        }
        /* 鍝嶅簲寮� */
        @media (max-width: 1200px) {
            .featured-ranks {
                grid-template-columns: 1fr;
            }

            .all-ranks-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 0 20px;
            }

            .nav-container {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-search {
                padding: 50px 20px;
            }

            .hero-search h1 {
                font-size: 2rem;
            }

            .search-container {
                flex-direction: column;
                border-radius: 20px;
                padding: 10px;
            }

            .search-container input {
                border-radius: 15px;
                margin-bottom: 10px;
            }

            .search-container button {
                border-radius: 15px;
            }

            .rank-tabs {
                gap: 10px;
            }

            .rank-tab {
                padding: 12px 25px;
                font-size: 0.9rem;
            }

            .brand-grid {
                grid-template-columns: 1fr;
            }

            .all-ranks-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

/* 鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺�
   绉诲姩绔搷搴斿紡锛堟闈㈢涓嶅彉锛�
鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺愨晲鈺� */

/* 鈹€鈹€ 骞虫澘绔� 1024px 鈹€鈹€ */
@media (max-width: 1024px) {
    .featured-ranks {
        grid-template-columns: 1fr;
    }

    .all-ranks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 鈹€鈹€ 骞虫澘绔� 768px 鈹€鈹€ */
@media (max-width: 768px) {
    /* 瀵艰埅鏍忥細闅愯棌妗岄潰绔紝鏄剧ず绉诲姩绔彍鍗曟寜閽� */
    .navbar {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        padding: 8px;
        cursor: pointer;
        background: rgba(255,255,255,0.9);
        border-radius: 8px;
        border: 1px solid #eef2f8;
    }

    /* 鑻遍泟鎼滅储鍖� */
    .hero-search {
        padding: 2.5rem 1rem 3rem;
        border-radius: 1.2rem;
        margin: 1.5rem 0 1rem;
    }

    .hero-search h1 {
        font-size: 1.6rem;
    }

    .hero-search p {
        font-size: 0.88rem;
    }

    /* 鎼滅储妗嗭細鏀逛负绾靛悜鍗曞垪 */
    .search-container {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        padding: 0;
        gap: 0.6rem;
        border-radius: 0;
    }

    .search-container input {
        width: 100%;
        background: white;
        border-radius: 2rem;
        padding: 0.9rem 1.2rem;
        border: 1.5px solid rgba(255,255,255,0.5);
        color: #1e2a3a;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .search-container button {
        width: 100%;
        border-radius: 2rem;
        padding: 0.8rem 1.5rem;
    }

    /* 姒滃崟鍒囨崲鏍囩锛氭í鍚戞粴鍔� */
    .rank-tabs {
        margin: 30px 0 20px;
        gap: 10px;
        overflow-x: auto;
        flex-wrap: nowrap;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        justify-content: flex-start;
        padding: 0 16px;
    }

    .rank-tabs::-webkit-scrollbar {
        display: none;
    }

    .rank-tab {
        padding: 10px 24px;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    /* 鍐呭鍖� */
    .section-header {
        margin: 24px 0 20px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.88rem;
    }

    /* 鐗硅壊姒滃崟锛氬崟鍒� */
    .featured-ranks {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 24px 0;
    }

    .featured-rank-card {
        padding: 20px;
        border-radius: 16px;
    }

    .featured-rank-header h3 {
        font-size: 1.2rem;
    }

    /* 鍝佺墝缃戞牸锛�2鍒� */
    .brand-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px;
        margin-bottom: 40px;
    }

    .brand-card {
        padding: 18px;
    }

    .brand-card-header h3 {
        font-size: 0.95rem;
    }

    .brand-rank-item {
        padding: 8px;
        gap: 10px;
    }

    .brand-rank-item img {
        width: 38px;
        height: 38px;
    }

    .brand-rank-item .brand-name {
        font-size: 0.85rem;
    }

    /* 鍏ㄩ儴姒滃崟鍒嗙被 */
    .all-ranks-overview {
        padding: 24px;
        margin: 30px 0;
        border-radius: 16px;
    }

    .all-ranks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-card {
        padding: 16px;
    }

    /* 椤佃剼锛氱旱鍚戝眳涓� */
    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.2rem;
        padding: 1.5rem 0 2rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 12px 18px;
        justify-content: center;
    }

    .footer-links a {
        font-size: 0.75rem;
    }
}

/* 鈹€鈹€ 鎵嬫満绔� 480px 鈹€鈹€ */
@media (max-width: 480px) {
    /* 瀵艰埅鏍忥細鎸佺画闅愯棌 */
    .navbar {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex !important;
    }

    /* 鑻遍泟鎼滅储鍖猴細杩涗竴姝ョ缉灏� */
    .hero-search {
        padding: 1.8rem 0.8rem 2.5rem;
        border-radius: 1rem;
        margin: 1rem 0;
    }

    .hero-search h1 {
        font-size: 1.3rem;
    }

    .hero-search p {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }

    /* 鐑棬鍏抽敭璇� */
    .hot-keywords {
        gap: 0.5rem;
    }

    .hot-keywords a {
        font-size: 0.72rem;
        padding: 0.25rem 0.7rem;
    }

    /* 姒滃崟鍒囨崲 */
    .rank-tabs {
        margin: 20px 0 16px;
        padding: 0 12px;
    }

    .rank-tab {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    /* 鍐呭鍖� */
    .section-header h2 {
        font-size: 1.3rem;
    }

    .section-header p {
        font-size: 0.8rem;
    }

    /* 鐗硅壊姒滃崟 */
    .featured-rank-card {
        padding: 16px;
    }

    .featured-rank-item {
        padding: 10px 12px;
        gap: 12px;
    }

    /* 鍝佺墝缃戞牸锛氬崟鍒� */
    .brand-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

    .brand-card {
        padding: 14px;
    }

    /* 鍏ㄩ儴姒滃崟 */
    .all-ranks-overview {
        padding: 16px;
    }

    .all-ranks-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .category-card {
        padding: 14px;
    }

    /* 椤佃剼 */
    .footer {
        gap: 10px;
        padding: 1.2rem 0 1.6rem;
    }

    .footer-links {
        gap: 10px 12px;
    }
}