```css
/* ===================================
   FEATURE BAR
=================================== */

.header-feature {
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.header-feature .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 20px;

    display: flex;
    align-items: center;
    gap: 16px;
}

/* LIVE */

.live {
    background: #dc2626;
    color: #fff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    padding: 6px 12px;

    border-radius: 30px;

    white-space: nowrap;
}

/* LINK AREA */

.feature-links {
    flex: 1;

    display: flex;
    align-items: center;
    gap: 10px;

    overflow-x: auto;
    scrollbar-width: none;
}

.feature-links::-webkit-scrollbar {
    display: none;
}

.feature-links a {
    text-decoration: none;

    color: #374151;

    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;

    padding: 6px 12px;

    border-radius: 30px;

    transition: .3s;
}

.feature-links a:hover {
    background: #e5e7eb;
}

/* AI NEWS */

.ai-news {
    background: #0b2d5c;
    color: #fff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    padding: 6px 12px;

    border-radius: 30px;

    white-space: nowrap;
}
```
