/* СБРОС И БАЗОВЫЕ НАСТРОЙКИ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: radial-gradient(circle at 50% 0%, #1a1338 0%, #080510 100%);
    color: #eae7ec;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

h1, h2, h3, h4, h5, h6, .logo-title, .balance-amount, .welcome-card h2, .price, .rate-value, .p-stat-val {
    font-family: 'Unbounded', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.6px;
    font-weight: 800;
}

/* Премиальный 3D эффект для крупных заглавных элементов */
h1, h2, .logo-title, .balance-amount, .welcome-card h2, .price, .text-3d {
    text-shadow: 1px 1px 0px rgba(249, 115, 22, 0.35),
                 2px 2px 0px rgba(249, 115, 22, 0.15),
                 3px 3px 6px rgba(0, 0, 0, 0.5);
}

/* КОНТЕЙНЕР ПРИЛОЖЕНИЯ (Мобильный и Десктопный вид) */
.app-container {
    width: 100%;
    max-width: 480px;
    min-height: 100vh;
    background: linear-gradient(180deg, #100c22 0%, #080510 100%);
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 85px; /* Высота таб-бара */
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9);
    transition: max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ШАПКА ПРИЛОЖЕНИЯ */
.app-header {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 8, 16, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-title {
    font-size: 19px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.gradient-text {
    background: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(249, 115, 22, 0.25));
}

.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}


.header-balance {
    text-align: right;
}

.balance-label {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #a19da9;
    display: block;
    margin-bottom: 1px;
}

.balance-amount {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
}

/* ЛЕЙАУТ СЕТКА */
.app-layout-grid {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* САЙДБАР (ЛЕВАЯ КОЛОНКА) */
.sidebar-aside {
    display: none; /* Виден только на десктопе, на мобилке перекидывается в Главную */
    padding: 20px 20px 0 20px;
    flex-direction: column;
    gap: 16px;
}

/* ОСНОВНОЙ КОНТЕНТ */
.app-main {
    padding: 20px;
    flex-grow: 1;
}

.tab-content {
    display: none;
    animation: slideTabIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.tab-content.active {
    display: block;
}

@keyframes slideTabIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ВАЙБОВЫЙ ЛЕТНИЙ КАРД */
.welcome-card {
    background: linear-gradient(135deg, #f97316 0%, #8b5cf6 55%, #4c1d95 100%);
    border-radius: 20px;
    padding: 22px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 14px;
}

.welcome-overlay {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(254, 240, 138, 0.45) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    animation: sunPulse 5s infinite alternate ease-in-out;
}

@keyframes sunPulse {
    from { transform: scale(0.9); opacity: 0.6; }
    to { transform: scale(1.1); opacity: 1; }
}

.welcome-card h2 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.welcome-card p {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    line-height: 1.4;
}

.welcome-stats {
    display: flex;
    gap: 12px;
}

.stat-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-num {
    font-size: 16px;
    font-weight: 800;
    display: block;
    color: #ffffff;
}

.stat-title {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
    display: block;
}

/* БЛОК СТАТУСА ПЛОЩАДКИ */
.status-indicator-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(5, 150, 105, 0.03) 100%);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.08);
}

.status-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.status-dot-green {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981, 0 0 20px rgba(16, 185, 129, 0.5);
    animation: blinkG 1.4s infinite;
}

@keyframes blinkG {
    0% { opacity: 0.4; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 0.4; transform: scale(0.9); }
}

.status-text {
    font-size: 11px;
    font-weight: 800;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.3);
}

.status-desc {
    font-size: 11.5px;
    color: #c4c0cd;
    line-height: 1.45;
    margin-bottom: 12px;
}

/* ДЕТАЛИЗАЦИЯ ШЛЮЗОВ ДЛЯ ЗАПОЛНЕНИЯ ПУСТОТЫ */
.gateway-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px dashed rgba(16, 185, 129, 0.2);
    padding-top: 12px;
    margin-top: 4px;
}

.gateway-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 8, 16, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 8px 12px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.gateway-item:hover {
    background: rgba(16, 185, 129, 0.06);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateX(3px);
}

.gw-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gw-dot-green {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
}

.gateway-item:nth-child(1) .gw-dot-green { animation: blinkG 1.2s infinite; }
.gateway-item:nth-child(2) .gw-dot-green { animation: blinkG 1.5s infinite; }
.gateway-item:nth-child(3) .gw-dot-green { animation: blinkG 1.8s infinite; }
.gateway-item:nth-child(4) .gw-dot-green { animation: blinkG 2.1s infinite; }

.gw-name {
    font-size: 11px;
    font-weight: 600;
    color: #eae7ec;
}

.gw-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gw-ping {
    font-size: 10px;
    font-family: 'Unbounded', monospace;
    font-weight: 700;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 2px 6px;
    border-radius: 6px;
}

.gw-load {
    font-size: 9px;
    font-weight: 500;
    color: #a19da9;
}

/* ===== ВИДЖЕТ: РЫНОЧНЫЙ ПУЛЬС ===== */
.market-pulse-card {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.06) 0%, rgba(249, 115, 22, 0.04) 100%);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 16px;
    padding: 14px;
}

.mp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.mp-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #c4b5fd;
}

.mp-badge-live {
    font-size: 8px;
    font-weight: 800;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.15);
    padding: 2px 7px;
    border-radius: 6px;
    letter-spacing: 1px;
    animation: pulseLive 1.5s ease-in-out infinite;
}

@keyframes pulseLive {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; box-shadow: 0 0 8px rgba(239, 68, 68, 0.3); }
}

.mp-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mp-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mp-bar-label {
    font-size: 9px;
    color: #a19da9;
    width: 48px;
    flex-shrink: 0;
}

.mp-bar-track {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 3px;
    overflow: hidden;
}

.mp-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.mp-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: barShimmer 2.5s infinite;
}

