.search-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
    justify-content: center;
}
.search-link-item {
    padding: 2px 10px;
    border-radius: 5px;
    text-decoration: none;
    margin-bottom: 2px;
}
.search-link-item.bg1 { background: #404148; }
.search-link-item.bg2 { background: #33342c; }
.search-link-item:hover { background: #dad1fc; color: #1e1e5a; }

/* NordVPN Ad Box Styles */
.nordvpn-ad-box {
    background: #f1f2eb;
    border-radius: 15px;
    box-shadow: 0 0 16px 0 #000b;
    padding: 26px 22px;
    max-width: 350px;
    color: #23272e;
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Segoe UI', Arial, sans-serif;
    position: relative;
    margin: 32px auto;
}
.nordvpn-logo {
    flex-shrink: 0;
    margin-right: 12px;
    display: flex;
    align-items: center;
}
.nordvpn-ad-content {
    flex: 1;
}
.nordvpn-flag {
    float: right;
    margin-left: 12px;
    margin-bottom: 4px;
    border-radius: 6px;
    border: 1px solid #dde2d9;
    overflow: hidden;
    width: 32px;
    height: 24px;
    background: #fff;
    box-shadow: 0 1px 4px #0002;
}
.nordvpn-slogan {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #2c3038;
    text-shadow: 0 1px 2px #fff8;
}
.nordvpn-cta-btn {
    display: inline-block;
    margin-top: 2px;
    padding: 10px 20px;
    background-color: #4580ff;
    color: #fff !important;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 3px 12px #0005;
    transition: background 0.22s, box-shadow 0.16s;
    font-size: 1.2rem;
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
}
.nordvpn-cta-btn:hover,
.nordvpn-cta-btn:focus {
    background-color: #2560cc;
    color: #e1ecff !important;
    text-decoration: none;
}
@media (max-width: 500px) {
    .nordvpn-ad-box {
        flex-direction: column;
        padding: 17px 7px;
        max-width: 96%;
        gap: 8px;
    }
    .nordvpn-logo {
        margin-right: 0;
        margin-bottom: 6px;
        justify-content: center;
        width: 100%;
    }
    .nordvpn-flag {
        float: none;
        display: block;
        margin: 0 auto 7px auto;
    }
}