.btk-search-block {
    background: #171d18;
    border: 1px solid #2e3d2f;
    border-radius: 12px;
    padding: 24px;
    color: #e2e8f0;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Centered BTK Button */
.btk-header-action {
    text-align: center;
    margin-bottom: 18px;
}

.btk-trigger-btn {
    background: #22c55e;
    color: #052e16;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
    transition: all 0.2s ease;
    display: inline-block;
}

.btk-trigger-btn:hover {
    background: #4ade80;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(34, 197, 94, 0.5);
}

.btk-manifesto {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.45;
    margin: 0 0 16px 0;
    background: #0f1410;
    padding: 12px 14px;
    border-left: 3px solid #22c55e;
    border-radius: 4px;
}

.btk-input-wrapper {
    display: flex;
    gap: 8px;
    background: #0f172a;
    padding: 6px;
    border-radius: 8px;
    border: 1px solid #334155;
}

.btk-search-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 14px;
    color: #fff;
    font-size: 0.92rem;
    outline: none;
}

.btk-search-input::placeholder {
    color: #64748b;
    font-style: italic;
}

.btk-search-btn {
    background: #22c55e;
    color: #052e16;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.btk-search-btn:hover {
    background: #4ade80;
}

.btk-quick-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}

.btk-tag-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
}

.btk-tag {
    background: #233124;
    border: 1px solid #334834;
    color: #86efac;
    padding: 5px 12px;
    border-radius: 14px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btk-tag:hover {
    background: #2e442f;
    color: #fff;
    border-color: #86efac;
}