@keyframes barShimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.mp-bar-fill.demand { background: linear-gradient(90deg, #10b981, #34d399); }
.mp-bar-fill.supply { background: linear-gradient(90deg, #fbbf24, #f59e0b); }
.mp-bar-fill.margin { background: linear-gradient(90deg, #f97316, #ef4444); }

.mp-bar-val {
    font-size: 9px;
    font-weight: 700;
    width: 32px;
    text-align: right;
    flex-shrink: 0;
}

/* ===== ВИДЖЕТ: ТОП-СПРОС ===== */
.trending-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(249, 115, 22, 0.1);
    border-radius: 16px;
    padding: 14px;
}

.trending-header {
    font-family: 'Unbounded', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 10px;
}

.trending-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.trending-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.15);
    transition: background 0.2s ease;
}

.trending-item:first-child {
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.12);
}

.trending-rank {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
    color: #a19da9;
    flex-shrink: 0;
}

.trending-rank.hot {
    background: linear-gradient(135deg, #f97316, #ef4444);
    color: #ffffff;
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.4);
}

.trending-rank.dim {
    opacity: 0.5;
}

.trending-name {
    flex: 1;
    font-size: 10.5px;
    font-weight: 600;
    color: #eae7ec;
}

.trending-change {
    font-size: 9px;
    font-weight: 700;
}

.trending-change.up { color: #10b981; }
.trending-change.down { color: #ef4444; }

/* ===== ВИДЖЕТ: СОВЕТ ДНЯ ===== */
.tip-of-day-card {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.06) 0%, rgba(251, 191, 36, 0.04) 100%);
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: 16px;
    padding: 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.tip-icon {
    font-size: 20px;
    flex-shrink: 0;
    animation: pulseEmoji 2s ease-in-out infinite;
}

.tip-label {
    font-family: 'Unbounded', sans-serif;
    font-size: 9px;
    font-weight: 700;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.tip-text {
    font-size: 10.5px;
    color: #c4b5fd;
    line-height: 1.45;
}

/* ХЕЛПЕРЫ ЦВЕТОВ */
.text-green { color: #10b981 !important; }
.text-gold { color: #fbbf24 !important; }
.text-orange { color: #f97316 !important; }

/* ЗАГОЛОВКИ РАЗДЕЛОВ */
.section-title {
    font-size: 14px;
    font-weight: 700;
    margin: 20px 0 12px 0;
    color: #ffffff;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 10px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    bottom: 3px;
    width: 3px;
    background: #f97316;
    border-radius: 2px;
}

/* БЫСТРЫЕ ОПЕРАЦИИ (КОШЕЛЕК) */
.quick-actions-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 14px;
}

.wallet-actions {
    display: flex;
    gap: 12px;
}

.action-btn-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-btn-main.primary {
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    border: none;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}

.action-btn-main.primary:active {
    transform: scale(0.97);
    box-shadow: 0 2px 6px rgba(249, 115, 22, 0.1);
}

.action-btn-main.secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.action-btn-main.secondary:hover {
    background: rgba(255, 255, 255, 0.06);
}

.action-btn-main.secondary:active {
    transform: scale(0.97);
}

/* ПОДСКАЗКИ */
.hint-card {
    background: rgba(249, 115, 22, 0.03);
    border: 1px solid rgba(249, 115, 22, 0.08);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.hint-icon {
    font-size: 18px;
}

.hint-content h4 {
    font-size: 12.5px;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 4px;
}

.hint-content p {
    font-size: 11px;
    color: #a19da9;
    line-height: 1.4;
}

/* ШАПКИ СЕКЦИЙ */
.section-header-banner {
    padding: 18px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.12) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-radius: 16px;
    border: 1px solid rgba(249, 115, 22, 0.15);
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.06);
}

.section-header-banner h2 {
    font-size: 18px;
    font-weight: 800;
}

.section-header-banner p {
    font-size: 11px;
    color: #a19da9;
    margin-top: 3px;
    line-height: 1.4;
}

/* ТОВАРЫ (МАГАЗИН) */
.products-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 15px;
}

.product-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, rgba(139, 92, 246, 0.03) 100%);
    border: 1px solid rgba(139, 92, 246, 0.22);
    border-radius: 14px;
    padding: 12px 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, rgba(249, 115, 22, 0.04) 100%);
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.12), 0 0 15px rgba(139, 92, 246, 0.06);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: #f97316;
}

