.site-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.site-btn {
    padding: 10px 14px;
    border-radius: 8px;
    border: none;
    background: #1f2933;
    color: #e5e7eb;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.2s, transform 0.1s;

    display: flex;
    align-items: center;
    gap: 6px;
}

.site-btn:hover {
    background: #374151;
}

.site-btn.active {
    background: #2563eb;
    color: #ffffff;
}

.site-btn:active {
    transform: scale(0.97);
}

.results {
    max-width: 700px;
    margin: 25px auto;
    text-align: left;
}

.result-item {
    background: #1f2933;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.result-title {
    flex: 1;
    min-width: 0;
}

.result-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.popular {
    justify-content: center;

    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pk {
    background: #374151;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
}