* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
    --dark-bg: #000000;      /* Чистый черный, как ночь на промзоне */
    --darker-bg: #0a0a0a;    /* Почти черный, как сажа и мазут */
    --matte-gold: #cc9900;   /* Грязный, предупреждающий желтый */
    --gold-dark: #996600;    /* Темный, выгоревший желтый знак */
    --gold-light: #ffcc00;   /* Яркий, сигнальный желтый */
    --text-color: #f0f0f0;   /* Светло-серый, как бетонная пыль */
    --text-muted: #888888;   /* Серый, как старая окалина */
    --container-width: 90%;
    --transition: all 0.5s ease;
    --section-spacing: 30px;
    --border-radius: 12px;
}

        html, body {
            overflow-x: hidden;
            width: 100%;
            margin: 0;
            padding: 0;
        }
        
        

        body {
            background-color: var(--dark-bg);
            color: var(--text-color);
            line-height: 1.6;
            font-family: 'Roboto', sans-serif;
            /* background-image: 
                url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%238e7549' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E"),
                linear-gradient(to bottom, rgba(15, 12, 10, 0.97), rgba(20, 16, 12, 0.97)); */
            background-attachment: fixed;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
        }

        .container {
            width: var(--container-width);
            max-width: 1200px;
            margin: 0 auto;
            padding: var(--section-spacing) 0;
        }

        @media (max-width: 768px) {
            :root {
                --container-width: 100%;
            }
            
            body {
                padding: 0 10px;
            }
            
            .container {
                width: 100%;
                padding: 20px 0;
            }
        }

        section {
            margin: calc(var(--section-spacing) * 0.5) 0;
            padding: calc(var(--section-spacing) * 0.5) 0;
            position: relative;
            width: 100%;
        }

        .block {
            background: linear-gradient(145deg, #15120e, #100d0a);
            border-radius: var(--border-radius);
            padding: 35px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3), 0 0 10px rgba(178, 151, 94, 0.2);
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(50px);
            transition: var(--transition);
            border: 1px solid rgba(178, 151, 94, 0.15);
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .block::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--matte-gold), transparent);
            opacity: 0.7;
        }

        .block.visible {
            opacity: 1;
            transform: translateY(0);
        }

        h1, h2, h3 {
            color: var(--matte-gold);
            margin-bottom: 20px;
            text-shadow: 0 0 3px rgba(178, 151, 94, 0.3);
            font-weight: 700;
            letter-spacing: 0.5px;
            font-family: 'Cinzel', serif;
        }

        h1 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 25px;
            font-family: 'MedievalSharp', cursive;
            position: relative;
            padding-bottom: 15px;
        }

        h1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--matte-gold), transparent);
        }

        h2 {
            font-size: 2rem;
            position: relative;
            padding-bottom: 12px;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, var(--matte-gold), transparent);
            border-radius: 2px;
        }

        p {
            margin-bottom: 20px;
            color: var(--text-muted);
            line-height: 1.7;
            font-weight: 300;
            font-size: 1.05rem;
        }

        /* Стили для первого блока - Приветствие */
        .welcome-block {
            text-align: center;
            padding: 50px 35px;
            background: 
                radial-gradient(circle at 20% 30%, rgba(178, 151, 94, 0.1) 0%, transparent 30%),
                radial-gradient(circle at 80% 70%, rgba(178, 151, 94, 0.1) 0%, transparent 30%),
                linear-gradient(to bottom, #120f0b, #0e0c09);
            position: relative;
        }

        .welcome-text {
            margin-bottom: 35px;
        }

        .auth-form {
            max-width: 400px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 5px;
            text-align: left;
        }

        label {
            display: block;
            margin-bottom: 8px;
            color: var(--gold-light);
            font-size: 0.95rem;
            font-weight: 400;
        }

        input {
            width: 100%;
            padding: 14px 16px;
            border-radius: var(--border-radius);
            border: 1px solid rgba(178, 151, 94, 0.3);
            background-color: rgba(20, 18, 15, 0.8);
            color: var(--text-color);
            transition: var(--transition);
            font-family: 'Roboto', sans-serif;
            font-weight: 300;
        }

        input:focus {
            outline: none;
            border-color: var(--matte-gold);
            box-shadow: 0 0 8px rgba(178, 151, 94, 0.2);
        }

        button {
            background: linear-gradient(135deg, var(--matte-gold), var(--gold-dark));
            color: #0f0c0a;
            border: none;
            padding: 14px 25px;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 500;
            transition: var(--transition);
            width: 100%;
            margin-top: 5px;
            font-family: 'Cinzel', serif;
            letter-spacing: 0.5px;
            font-size: 1.05rem;
        }

        button:hover {
            background: linear-gradient(135deg, var(--gold-light), var(--matte-gold));
            box-shadow: 0 0 12px rgba(178, 151, 94, 极速4);
        }

        /* Стили для второго блока - Статистика */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        

        .stat-card {
            background: linear-gradient(145deg, #13100c, #0f0d09);
            padding: 20px;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(178, 151, 94, 0.1);
            transition: var(--transition);
            position: relative;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 8px;
            right: 8px;
            width: 15px;
            height: 15px;
            border-top: 2px solid var(--matte-gold);
            border-right: 2px solid var(--matte-gold);
            opacity: 0.5;
        }

        .stat-card::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 8px;
            width: 15px;
            height: 15px;
            border-bottom: 2px solid var(--matte-gold);
            border-left: 2px solid var(--matte-gold);
            opacity: 0.5;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25), 0 0 8px rgba(178, 151, 94, 0.15);
        }

        .stat-value {
            font-size: 2.2rem;
            font-weight: bold;
            color: var(--matte-gold);
            margin: 10px 0;
            text-shadow: 0 0 5px rgba(178, 151, 94, 0.3);
            font-family: 'Cinzel', serif;
        }

        .stat-label {
            color: var(--text-muted);
            font-size: 0.95rem;
            font-weight: 300;
        }

        /* Стили для третьего блока - Статистика транзакций */
        .transactions-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 30px;
            overflow: hidden;
            border-radius: var(--border-radius);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .transactions-table th,
        .transactions-table td {
            padding: 14px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            font-weight: 300;
        }

        .transactions-table th {
            background-color: rgba(178, 151, 94, 0.15);
            color: var(--matte-gold);
            font-weight: 500;
            font-family: 'Cinzel', serif;
        }

        .transactions-table tr:last-child td {
            border-bottom: none;
        }

        .transactions-table tr:hover {
            background-color: rgba(178, 151, 94, 0.05);
        }

        .transaction-positive {
            color: #b2975e;
            font-weight: 400;
        }

        .transaction-negative {
            color: #b2975e;
            font-weight: 400;
        }

        .table-container {
            overflow-x: auto;
            margin: 30px 0;
            border-radius: var(--border-radius);
            width: 100%;
        }

        /* Стили для четвертого блока - Преимущества */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 35px 0;
        }

        .advantage-card {
            text-align: center;
            padding: 25px 20px;
            background: linear-gradient(145deg, #13100c, #0f0d09);
            border-radius: var(--border-radius);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: var(--transition);
            border: 1px solid rgba(178, 151, 94, 0.1);
            position: relative;
        }

        .advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2), 0 0 8px rgba(178, 151, 94, 0.15);
        }

        .advantage-icon {
            font-size: 2.5rem;
            color: var(--matte-gold);
            margin-bottom: 20px;
            text-shadow: 0 0 5px rgba(178, 151, 94, 0.3);
        }

        .advantage-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
        }

        .advantage-card p {
            font-size: 1rem;
        }

        .crypto-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(30px, 1fr));
            gap: 20px;
            margin-top: 35px;
        }

        .crypto-item {
            text-align: center;
            padding: 15px;
            background: linear-gradient(145deg, #13100c, #0f0d09);
            border-radius: var(--border-radius);
            transition: var(--transition);
            border: 1px solid rgba(178, 151, 94, 0.1);
        }

        .crypto-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15), 0 0 8px rgba(178, 151, 94, 0.1);
        }

        .crypto-icon {
            font-size: 2rem;
            margin-bottom: 10px;
            color: var(--matte-gold);
        }

        .crypto-name {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 300;
        }

        /* Стили для пятого блока - Подвал */
        footer {
            background: linear-gradient(to top, #0c0a07, #0f0c0a);
            /* padding: 35px 0 20px; */
            text-align: center;
            border-top: 1px solid rgba(178, 151, 94, 0.15);
            position: relative;
            width: 100%;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--matte-gold), transparent);
            opacity: 0.5;
        }

        .footer-menu {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin: 20px 0;
            gap: 20px;
        }

        .footer-menu a {
            color: var(--text-muted);
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.95rem;
            position: relative;
            padding: 5px 0;
            font-weight: 300;
        }

        .footer-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--matte-gold);
            transition: var(--transition);
        }

        .footer-menu a:hover {
            color: var(--matte-gold);
        }

        .footer-menu a:hover::after {
            width: 100%;
        }

        .copyright {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin: 20px 0;
            font-weight: 300;
        }

        .scroll-top {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--matte-gold), var(--gold-dark));
            color: #0f0c0a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            border: 1px solid rgba(178, 151, 94, 0.3);
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25), 0 0 10px rgba(178, 151, 94, 0.3);
        }

        /* Драконьи элементы декора */
        .dragon-decoration {
            position: absolute;
            opacity: 0.03;
            z-index: 0;
            font-size: 20rem;
            color: var(--matte-gold);
            pointer-events: none;
        }

        .dragon-1 {
            top: -50px;
            left: -50px;
            transform: rotate(-30deg);
        }

        .dragon-2 {
            bottom: -50px;
            right: -50px;
            transform: rotate(150deg);
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.7rem;
            }
            
            .block {
                padding: 25px 20px;
            }
            
            .welcome-block {
                padding: 40px 20px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 15px;
            }
            
            .advantages-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .crypto-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
            }

            .dragon-decoration {
                font-size: 12rem;
            }
            
            .footer-menu {
                flex-direction: column;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .crypto-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .dragon-decoration {
                font-size: 8rem;
            }
            
            h1 {
                font-size: 1.8rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
            
            .block {
                padding: 20px 15px;
            }
            
            .welcome-block {
                padding: 30px 15px;
            }
        }
        
       