.product-card.pro-tier::before { background: #fbbf24; }
.product-card.vip-tier::before { background: #ef4444; }

.badge-tier {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.3px;
    background: rgba(255, 255, 255, 0.04);
    color: #fbbf24;
}

.badge-tier.pro { background: rgba(251, 191, 36, 0.1); color: #fbbf24; }
.badge-tier.vip { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

.product-header {
    margin-top: 8px;
}

.product-header h3 {
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-header .price {
    font-size: 13.5px;
    font-weight: 800;
    color: #f97316;
    display: block;
    margin-top: 1px;
}

.product-desc {
    font-size: 9px;
    color: #a19da9;
    line-height: 1.35;
    margin: 5px 0 8px 0;
    height: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-metrics {
    display: flex;
    gap: 8px;
    background: rgba(0, 0, 0, 0.15);
    padding: 4px 6px;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.01);
}

.metric {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.m-val {
    font-size: 10px;
    font-weight: 700;
    color: #10b981;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.m-lbl {
    font-size: 7px;
    color: #a19da9;
    text-transform: uppercase;
}

.buy-btn {
    width: 100%;
    padding: 8px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.buy-btn:hover {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.25) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-color: rgba(249, 115, 22, 0.35);
    box-shadow: 0 0 12px rgba(249, 115, 22, 0.15);
}

.buy-btn:active {
    transform: scale(0.97);
}

.buy-btn.pro {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(251, 191, 36, 0.18) 100%);
    border-color: rgba(249, 115, 22, 0.3);
    color: #fbbf24;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.08);
}

.buy-btn.vip {
    background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
    border: none;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.25);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* ПРОДАТЬ АККАУНТЫ (OTC ВЫКУП) */
.inventory-status-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 14px;
    margin-bottom: 16px;
}

.inventory-status-card h3 {
    font-size: 12.5px;
    font-weight: 700;
    margin-bottom: 8px;
}

.inventory-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.empty-inventory {
    font-size: 11px;
    color: #a19da9;
    text-align: center;
    padding: 14px 0;
    border: 1px dashed rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.inv-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.15);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.inv-item-name {
    font-size: 11.5px;
    font-weight: 600;
}

.inv-item-status {
    font-size: 9.5px;
    color: #10b981;
}

.buyers-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.buyer-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 14px;
}

.buyer-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.buyer-avatar {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.buyer-info h4 {
    font-size: 12.5px;
    font-weight: 700;
}

.buyer-badge {
    font-size: 7.5px;
    padding: 1px 4px;
    border-radius: 4px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.05);
    color: #a19da9;
}

.buyer-badge.auto { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.buyer-badge.escrow { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

.deal-terms {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    background: rgba(0, 0, 0, 0.1);
    padding: 6px 10px;
    border-radius: 8px;
}

.deal-param {
    display: flex;
    flex-direction: column;
}

.param-title {
    font-size: 7.5px;
    color: #a19da9;
    text-transform: uppercase;
}

.param-value {
    font-size: 11px;
    font-weight: 700;
    margin-top: 1px;
}

.text-gold { color: #fbbf24; }
.text-green { color: #10b981; }

.sell-action-btn {
    width: 100%;
    padding: 9px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #fbbf24;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sell-action-btn:active {
    background: rgba(249, 115, 22, 0.08);
    border-color: #f97316;
    transform: scale(0.97);
}

.sell-action-btn:disabled {
    background: rgba(255, 255, 255, 0.01) !important;
    border-color: rgba(255, 255, 255, 0.02) !important;
    color: rgba(255, 255, 255, 0.12) !important;
    cursor: not-allowed;
    box-shadow: none !important;
}

.sell-action-btn.active-deal {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25) !important;
}

.sell-action-btn.active-deal:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35) !important;
}

.sell-action-btn.active-deal:active {
    transform: scale(0.97) !important;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.15) !important;
}

/* ФИНАНСОВЫЙ РАДАР */
.rates-grid {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.rate-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rate-currency {
    font-size: 9.5px;
    color: #a19da9;
    font-weight: 600;
}

.rate-change {
    font-size: 7.5px;
    font-weight: 700;
    padding: 1px 3px;
    border-radius: 3px;
}

.rate-change.up { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.rate-change.down { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

.rate-value {
    font-size: 16px;
    font-weight: 800;
}

.rate-graph {
    height: 20px;
}

.mini-chart {
    width: 100%;
    height: 100%;
}

.calculator-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 14px;
}

.calculator-card h3 {
    font-size: 12.5px;
    font-weight: 700;
    margin-bottom: 10px;
}

.calc-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.input-group label {
    font-size: 8.5px;
    color: #a19da9;
    text-transform: uppercase;
    display: block;
    margin-bottom: 3px;
}

.input-group input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 9px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    outline: none;
    text-align: center;
}

.input-group input:focus {
    border-color: #f97316;
}

.calc-arrow {
    font-size: 14px;
    color: #f97316;
    margin-top: 10px;
}

.calc-note {
    font-size: 8.5px;
    color: #a19da9;
    text-align: center;
}

/* НОВОСТИ ИИ-ПУЛЬС */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    padding: 14px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    margin-bottom: 4px;
}

.news-tag {
    color: #fbbf24;
    font-weight: 700;
    text-transform: uppercase;
}

.news-date {
    color: #a19da9;
}

.news-card h3 {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 4px;
}

.news-card p {
    font-size: 11px;
    color: #a19da9;
    line-height: 1.4;
}

/* ==========================================================================
   РАЗДЕЛ ПРОФИЛЯ (ДОСТУПЫ К АККАУНТАМ)
   ========================================================================== */
.profile-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.p-stat-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 10px 8px;
    text-align: center;
}

.p-stat-lbl {
    font-size: 8px;
    color: #a19da9;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}

.p-stat-val {
    font-size: 12px;
    font-weight: 800;
}

.purchased-credentials-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    padding: 16px;
}

.purchased-credentials-card h3 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.credential-item {
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 12px;
    position: relative;
}

.cred-service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    color: #fbbf24;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
}

.cred-service-header:hover {
    color: #f59e0b;
}

.accordion-arrow {
    font-size: 9px;
    color: #a19da9;
    transition: transform 0.3s ease;
    display: inline-block;
}

.credential-item.expanded .accordion-arrow {
    transform: rotate(180deg);
}

.credential-item.expanded .cred-service-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 6px;
    margin-bottom: 8px;
}

.cred-fields {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease-out, margin-top 0.3s ease;
}

.credential-item.expanded .cred-fields {
    max-height: 250px;
    opacity: 1;
    pointer-events: all;
    margin-top: 4px;
}

.cred-field {
    font-size: 10px;
    color: #a19da9;
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.01);
    padding: 4px 6px;
    border-radius: 6px;
}

.cred-value {
    color: #ffffff;
    font-weight: 600;
    font-family: monospace;
}

.copy-cred-action {
    background: none;
    border: none;
    color: #f97316;
    font-size: 9px;
    cursor: pointer;
    font-weight: 700;
}

.copy-cred-action:active {
    color: #ffffff;
}

/* ТАБ-БАР (НИЖНЯЯ НАВИГАЦИЯ) - УВЕЛИЧЕННЫЙ И БОЛЕЕ ЧЕТКИЙ */
.app-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    background: rgba(8, 8, 14, 0.96);
    backdrop-filter: blur(25px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-around;
    padding: 10px 4px 20px 4px;
    z-index: 100;
    transition: max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.6);
}

.nav-btn {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #a19da9;
    cursor: pointer;
    flex: 1;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 2px;
}

.nav-icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), filter 0.25s ease;
}

.nav-btn span {
    font-size: 9.5px;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: -0.1px;
    transition: color 0.25s ease, font-weight 0.25s ease;
}

.nav-btn.active {
    color: #f97316;
}

.nav-btn.active span {
    font-weight: 800;
    text-shadow: 0 0 8px rgba(249, 115, 22, 0.2);
}

.nav-btn.active .nav-icon {
    transform: translateY(-2px) scale(1.05);
    filter: drop-shadow(0 0 6px rgba(249, 115, 22, 0.55));
}

/* МОДАЛКИ И СПИННЕР ЭСКРОУ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    width: 86%;
    max-width: 320px;
    background: linear-gradient(135deg, #120e1d 0%, #06060a 100%);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.7);
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-header {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 13px;
    font-weight: 700;
}

.close-btn {
    font-size: 20px;
    color: #a19da9;
    cursor: pointer;
}

.modal-body {
    padding: 16px;
}

.modal-body p {
    font-size: 11px;
    color: #a19da9;
    margin-bottom: 12px;
    text-align: center;
}

.deposit-options {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.dep-opt-btn {
    flex: 1;
    padding: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

.dep-opt-btn:active {
    background: rgba(249, 115, 22, 0.15);
    border-color: #f97316;
}

.custom-dep-input {
    display: flex;
    gap: 6px;
}

.custom-dep-input input {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 8px;
    color: #ffffff;
    outline: none;
    font-size: 12px;
}

.dep-action-btn {
    padding: 8px 12px;
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

/* ДЕТАЛИ ОПЛАТЫ В МОДАЛКЕ ПОПОЛНЕНИЯ */
.dep-subtitle {
    font-size: 11px !important;
    color: #a19da9;
    margin-bottom: 15px;
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.2);
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 14px;
}

.invoice-title {
    font-size: 11.5px;
    font-weight: 600;
    color: #eae7ec;
}

.invoice-amount {
    font-family: 'Unbounded', sans-serif;
    font-size: 14.5px;
    font-weight: 800;
    color: #f97316;
}

.invoice-desc {
    font-size: 10.5px !important;
    color: #a19da9;
    line-height: 1.45;
    margin-bottom: 14px;
    text-align: center;
}

