 body {
            background: radial-gradient(circle at top left, #222b3a, #0b1018);
            color: #f5f5f5;
            min-height: 100vh;
        }
        .navbar {
            background: rgba(10, 14, 23, 0.95);
            backdrop-filter: blur(12px);
        }
       
        .badge-soft {
            background: rgba(0, 255, 163, 0.12);
            color: #5fffd2;
            border-radius: 999px;
            padding: 4px 10px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: .08em;
        }
        .btn-main {
            border-radius: 999px;
            border: none;
            padding: 10px 22px;
            font-weight: 600;
            background: linear-gradient(135deg, #4be1a8, #00b1ff);
            color: #041019;
            box-shadow: 0 10px 25px rgba(0,0,0,0.6);
        }
        .btn-main:hover {
            opacity: .9;
            transform: translateY(-1px);
        }
        .balance-big {
            font-size: 32px;
            font-weight: 700;
        }
        .text-muted-soft {
            color: rgba(255,255,255,0.6);
        }
        .miner-status-active {
            color: #5fffd2;
        }
        .miner-status-completed {
            color: #9fa6ff;
        }
		
		
		.main-header {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 12px 0;
}

.navbar-brand {
    font-size: 22px;
    color: #fff !important;
}

.logo-circle {
    background: linear-gradient(135deg, #4be1a8, #00b3ff);
    padding: 6px 10px;
    border-radius: 50%;
    font-size: 16px;
    box-shadow: 0 0 10px rgba(0,255,200,0.4);
}

.nav-link {
    color: #cbd5e1 !important;
    font-weight: 500;
    transition: .25s;
}

.nav-link:hover {
    color: #4be1a8 !important;
}

.btn-main {
    background: linear-gradient(135deg,#4be1a8,#00b3ff);
    border-radius: 999px;
    border: none;
    color: #000;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0,255,200,0.2);
}

.btn-main:hover {
    opacity: .9;
    color: #000;
}

.main-footer {
    background: #0f172a;
    color: #cbd5e1;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
}

.footer-title {
    font-size: 22px;
    font-weight: 700;
}

.footer-desc {
    color: #94a3b8;
    font-size: 14px;
    margin-top: 10px;
}

.footer-subtitle {
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 10px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    transition: .2s;
}

.footer-list li a:hover {
    color: #4be1a8;
}

.social-btn {
    display: inline-block;
    margin-bottom: 6px;
    color: #4be1a8;
    text-decoration: none;
    font-weight: 600;
}

.footer-line {
    border-color: rgba(255,255,255,0.06);
    margin: 20px 0;
}

 .hero {
            padding: 60px 0;
            text-align: center;
        }
        
        .btn-main {
            background: linear-gradient(135deg,#4be1a8,#00b3ff);
            border-radius: 999px;
            border: none;
            color: #000;
            padding: 12px 28px;
            font-size: 18px;
            font-weight: 600;
        }
        .stats-box {
            font-size: 22px;
            font-weight: 600;
        }
		
		.page-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}



.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #4be1a8;
    margin-bottom: 15px;
}

.text-soft {
    color: #cbd5e1;
}

.card-soft {
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    padding: 25px;
    backdrop-filter: blur(4px);
    transition: 
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

/* Hover анимация */
.card-soft:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 255, 200, 0.15);
    border-color: rgba(0,255,200,0.25);
}

/* Анимация при клике */
.card-soft:active {
    transform: translateY(-2px) scale(0.99);
    box-shadow: 0 5px 15px rgba(0, 255, 200, 0.15);
}

/* Подсветка таблиц внутри */
.card-soft table tbody tr:hover {
    background: rgba(255,255,255,0.05);
    transition: background 0.25s ease;
}

.miner-mini-spinner {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: #32e699;
    animation: minerSpin 0.7s linear infinite;
    display: inline-block;
    vertical-align: middle;
}

@keyframes minerSpin {
    100% {
        transform: rotate(360deg);
    }
}

.btn-spinner {
    width: 16px;
    height: 16px;
    border: 3px solid rgba(255,255,255,0.4); /* белый полупрозрачный */
    border-top-color: #ffffff; /* чисто белый акцент */
    border-radius: 50%;
    animation: spinBtn 0.7s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    filter: drop-shadow(0 0 3px rgba(0,0,0,0.4)); /* ОБВОДКА для видимости */
}

@keyframes spinBtn {
    100% {
        transform: rotate(360deg);
    }
}