.filters-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    width: 100%;
    padding: 5px 0;
}

.service-filters-container {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    margin-bottom: 0 !important;
    overflow-x: auto;
    scrollbar-width: none;
    flex: 1;
    align-items: center;
    scroll-behavior: smooth;
}
.service-filters-container::-webkit-scrollbar { display: none; }

.filter-arrow {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: #666 !important;
    width: 38px;
    height: 38px;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}
.filter-arrow:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    color: white !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    transform: scale(1.1);
}

.filter-tab-btn {
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: #888 !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.filter-tab-btn:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    color: white !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-2px);
}
.filter-tab-btn.active {
    background: rgba(255, 181, 44, 0.1) !important;
    border-color: var(--primary) !important;
    color: var(--primary) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.crypto-tabs { display: flex; gap: 5px; border-bottom: 1px solid #333; margin-bottom: 20px; }
.crypto-tab-btn {
    background: transparent; border: none; color: #666; padding: 12px;
    cursor: pointer; font-weight: 800; font-size: 0.85rem; border-bottom: 2px solid transparent;
    transition: 0.3s;
}
.crypto-tab-btn.active { color: #25d366; border-bottom-color: #25d366; background: rgba(37, 211, 102, 0.05); }
.crypto-address-box {
    background: rgba(255, 255, 255, 0.03); border: 1px dashed #444;
    padding: 15px; border-radius: 12px; margin-bottom: 15px; text-align: left;
}
.crypto-address-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.crypto-address-header span { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; }
.crypto-address-string {
    font-family: 'monospace'; color: white; font-size: 0.85rem; word-break: break-all;
    background: #000; padding: 10px; border-radius: 6px; border: 1px solid #222;
}
.glass-modal-btn {
    width: 100%; padding: 15px; border-radius: 12px; border: none; font-weight: 900;
    cursor: pointer; transition: 0.3s; font-family: 'Montserrat'; letter-spacing: 1px;
}