.qr-container {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.payment-qr-img {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    border: 4px solid rgba(255, 255, 255, 0.03);
    background: #ffffff;
    padding: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.payment-details-box {
    background: rgba(10, 8, 16, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pay-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
}

.pay-label {
    color: #a19da9;
}

.pay-value-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pay-value {
    color: #ffffff;
    font-weight: 600;
    font-family: monospace;
    font-size: 10.5px;
    word-break: break-all;
    max-width: 180px;
    text-align: right;
}

.pay-copy-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 3px 6px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 10px;
    transition: all 0.2s ease;
}

.pay-copy-btn:hover {
    background: rgba(249, 115, 22, 0.2);
    border-color: #f97316;
}

.invoice-warning {
    font-size: 9.5px;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.15);
    padding: 8px 12px;
    border-radius: 10px;
    line-height: 1.4;
    margin-bottom: 16px;
}

.invoice-actions {
    display: flex;
    gap: 10px;
}

.invoice-back-btn {
    flex: 1;
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #a19da9;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.invoice-back-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.invoice-pay-btn {
    flex: 2;
    padding: 10px;
    background: linear-gradient(135deg, #f97316 0%, #d97706 100%);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.invoice-pay-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

/* Прогресс-бар верификации пополнения */
.verification-progress-container {
    background: rgba(10, 8, 16, 0.6);
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 14px;
}

.progress-bar-label {
    font-size: 10px;
    color: #eae7ec;
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
}

.dep-progress-track {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.dep-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #f97316, #fbbf24);
    border-radius: 3px;
    transition: width 0.1s linear;
}

/* ЗАГРУЗКА ФАЙЛА / СКРИНШОТА */
.file-upload-box {
    border: 2px dashed rgba(249, 115, 22, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.01);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 12px;
}

.file-upload-box:hover {
    background: rgba(249, 115, 22, 0.03);
    border-color: #f97316;
}

.upload-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
}

.upload-text {
    font-size: 11px;
    color: #a19da9;
    font-weight: 500;
}

/* СПИННЕР ЗАГРУЗКИ (ESCROW ANIMATION) */
.spinner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.03);
    border-top: 3px solid #f97316;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.text-center {
    text-align: center;
}

/* ТОСТЫ УВЕДОМЛЕНИЙ */
.notification-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 300;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 90%;
    max-width: 300px;
}

.toast {
    background: rgba(10, 8, 16, 0.95);
    border-left: 3px solid #f97316;
    padding: 10px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: slideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.toast.success {
    border-left-color: #10b981;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   МЕДИА-ЗАПРОСЫ ДЛЯ ДЕСКТОПА (РАСШИРЕНИЕ НА ПК)
   ========================================================================== */
@media (min-width: 768px) {
    .app-container {
        max-width: 1180px;
        border-radius: 20px;
        margin: 40px auto;
        min-height: calc(100vh - 80px);
        box-shadow: 0 15px 60px rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.03);
        padding-bottom: 0;
    }

    .app-header {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        padding: 20px 24px;
    }

    .app-layout-grid {
        flex-direction: row;
        align-items: stretch;
    }

    .sidebar-aside {
        display: flex;
        width: 360px;
        border-right: 1px solid rgba(255, 255, 255, 0.03);
        padding: 20px;
        gap: 16px;
        background: rgba(255, 255, 255, 0.005);
    }

    .app-main {
        flex: 1;
        padding: 20px 24px;
        max-height: calc(100vh - 160px);
        overflow-y: auto;
    }

    .mobile-sidebar-container {
        display: none;
    }

    .app-nav {
        max-width: 1180px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        padding: 10px 24px 14px 24px;
    }

    .products-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .news-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
}

/* ==========================================================================
   ИЗЮМИНКИ: ЖИВОЙ ПУЛЬС, ЭСКРОУ СДЕЛКА, СКРЫТИЕ ПАРОЛЕЙ
   ========================================================================== */

/* 1. Живой Пульс OTC */
.live-activity-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 20px;
    box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.01);
}

.live-activity-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 8px;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background-color: #f97316;
    border-radius: 50%;
    position: relative;
}

.pulse-indicator::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: inherit;
    border-radius: inherit;
    left: 0;
    top: 0;
    animation: ripple 1.6s infinite ease-out;
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3.5); opacity: 0; }
}

.live-text {
    font-size: 11px;
    font-weight: 700;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-activity-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.live-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 16px;
    text-align: center;
    gap: 6px;
}

.live-empty-icon {
    font-size: 28px;
    animation: pulseEmoji 2s ease-in-out infinite;
}

@keyframes pulseEmoji {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.15); opacity: 1; }
}

.live-empty-text {
    font-family: 'Unbounded', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(249, 115, 22, 0.85);
    letter-spacing: 0.5px;
}

.live-empty-sub {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.4;
    max-width: 240px;
}

.live-activity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 10px 12px;
    transition: all 0.3s ease;
}

