* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, 'SF Pro Text', 'Inter', system-ui, Helvetica, Arial, sans-serif;
    background: #080e14;
    color: rgba(255, 255, 255, 0.92);
    padding: 20px;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    /* плавное появление страницы – без изменения фона */
    animation: fadeInPage 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fadeInPage {
    0% {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
        filter: blur(4px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Двойное зеленое свечение */
body::before {
    content: '';
    position: fixed;
    top: -30%;
    left: 50%;
    width: 140%;
    height: 160%;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(52, 211, 153, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 60%, rgba(110, 231, 183, 0.15) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 80%, rgba(167, 243, 208, 0.1) 0%, transparent 50%);
    filter: blur(120px);
    pointer-events: none;
    z-index: 1;
    animation: driftGlow 20s ease-in-out infinite alternate;
    transform-origin: center;
    will-change: transform, opacity;
}

body::after {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    pointer-events: none;
    z-index: 1;
}

/* второе свечение – для .second-glow (добавить див в HTML) */
.second-glow {
    position: fixed;
    top: -20%;
    left: 60%;
    width: 120%;
    height: 140%;
    background: radial-gradient(ellipse at 40% 70%, rgba(52, 211, 153, 0.15) 0%, transparent 50%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    animation: driftGlow2 18s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes driftGlow {
    0% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(-15%) scale(1);
    }
    100% {
        opacity: 0.9;
        transform: translateX(-45%) translateY(15%) scale(1.08);
    }
}

@keyframes driftGlow2 {
    0% {
        opacity: 0.4;
        transform: translateX(-10%) translateY(10%) scale(0.95);
    }
    100% {
        opacity: 0.7;
        transform: translateX(5%) translateY(-10%) scale(1.05);
    }
}

/* Частицы */
.particle {
    position: fixed;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.4), rgba(110, 231, 183, 0.2));
    filter: blur(6px);
    pointer-events: none;
    z-index: 0;
    animation: floatParticle linear infinite;
    opacity: 0;
    will-change: transform, opacity;
}

@keyframes floatParticle {
    0% { transform: translateY(110vh) translateX(-15vw) scale(0.5); opacity: 0; }
    5% { opacity: 0.5; }
    95% { opacity: 0.5; }
    100% { transform: translateY(-30vh) translateX(15vw) scale(1.2); opacity: 0; }
}

.app-container {
    max-width: 520px;
    margin: 0 auto;
    position: relative;
    z-index: 20;
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); filter: blur(2px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* ---------- Stagger для карточек ---------- */
.features-row .feature-card,
.packs-grid .pack-card,
.coin-list .coin-item {
    animation: fadeInUpStagger 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.features-row .feature-card:nth-child(1) { animation-delay: 0.1s; }
.features-row .feature-card:nth-child(2) { animation-delay: 0.2s; }
.features-row .feature-card:nth-child(3) { animation-delay: 0.3s; }

.packs-grid .pack-card:nth-child(1) { animation-delay: 0.1s; }
.packs-grid .pack-card:nth-child(2) { animation-delay: 0.18s; }
.packs-grid .pack-card:nth-child(3) { animation-delay: 0.26s; }
.packs-grid .pack-card:nth-child(4) { animation-delay: 0.34s; }
.packs-grid .pack-card:nth-child(5) { animation-delay: 0.42s; }
.packs-grid .pack-card:nth-child(6) { animation-delay: 0.5s; }

.coin-list .coin-item:nth-child(1) { animation-delay: 0.1s; }
.coin-list .coin-item:nth-child(2) { animation-delay: 0.18s; }
.coin-list .coin-item:nth-child(3) { animation-delay: 0.26s; }
.coin-list .coin-item:nth-child(4) { animation-delay: 0.34s; }
.coin-list .coin-item:nth-child(5) { animation-delay: 0.42s; }
.coin-list .coin-item:nth-child(6) { animation-delay: 0.5s; }

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

/* Пульсация */
.pulse-btn {
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(52, 211, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

/* Стеклянные карточки */
.balance-card,
.feature-card,
.pack-card,
.address-card,
.guide-box,
.price-card,
.terms-card,
.coin-item,
.details-box code,
.upload-area,
.network-btn,
.price-chart,
.pie-chart-container,
.stat-card,
.client-item {
    background: rgba(12, 20, 30, 0.5);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    border: 1px solid rgba(52, 211, 153, 0.08);
    border-radius: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Хедер */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(12, 20, 30, 0.55);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    padding: 14px 22px;
    border-radius: 60px;
    margin-bottom: 28px;
    border: 1px solid rgba(52, 211, 153, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: all 0.4s ease;
}

.username {
    font-size: 17px;
    font-weight: 590;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 0 12px rgba(52, 211, 153, 0.3);
}

.time-badge {
    font-size: 13px;
    font-weight: 500;
    background: rgba(52, 211, 153, 0.15);
    padding: 6px 14px;
    border-radius: 40px;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(52, 211, 153, 0.2);
}

/* Баланс */
.balance-card {
    padding: 28px 24px;
    margin-bottom: 28px;
}

.balance-label {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.balance-value {
    font-size: 48px;
    font-weight: 740;
    background: linear-gradient(135deg, #ffffff 0%, #a7f3d0 50%, #6ee7b7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 16px rgba(52, 211, 153, 0.3));
}

.balance-count {
    font-size: 16px;
    font-weight: 600;
    color: #6ee7b7;
    margin-top: 4px;
}

.balance-stats {
    display: flex;
    gap: 28px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 12px;
}

.balance-stats span span {
    font-weight: 700;
    color: #86efac;
}

/* Преимущества */
.features-row {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.feature-card {
    flex: 1;
    text-align: center;
    padding: 16px 8px;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    border-color: rgba(52, 211, 153, 0.25);
}

.feature-title {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.feature-desc {
    font-size: 9px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 6px;
}

/* Заголовки */
.section-title {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin: 24px 0 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(52, 211, 153, 0.1);
    display: inline-block;
    padding: 6px 18px;
    border-radius: 40px;
    border: 1px solid rgba(52, 211, 153, 0.2);
}

/* Паки */
.packs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.pack-card {
    text-align: center;
    padding: 14px 6px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}

.pack-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(52, 211, 153, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.pack-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 40px rgba(52, 211, 153, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border-color: rgba(52, 211, 153, 0.35);
}

.pack-card:hover::before { opacity: 1; }

.pack-name {
    font-size: 13px;
    font-weight: 640;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
}

.pack-count {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    margin: 6px 0;
    position: relative;
    z-index: 1;
}

.pack-price {
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #a7f3d0, #6ee7b7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

/* Поле ввода */
.action-row {
    display: flex;
    gap: 12px;
    margin: 18px 0;
}

.custom-input {
    flex: 2;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(12, 20, 30, 0.5);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    border: 1px solid rgba(52, 211, 153, 0.1);
    border-radius: 28px;
    outline: none;
    transition: all 0.6s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.custom-input:focus {
    border-color: rgba(52, 211, 153, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 28px rgba(52, 211, 153, 0.15);
}

.custom-input::placeholder { color: rgba(255, 255, 255, 0.3); }

/* Кнопки */
.btn-solid,
.btn-solid-custom,
.back-btn,
.support-btn,
.copy-address-btn,
.channel-btn {
    width: 100%;
    text-align: center;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 28px;
    padding: 14px 20px;
    font-weight: 540;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.2) 0%, rgba(110, 231, 183, 0.1) 100%);
    border: 1px solid rgba(52, 211, 153, 0.25);
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

.btn-solid::after,
.btn-solid-custom::after,
.back-btn::after,
.support-btn::after,
.copy-address-btn::after,
.channel-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: left 1s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.btn-solid:hover::after,
.btn-solid-custom:hover::after,
.back-btn:hover::after,
.support-btn:hover::after,
.copy-address-btn:hover::after,
.channel-btn:hover::after {
    left: 120%;
}

.btn-solid:hover,
.btn-solid-custom:hover,
.back-btn:hover,
.support-btn:hover,
.copy-address-btn:hover,
.channel-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.3) 0%, rgba(110, 231, 183, 0.2) 100%);
    border-color: rgba(52, 211, 153, 0.5);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5), 0 0 48px rgba(52, 211, 153, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-solid .main-text,
.btn-solid-custom .main-text,
.back-btn .main-text,
.support-btn .main-text,
.copy-address-btn .main-text,
.channel-btn .main-text {
    display: block;
    font-size: 15px;
    font-weight: 650;
    position: relative;
    z-index: 1;
}

.btn-solid .sub-text,
.btn-solid-custom .sub-text,
.back-btn .sub-text,
.support-btn .sub-text,
.copy-address-btn .sub-text,
.channel-btn .sub-text {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    position: relative;
    z-index: 1;
}

.btn-solid + .btn-solid { margin-top: 16px; }

.btn-solid-custom {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.25) 0%, rgba(110, 231, 183, 0.15) 100%);
}

/* Кнопки ссылок */
.support-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 28px;
    flex-wrap: wrap;
}

.support-btn {
    width: auto;
    padding: 10px 22px;
    border-radius: 40px;
    font-size: 12px;
}

.channel-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.channel-btn {
    width: auto;
    padding: 10px 22px;
    font-size: 12px;
    border-radius: 40px;
}

/* Гайд, адрес */
.guide-box, .address-card {
    padding: 22px;
    margin-bottom: 24px;
}

.guide-title, .address-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guide-text {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.address-value {
    font-family: 'SF Mono', 'Menlo', monospace;
    word-break: break-all;
    background: rgba(0, 0, 0, 0.35);
    padding: 14px;
    border-radius: 20px;
    font-size: 12px;
    color: #86efac;
    margin-bottom: 16px;
}

/* Крипто-монеты */
.coin-item {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    margin-bottom: 10px;
    border-radius: 28px;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.coin-item:hover {
    transform: translateX(4px);
    border-color: rgba(52, 211, 153, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 32px rgba(52, 211, 153, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.coin-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    background: rgba(52, 211, 153, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.coin-symbol {
    font-weight: 600;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
}

.coin-name { font-size: 10px; color: rgba(255, 255, 255, 0.5); }

.coin-price {
    font-weight: 700;
    font-size: 14px;
    margin-left: auto;
    color: #86efac;
}

/* Статусы */
.status-success, .status-pending, .status-error {
    padding: 14px;
    text-align: center;
    font-size: 13px;
    border-radius: 24px;
    margin-top: 18px;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.status-success { background: rgba(52, 211, 153, 0.1); color: #6ee7b7; border-color: rgba(52, 211, 153, 0.2); }
.status-pending { background: rgba(245, 158, 11, 0.1); color: #fbbf24; border-color: rgba(245, 158, 11, 0.2); }
.status-error { background: rgba(239, 68, 68, 0.1); color: #f87171; border-color: rgba(239, 68, 68, 0.2); }

/* Лоадер */
.loader {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(52, 211, 153, 0.2);
    border-top: 2px solid rgba(110, 231, 183, 0.8);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

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

/* Детали */
.details-box { margin: 24px 0; }

.details-box code {
    background: rgba(0, 0, 0, 0.35);
    padding: 16px;
    border-radius: 20px;
    font-size: 12px;
    display: block;
    color: #86efac;
}

.timer-text {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

/* Загрузка чека */
.upload-area {
    border: 2px dashed rgba(52, 211, 153, 0.3);
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.6s ease;
    border-radius: 32px;
}

.upload-area:hover {
    border-color: rgba(52, 211, 153, 0.6);
    background: rgba(52, 211, 153, 0.06);
    box-shadow: 0 0 40px rgba(52, 211, 153, 0.1);
}

/* График цены */
.price-chart {
    padding: 24px;
    margin-bottom: 28px;
}

.chart-title {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.chart-container { display: flex; gap: 14px; }

.chart-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    height: 150px;
    padding-right: 10px;
}

.chart-bars {
    flex: 1;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    gap: 10px;
    height: 150px;
}

.bar-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.bar {
    width: 100%;
    max-width: 44px;
    background: linear-gradient(180deg, #6ee7b7, #34d399);
    border-radius: 8px;
    transition: all 0.6s ease;
    min-height: 4px;
    box-shadow: 0 0 16px rgba(52, 211, 153, 0.3);
}

.bar-column.current .bar {
    background: linear-gradient(180deg, #a7f3d0, #6ee7b7);
    box-shadow: 0 0 24px rgba(52, 211, 153, 0.5);
}

.bar-label { font-size: 9px; color: rgba(255, 255, 255, 0.5); text-align: center; }

.chart-note { font-size: 9px; color: rgba(255, 255, 255, 0.35); text-align: center; margin-top: 18px; }

/* Круговой график */
.pie-chart-container {
    padding: 24px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.pie-title {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pie-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.pie-legend { display: flex; flex-direction: column; gap: 10px; }

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.legend-item span { width: 14px; height: 14px; border-radius: 4px; }

/* Плашки оплаты */
.payment-info {
    background: rgba(12, 20, 30, 0.4);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 24px;
    padding: 10px 16px;
    margin: -6px 0 20px 0;
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(52, 211, 153, 0.1);
}

/* Разделитель */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.2), transparent);
    margin: 20px 0;
}

/* Чекбокс */
.checkbox {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.checkbox input { width: 20px; height: 20px; cursor: pointer; accent-color: #34d399; }

/* Термсы */
.terms-card { padding: 24px; margin: 24px 0; }

.terms-text {
    font-size: 14px;
    line-height: 1.9;
    color: #86efac;
    text-align: left;
}

.terms-text b {
    color: #a7f3d0;
    font-size: 15px;
    display: block;
    margin-bottom: 14px;
}

/* Сеть выбор */
.network-selector { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }

.network-btn {
    padding: 14px 18px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    text-align: left;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.network-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
    transition: left 1s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.network-btn:hover::after { left: 120%; }

.network-btn:hover {
    transform: translateX(4px);
    border-color: rgba(52, 211, 153, 0.4);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4), 0 0 36px rgba(52, 211, 153, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.network-btn .main-text {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    display: block;
}

.network-btn .sub-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-top: 4px;
    word-break: break-all;
}

/* Статистика воркера */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 24px; }

.stat-card { padding: 18px; text-align: center; }

.stat-value {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #a7f3d0, #6ee7b7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label { font-size: 11px; color: rgba(255, 255, 255, 0.5); margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; }

.client-item { padding: 18px; margin-bottom: 14px; transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1); }

.client-item:hover {
    transform: translateX(4px);
    border-color: rgba(52, 211, 153, 0.3);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4), 0 0 32px rgba(52, 211, 153, 0.1);
}

.client-username { font-size: 16px; font-weight: 700; color: #ffffff; margin-bottom: 8px; }

.client-comment {
    font-size: 12px;
    color: #86efac;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.client-stats { display: flex; flex-wrap: wrap; gap: 12px; margin: 12px 0; font-size: 12px; }

.client-stats span {
    background: rgba(52, 211, 153, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    color: #86efac;
    border: 1px solid rgba(52, 211, 153, 0.15);
}

.client-last { font-size: 11px; color: rgba(255, 255, 255, 0.5); margin-top: 10px; }

/* Поля ввода воркера */
.input-group { display: flex; flex-direction: column; gap: 14px; }

.input-group input {
    background: rgba(12, 20, 30, 0.5);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    border: 1px solid rgba(52, 211, 153, 0.1);
    border-radius: 24px;
    padding: 16px 18px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: all 0.6s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.input-group input:focus {
    border-color: rgba(52, 211, 153, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 32px rgba(52, 211, 153, 0.15);
}

.input-group input::placeholder { color: #6b6b8a; }

.icon-btn {
    background: rgba(12, 20, 30, 0.5);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    border: 1px solid rgba(52, 211, 153, 0.1);
    border-radius: 24px;
    padding: 12px 18px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.6s ease;
    color: rgba(255, 255, 255, 0.8);
}

.icon-btn:hover {
    background: rgba(52, 211, 153, 0.15);
    border-color: rgba(52, 211, 153, 0.3);
}

/* Пустые состояния */
.empty-state {
    text-align: center;
    padding: 50px;
    color: rgba(255, 255, 255, 0.5);
    border-radius: 28px;
    border: 1px solid rgba(52, 211, 153, 0.05);
}

.loading { text-align: center; padding: 50px; color: #86efac; }

.error {
    text-align: center;
    padding: 50px;
    color: #f87171;
    background: rgba(239, 68, 68, 0.05);
    border-radius: 28px;
    border: 1px solid rgba(239, 68, 68, 0.1);
}

/* Превью чека */
.preview-image {
    max-width: 100%;
    border-radius: 20px;
    margin-top: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Дебаг */
.debug-info {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin-top: 24px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 16px;
}

/* График крипты */
.price-card { padding: 18px; margin: 18px 0; display: none; }
.price-card.show { display: block; }

.current-price {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #a7f3d0, #6ee7b7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.graph-container { height: 160px; margin: 14px 0; }

.back-to-coins { margin-top: 18px; }

.back-to-coins .btn-solid { background: rgba(255, 255, 255, 0.03); margin-bottom: 0; }
.back-to-coins .btn-solid:hover { background: rgba(255, 255, 255, 0.08); }

/* Кнопки-группы */
.button-group { display: flex; gap: 14px; margin-top: 20px; }
.button-group .btn-solid { flex: 1; margin-top: 0; font-size: 13px; padding: 12px 14px; border-radius: 40px; }

/* Адресный блок */
.address-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 18px;
    margin: 18px 0;
    word-break: break-all;
    border: 1px solid rgba(52, 211, 153, 0.05);
}

.address-box code {
    font-size: 12px;
    color: #86efac;
    font-family: 'SF Mono', 'Menlo', monospace;
}

/* Адаптив */
@media (max-width: 400px) {
    body { padding: 12px; }
    .balance-value { font-size: 38px; }
    .pack-card { padding: 10px 4px; }
    .btn-solid { padding: 12px 16px; }
}