.live-activity-item.new-item {
    animation: slideInActivity 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideInActivity {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.activity-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.activity-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.activity-dot.green { background-color: #10b981; box-shadow: 0 0 6px #10b981; }
.activity-dot.orange { background-color: #f97316; box-shadow: 0 0 6px #f97316; }

.activity-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.activity-text {
    font-size: 10.5px;
    color: #eae7ec;
    line-height: 1.3;
    text-align: left;
}

.user-span {
    color: #a78bfa;
    font-weight: 600;
}

.activity-time {
    font-size: 8px;
    color: #a19da9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
}

.activity-price {
    font-size: 11px;
    font-weight: 800;
}

.activity-price.green { color: #10b981; }
.activity-price.orange { color: #f97316; }

/* 2. Эскроу пошаговый интерфейс */
.escrow-steps-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 6px 0;
}

.escrow-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    transition: all 0.3s ease;
    opacity: 0.35;
}

.escrow-step.active {
    opacity: 1;
    background: rgba(249, 115, 22, 0.05);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.1);
}

.escrow-step.completed {
    opacity: 0.9;
    background: rgba(16, 185, 129, 0.04);
    border-color: rgba(16, 185, 129, 0.25);
}

.step-indicator {
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: #a19da9;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.escrow-step.active .step-indicator {
    border-color: #f97316;
    color: #f97316;
    animation: pulseBorder 1.5s infinite alternate;
}

.escrow-step.completed .step-indicator {
    border-color: #10b981;
    background: #10b981;
    color: #ffffff;
}

.step-num {
    display: block;
}

.step-check {
    display: none;
}

.escrow-step.completed .step-num {
    display: none;
}

.escrow-step.completed .step-check {
    display: block;
}

.step-text {
    flex-grow: 1;
}

.step-text h5 {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
    text-align: left;
}

.step-text p {
    font-size: 9.5px;
    color: #a19da9;
    margin: 0;
    text-align: left;
}

@keyframes pulseBorder {
    0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
    100% { box-shadow: 0 0 0 6px rgba(249, 115, 22, 0); }
}

/* 3. Кнопка показа пароля */
.cred-field.align-center {
    align-items: center;
}

.cred-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.show-pass-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 12px;
    color: #f97316;
    padding: 2px;
    transition: transform 0.2s ease;
}

.show-pass-btn:active {
    transform: scale(0.85);
}

/* ==========================================================================
   СТИЛИ ДЛЯ НОВОГО ПРОФИЛЯ И УВЕЛИЧЕННЫХ НОВОСТЕЙ
   ========================================================================== */

/* Карточка Трейдера */
.trader-profile-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.trader-avatar-block {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.trader-status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background-color: #10b981;
    border: 2px solid #0d0a1b;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
}

.trader-details {
    flex-grow: 1;
}

.trader-name-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.trader-name-row h3 {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.badge-verif {
    font-size: 9px;
    font-weight: 700;
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
    padding: 2px 6px;
    border-radius: 6px;
}

.trader-level {
    font-size: 12.5px;
    font-weight: 600;
    color: #f97316;
    margin-bottom: 8px;
    text-align: left;
}

.trader-progress-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trader-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.trader-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f97316 0%, #fbbf24 100%);
    border-radius: 4px;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.trader-progress-text {
    font-size: 9px;
    color: #a19da9;
    font-weight: 500;
    text-align: left;
}

/* Статус Безопасности */
.profile-security-card {
    background: rgba(16, 185, 129, 0.02);
    border: 1px dashed rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.sec-shield-icon {
    font-size: 22px;
}

.sec-shield-info {
    text-align: left;
}

.sec-shield-info h4 {
    font-size: 12.5px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 2px;
}

.sec-shield-info p {
    font-size: 10.5px;
    color: #a19da9;
    margin: 0;
    line-height: 1.35;
}

/* Реквизиты для вывода */
.payout-credentials-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 18px;
    margin-bottom: 20px;
}

.payout-credentials-card h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff;
    text-align: left;
}

.payout-desc {
    font-size: 11px;
    color: #a19da9;
    line-height: 1.4;
    margin-bottom: 12px;
    text-align: left;
}

.payout-form {
    display: flex;
    gap: 8px;
}

.payout-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px 14px;
    color: #ffffff;
    font-size: 12px;
    outline: none;
    transition: border-color 0.2s ease;
}

.payout-input:focus {
    border-color: #f97316;
}

.save-payout-btn {
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    padding: 10px 16px;
    font-size: 11.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.save-payout-btn:active {
    transform: scale(0.96);
}

/* Переработка стилей новостей (крупный премиальный текст) */
.news-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.news-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.08);
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-tag {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(249, 115, 22, 0.12);
    color: #f97316;
    padding: 3px 8px;
    border-radius: 6px;
}

.news-read-time {
    font-size: 10px;
    color: #a19da9;
    font-weight: 600;
}

.news-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.35;
    margin: 0;
    letter-spacing: -0.2px;
    text-align: left;
}

.news-desc-text {
    font-size: 13.5px;
    color: #b4b0be;
    line-height: 1.55;
    margin: 0;
    text-align: left;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 10px;
    margin-top: 4px;
}

.news-date {
    font-size: 11px;
    color: #a19da9;
    font-weight: 500;
}

.news-more-btn {
    font-size: 11px;
    font-weight: 700;
    color: #fbbf24;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.news-more-btn:hover {
    opacity: 0.8;
}

/* Корректировка общих размеров шрифтов */
.welcome-card h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.welcome-card p {
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.stat-num {
    font-size: 20px;
}

.stat-title {
    font-size: 9px;
    letter-spacing: 0.8px;
}

.logo-title {
    font-size: 24px;
}

.balance-amount {
    font-size: 22px;
}

.section-title {
    font-size: 17px;
    font-weight: 800;
    margin: 24px 0 16px 0;
}

.hint-content h4 {
    font-size: 14px;
}

.hint-content p {
    font-size: 12.5px;
    line-height: 1.5;
}

/* КРИПТОВАЛЮТНЫЙ РАДАР & OTC НАСТРОЕНИЕ */
.crypto-rates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.crypto-card .rate-value {
    font-size: 13.5px;
    font-weight: 800;
}

.sentiment-indicator-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    padding: 12px;
    margin-bottom: 16px;
}

.sentiment-indicator-card h3 {
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #a19da9;
    text-transform: uppercase;
}

.sentiment-gauge-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sentiment-meta {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
}

.sentiment-label {
    color: #a19da9;
}

.sentiment-progress {
    height: 5px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 3px;
    overflow: hidden;
}

.sentiment-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #fbbf24 100%);
    border-radius: 3px;
}

.sentiment-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-top: 4px;
    background: rgba(0, 0, 0, 0.15);
    padding: 6px;
    border-radius: 8px;
}

.s-stat {
    text-align: center;
}

.s-val {
    font-size: 10px;
    font-weight: 800;
    color: #ffffff;
    display: block;
}

.s-lbl {
    font-size: 7px;
    color: #a19da9;
    text-transform: uppercase;
}

/* НОВОСТИ: AI LOAD & EVENT TIMELINE */
.metrics-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.metrics-load-card, .calendar-event-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    padding: 12px;
}

.metrics-load-card h4, .calendar-event-card h4 {
    font-size: 10px;
    font-weight: 700;
    color: #a19da9;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.load-bar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 8px;
}

.load-bar-wrapper:last-child {
    margin-bottom: 0;
}

.load-info {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
}

.load-status {
    font-weight: 700;
}

.load-status.normal { color: #10b981; }
.load-status.warn { color: #f97316; }
.load-status.high { color: #ef4444; }

.load-progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 2px;
    overflow: hidden;
}

.load-progress-fill {
    height: 100%;
    border-radius: 2px;
}

.load-progress-fill.green { background: #10b981; }
.load-progress-fill.orange { background: #f97316; }
.load-progress-fill.red { background: #ef4444; }

/* EVENT TIMELINE */
.event-timeline {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    padding-left: 12px;
    border-left: 1px dashed rgba(255, 255, 255, 0.08);
}

.event-item {
    position: relative;
}

.event-dot {
    position: absolute;
    left: -16.5px;
    top: 3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f97316;
    border: 2px solid #050408;
    box-shadow: 0 0 6px rgba(249, 115, 22, 0.4);
}

.event-item:nth-child(2) .event-dot { background: #fbbf24; }
.event-item:nth-child(3) .event-dot { background: #10b981; }

.event-details {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.event-date {
    font-size: 7.5px;
    font-weight: 800;
    color: #fbbf24;
    text-transform: uppercase;
}

.event-details h5 {
    font-size: 10.5px;
    font-weight: 700;
    color: #ffffff;
}

.event-details p {
    font-size: 9px;
    color: #a19da9;
    line-height: 1.35;
}

/* О ПЛАТФОРМЕ (ОПИСАНИЕ И ОСОБЕННОСТИ) */
.about-shop-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0.005) 100%);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.text-3d {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #ffffff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 
        1px 1px 0px #f97316,
        2px 2px 0px #ea580c,
        3px 3px 0px #c2410c,
        4px 4px 6px rgba(0, 0, 0, 0.7),
        0px 0px 10px rgba(249, 115, 22, 0.4);
    margin-bottom: 6px;
}

.about-shop-desc {
    font-size: 13px;
    color: #f1f1f5;
    line-height: 1.6;
    font-weight: 500;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 4px;
}

.feat-item {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 8px;
    padding: 8px 4px;
    text-align: center;
    font-size: 10px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.feat-item span {
    color: #ffffff;
    font-size: 8px;
    text-transform: uppercase;
    font-weight: 700;
}

/* ==========================================================================
   НОВЫЙ ПРЕМЯИЛЬНЫЙ ДИЗАЙН И ДИНАМИКА (INVENT SHOP)
   ========================================================================== */

/* Фоновые неоновые сетки-свечения */
.glowing-bg-circle {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.22;
    z-index: 0;
    pointer-events: none;
    animation: pulseGlow 8s infinite alternate ease-in-out;
}
.glow-1 {
    background: radial-gradient(circle, rgba(249, 115, 22, 0.8) 0%, rgba(249, 115, 22, 0) 70%);
    top: 5%;
    left: -120px;
}
.glow-2 {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.7) 0%, rgba(139, 92, 246, 0) 70%);
    bottom: 15%;
    right: -120px;
    animation-delay: -4s;
}
.glow-3 {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.6) 0%, rgba(59, 130, 246, 0) 70%);
    top: 40%;
    left: 10%;
    width: 380px;
    height: 380px;
    opacity: 0.16;
    animation: pulseGlow 10s infinite alternate ease-in-out;
    animation-delay: -2s;
}
@keyframes pulseGlow {
    0% { transform: scale(1) translate(0, 0); opacity: 0.16; }
    50% { transform: scale(1.15) translate(15px, -15px); opacity: 0.26; }
    100% { transform: scale(0.95) translate(-10px, 10px); opacity: 0.16; }
}

/* Статистика сети в магазине */
.store-stats-hub {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 10px;
}
.hub-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.hub-label {
    font-size: 7.5px;
    color: #a19da9;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
}
.hub-val {
    font-size: 11px;
    font-weight: 700;
    font-family: 'Unbounded', sans-serif;
}

/* Горячее предложение */
.hot-deal-banner {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.18) 0%, rgba(139, 92, 246, 0.18) 100%);
    border: 1px solid rgba(249, 115, 22, 0.35);
    border-radius: 16px;
    padding: 16px;
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.15), 0 0 20px rgba(139, 92, 246, 0.06);
}
.hot-badge {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 8px;
    font-weight: 800;
    color: #ffffff;
    background: #f97316;
    padding: 3px 6px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    animation: pulseAlert 1.5s infinite;
}
@keyframes pulseAlert {
    0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(249, 115, 22, 0); }
    100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}
.hot-content h4 {
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}
.hot-content p {
    font-size: 10px;
    color: #a19da9;
    line-height: 1.4;
    margin-bottom: 10px;
    max-width: 80%;
}
.hot-progress-wrapper {
    margin-bottom: 12px;
    max-width: 80%;
}
.hot-progress-text {
    font-size: 8px;
    color: #b4b0be;
    margin-bottom: 4px;
}
.hot-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
}
.hot-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f97316, #fbbf24);
    border-radius: 2px;
    transition: width 0.4s ease;
}
.hot-timer {
    font-size: 11px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    color: #fbbf24;
    display: inline-block;
}
.hot-buy-btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #f97316, #fbbf24);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Unbounded', sans-serif;
    cursor: pointer;
    margin-top: 12px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.25);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}
.hot-buy-btn:active {
    transform: scale(0.98);
}

/* Эффект мерцания блика (shimmer) для кнопок и тегов */
.buy-btn, .hot-buy-btn, .action-btn-main.primary {
    position: relative;
    overflow: hidden;
}
.buy-btn::after, .hot-buy-btn::after, .action-btn-main.primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.22) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shimmerEffect 4s infinite linear;
}
@keyframes shimmerEffect {
    0% { left: -60%; }
    30% { left: 140%; }
    100% { left: 140%; }
}

/* Неоновые свечения рамок карточек при наведении */
.product-card {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
.product-card.pro-tier:hover {
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.12);
}
.product-card.vip-tier:hover {
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.15);
}

/* Описание скорых дорогих обновлений */
.about-shop-notice {
    font-size: 10px;
    color: #fbbf24;
    line-height: 1.45;
    background: rgba(251, 191, 36, 0.05);
    border: 1px solid rgba(251, 191, 36, 0.1);
    border-radius: 8px;
    padding: 10px 12px;
    margin-top: 4px;
    font-style: italic;
}

/* СТИЛИ ДЛЯ РАСШИРЕННОГО РАЗДЕЛА О ПЛАТФОРМЕ */
.about-intro-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 12px;
}

.about-workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 6px 0;
}

.about-step-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 2px;
    letter-spacing: 0.3px;
}

.about-step-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.02);
    padding: 10px 12px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.about-step-item:hover {
    background: rgba(255, 255, 255, 0.025);
    border-color: rgba(249, 115, 22, 0.15);
}

.step-badge {
    background: linear-gradient(135deg, #f97316, #f59e0b);
    color: #ffffff;
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(249, 115, 22, 0.3);
}

.step-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.step-name {
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
}

.step-desc {
    font-size: 11px;
    color: #e2e0e7;
    line-height: 1.5;
}

.about-shop-notice-box {
    display: flex;
    gap: 10px;
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 10px;
    padding: 10px 12px;
    align-items: flex-start;
    margin-top: 4px;
}

.notice-icon {
    font-size: 15px;
    flex-shrink: 0;
}

.about-shop-notice-text {
    font-size: 11.5px;
    color: #fef08a;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

/* КАРТОЧКА СТАТУСА ОБРАБОТКИ ДЕПОЗИТА */
.processing-status-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    gap: 16px;
}

.spinner-container {
    margin-bottom: 8px;
    position: relative;
    width: 64px;
    height: 64px;
}

.pulse-loader {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.1);
    border: 2px solid #f97316;
    position: relative;
    animation: loaderPulse 1.8s infinite ease-in-out;
}

.pulse-loader::after {
    content: '⏳';
    font-size: 28px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spinHourglass 2s infinite ease-in-out;
}

@keyframes loaderPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(249, 115, 22, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

@keyframes spinHourglass {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(180deg); }
}

.status-title-main {
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
}

.status-desc-text {
    font-size: 11px;
    color: #eae7ec;
    line-height: 1.5;
    margin: 0;
}

.status-notice-text {
    font-size: 10px;
    color: #a19da9;
    line-height: 1.45;
    background: rgba(255, 255, 255, 0.015);
    border: 1px dashed rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 10px;
    margin: 0;
}

.status-badge-container {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
    margin-top: 8px;
}

.status-badge-dot {
    width: 6px;
    height: 6px;
    background-color: #f97316;
    border-radius: 50%;
    animation: blinkG 1.2s infinite;
}

.status-badge-lbl {
    font-size: 10px;
    font-weight: 700;
    color: #f97316;
}

/* СТИЛИ ДЛЯ ВЫБОРА И ПОДТВЕРЖДЕНИЯ СДЕЛКИ СКУПЩИКА */
.buyer-details-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.buyer-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.buyer-rating-badge {
    font-size: 8px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Unbounded', sans-serif;
}

.buyer-rating-badge.rate-5 {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.buyer-rating-badge.rate-4-95 {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

/* КАРТОЧКА OTC-ПОДТВЕРЖДЕНИЯ */
.buyer-profile-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 14px;
}

.bpc-avatar {
    width: 38px;
    height: 38px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.bpc-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.bpc-info h4 {
    font-size: 13px;
    font-weight: 700;
    margin: 0;
}

.buyer-deal-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 14px;
}

.bdd-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
}

.bdd-label {
    color: #a19da9;
}

.bdd-value {
    font-weight: 700;
}

.buyer-trust-description {
    margin-bottom: 14px;
}

.buyer-trust-description h5 {
    font-size: 11px;
    color: #f97316;
    margin-bottom: 4px;
}

.buyer-trust-description p {
    font-size: 10.5px;
    color: #b4b0be;
    line-height: 1.45;
    margin: 0;
}

.buyer-instructions-box {
    background: rgba(251, 191, 36, 0.03);
    border: 1px dashed rgba(251, 191, 36, 0.15);
    padding: 10px 12px;
    border-radius: 10px;
    margin-bottom: 16px;
}

.buyer-instructions-box h5 {
    font-size: 11px;
    color: #fbbf24;
    margin-bottom: 4px;
}

.buyer-instructions-box p {
    font-size: 10px;
    color: #fbbf24;
    line-height: 1.45;
    margin: 0;
}

.confirm-deal-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #f97316, #f59e0b);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 700;
    font-family: 'Unbounded', sans-serif;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.25);
    transition: all 0.2s ease;
}

.confirm-deal-btn:active {
    transform: scale(0.98);
}

/* СТИЛИЗАЦИЯ ФИЛЬТРОВ И КНОПКИ НАЗАД (OTC & МАГАЗИН) */
.otc-filter-bar {
    display: flex;
    gap: 8px;
    margin: 16px 0;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.otc-filter-bar::-webkit-scrollbar {
    display: none;
}

.otc-filter-btn {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #b4b0be !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    cursor: pointer;
    white-space: nowrap;
    text-shadow: none !important;
    box-shadow: none !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.otc-filter-btn:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.otc-filter-btn.active {
    background: linear-gradient(135deg, #f97316, #fbbf24) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25) !important;
}

.back-to-shop-btn {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #eae7ec !important;
    padding: 8px 14px !important;
    border-radius: 10px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    font-family: 'Unbounded', sans-serif !important;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-shadow: none !important;
    box-shadow: none !important;
}

.back-to-shop-btn:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(249, 115, 22, 0.3) !important;
    color: #ffffff !important;
}

.back-to-shop-btn:active {
    transform: scale(0.96);
}

/* ==========================================================================
   VIP-ПОДДЕРЖКА И VIP FAQ СТИЛИ
   ========================================================================== */
.support-card {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, rgba(139, 92, 246, 0.03) 100%);
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #fbbf24, #f59e0b);
}

.support-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.support-avatar {
    width: 38px;
    height: 38px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.15);
}

.support-badge {
    font-size: 7.5px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 4px;
    letter-spacing: 0.3px;
    display: inline-block;
}

.support-badge.online {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
}

.support-badge.secure {
    background: rgba(139, 92, 246, 0.12);
    color: #a78bfa;
}

.support-terms {
    display: flex;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 10px 12px;
}

.support-param {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.support-param .param-title {
    font-size: 8px;
    color: #a19da9;
    text-transform: uppercase;
}

.support-param .param-value {
    font-size: 11px;
    font-weight: 700;
}

.support-action-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border: none;
    border-radius: 12px;
    color: #0d0a1b;
    font-size: 12px;
    font-weight: 800;
    font-family: 'Unbounded', sans-serif;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.2);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    text-shadow: none !important;
}

.support-action-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shimmerEffect 3.5s infinite linear;
}

.support-action-btn:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.1);
}

/* FAQ ПОДДЕРЖКИ */
.support-faq-section {
    margin-top: 10px;
}

.support-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 16px;
    transition: all 0.25s ease;
}

.faq-item:hover {
    background: rgba(251, 191, 36, 0.02);
    border-color: rgba(251, 191, 36, 0.15);
}

.faq-item h5 {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    text-align: left;
}

.faq-item p {
    font-size: 11.5px;
    color: #b4b0be;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

/* АНИМАЦИИ CONNECT MODAL */
.connect-step {
    opacity: 0.35;
    transition: all 0.3s ease;
}

.connect-step.active {
    opacity: 1;
    background: rgba(251, 191, 36, 0.05);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.1);
}

.connect-step.completed {
    opacity: 0.9;
    background: rgba(16, 185, 129, 0.04);
    border-color: rgba(16, 185, 129, 0.25);
}

/* ==========================================================================
   АДАПТАЦИЯ ТАБ-БАРА ПОД 8 КНОПОК - УВЕЛИЧЕННАЯ И ЧЕТКАЯ
   ========================================================================== */
@media (max-width: 480px) {
    .app-nav {
        padding: 8px 1px 16px 1px !important;
        justify-content: space-between !important;
    }
    .nav-btn {
        gap: 3px !important;
        padding: 0 1px !important;
    }
    .nav-btn span {
        font-size: 8.5px !important;
        letter-spacing: -0.1px;
    }
    .nav-icon {
        width: 19px !important;
        height: 19px !important;
    }
}

@media (max-width: 360px) {
    .nav-btn span {
        font-size: 7.6px !important;
        letter-spacing: -0.2px;
    }
    .nav-icon {
        width: 17px !important;
        height: 17px !important;
    }
}

/* ==========================================================================
   3D ШРИФТЫ И ЦВЕТОВЫЕ СХЕМЫ ДЛЯ РАЗДЕЛОВ
   ========================================================================== */

/* 3D эффект для баннеров секций */
.section-header-banner h2 {
    font-family: 'Unbounded', sans-serif !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #ffffff !important;
    text-shadow: 
        1px 1px 0px #f97316,
        2px 2px 0px #ea580c,
        3px 3px 0px #c2410c,
        4px 4px 6px rgba(0, 0, 0, 0.7) !important;
}

.sell-banner h2 {
    text-shadow: 
        1px 1px 0px #f97316,
        2px 2px 0px #ea580c,
        3px 3px 0px #c2410c,
        4px 4px 6px rgba(0, 0, 0, 0.7) !important;
}

.rates-banner h2 {
    text-shadow: 
        1px 1px 0px #10b981,
        2px 2px 0px #059669,
        3px 3px 0px #047857,
        4px 4px 6px rgba(0, 0, 0, 0.7) !important;
}

.referrals-banner h2 {
    text-shadow: 
        1px 1px 0px #a78bfa,
        2px 2px 0px #8b5cf6,
        3px 3px 0px #7c3aed,
        4px 4px 6px rgba(0, 0, 0, 0.7) !important;
}

.support-banner h2 {
    text-shadow: 
        1px 1px 0px #3b82f6,
        2px 2px 0px #2563eb,
        3px 3px 0px #1d4ed8,
        4px 4px 6px rgba(0, 0, 0, 0.7) !important;
}

/* 3D эффект для подзаголовков разделов */
.section-title {
    font-family: 'Unbounded', sans-serif !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    letter-spacing: 0.5px !important;
    text-shadow: 
        1px 1px 0px rgba(249, 115, 22, 0.4), 
        2px 2px 3px rgba(0, 0, 0, 0.6) !important;
}

/* ЗОЛОТАЯ BRUTAL ТЕМА ДЛЯ ПРОФИЛЯ */
.profile-banner {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(217, 119, 6, 0.1) 100%) !important;
    border: 1px solid rgba(251, 191, 36, 0.4) !important;
    box-shadow: 0 4px 25px rgba(251, 191, 36, 0.15) !important;
}

.profile-banner h2 {
    text-shadow: 
        1px 1px 0px #fbbf24,
        2px 2px 0px #f59e0b,
        3px 3px 0px #d97706,
        4px 4px 6px rgba(0, 0, 0, 0.7) !important;
}

#sec-profile .trader-profile-card {
    background: rgba(251, 191, 36, 0.02) !important;
    border: 1px solid rgba(251, 191, 36, 0.2) !important;
    box-shadow: 0 8px 32px 0 rgba(251, 191, 36, 0.05) !important;
}

#sec-profile .trader-avatar-block {
    background: rgba(251, 191, 36, 0.05) !important;
    border: 1px solid rgba(251, 191, 36, 0.3) !important;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.1) !important;
}

#sec-profile .trader-status-dot {
    background-color: #fbbf24 !important;
    box-shadow: 0 0 8px #fbbf24 !important;
}

#sec-profile .trader-level {
    color: #fbbf24 !important;
}

#sec-profile .trader-progress-fill {
    background: linear-gradient(90deg, #d97706 0%, #fbbf24 100%) !important;
}

#sec-profile .p-stat-card {
    background: rgba(251, 191, 36, 0.03) !important;
    border: 1px solid rgba(251, 191, 36, 0.15) !important;
}

#sec-profile .p-stat-card:hover {
    border-color: rgba(251, 191, 36, 0.4) !important;
    box-shadow: 0 0 12px rgba(251, 191, 36, 0.1) !important;
}

#sec-profile .purchased-credentials-card {
    background: rgba(251, 191, 36, 0.01) !important;
    border: 1px solid rgba(251, 191, 36, 0.1) !important;
}

#sec-profile .purchased-credentials-card h3 {
    color: #fbbf24 !important;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.3) !important;
}

#sec-profile .credential-item {
    border: 1px solid rgba(251, 191, 36, 0.1) !important;
}

#sec-profile .api-monitor-card {
    border: 1px solid rgba(251, 191, 36, 0.15) !important;
    background: rgba(251, 191, 36, 0.01) !important;
}

#sec-profile #ping-pulse-indicator {
    background: #fbbf24 !important;
    box-shadow: 0 0 8px #fbbf24 !important;
}

#sec-profile .section-title {
    text-shadow: 
        1px 1px 0px rgba(251, 191, 36, 0.5), 
        2px 2px 3px rgba(0, 0, 0, 0.6) !important;
}

/* КИБЕР-НЕОНОВАЯ БИРЮЗОВАЯ ТЕМА ДЛЯ НОВОСТЕЙ */
.news-banner {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.12) 0%, rgba(59, 130, 246, 0.08) 100%) !important;
    border: 1px solid rgba(6, 182, 212, 0.25) !important;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.08) !important;
}

.news-banner h2 {
    text-shadow: 
        1px 1px 0px #06b6d4,
        2px 2px 0px #0891b2,
        3px 3px 0px #0e7490,
        4px 4px 6px rgba(0, 0, 0, 0.7) !important;
}

#sec-news .news-card {
    background: rgba(6, 182, 212, 0.02) !important;
    border: 1px solid rgba(6, 182, 212, 0.1) !important;
}

#sec-news .news-card:hover {
    border-color: rgba(6, 182, 212, 0.3) !important;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.05) !important;
}

#sec-news .news-tag {
    background: rgba(6, 182, 212, 0.12) !important;
    color: #06b6d4 !important;
}

#sec-news .news-more-btn {
    color: #06b6d4 !important;
}

#sec-news .metrics-card-wrapper {
    background: rgba(6, 182, 212, 0.015) !important;
    border: 1px solid rgba(6, 182, 212, 0.1) !important;
}

#sec-news .load-bar-fill {
    background: linear-gradient(90deg, #06b6d4 0%, #3b82f6 100%) !important;
}

#sec-news .section-title {
    text-shadow: 
        1px 1px 0px rgba(6, 182, 212, 0.5), 
        2px 2px 3px rgba(0, 0, 0, 0.6) !important;
}


