body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #111;
    position: relative;
    top: 0;
    width: 100%;
    box-sizing: border-box;
}

.logo img {
    height: 50px;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1000;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: 0.3s;
}

.nav-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background-color: #333;
    color: #fff;
    padding: 20px;
    box-shadow: -2px 0 5px rgba(0,0,0,0.3);
    z-index: 999;
    transition: transform 0.3s ease;
    transform: translateX(100%);
}

.nav-menu.active {
    display: block;
    transform: translateX(0);
}

.nav-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.nav-menu ul li {
    margin: 20px 0;
}

.nav-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu ul li a:hover {
    color: #00ff00;
    text-decoration: underline;
}

.container {
    text-align: center;
    margin-top: 150px;
}

.connect-button {
    background-color: transparent;
    border: 2px solid #00ff00;
    color: #00ff00;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.3s, text-shadow 0.3s, opacity 0.3s;
    animation: fade 1.5s infinite alternate;
}

.connect-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.4), transparent 70%);
    transition: opacity 0.3s, transform 0.5s;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    pointer-events: none;
}

.connect-button:hover {
    color: #00ff00;
    text-shadow: 
        0 0 5px #00ff00,
        0 0 10px #00ff00,
        0 0 20px #00ff00,
        0 0 40px #00ff00,
        0 0 80px #00ff00,
        0 0 120px #00ff00;
}

.connect-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.connect-button:active {
    color: #00cc00;
}

@keyframes fade {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.footer {
    background-color: #111;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.stats {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item {
    margin: 10px 0;
    padding: 15px;
    color: #fff;
    border-radius: 8px;
}

.stat-item img {
    height: 30px;
    vertical-align: middle;
    margin-right: 10px;
}

.stat-item p {
    font-size: 18px;
    margin: 0;
    font-weight: 500;
}

.stat-item span {
    font-weight: 700;
    color: #ff0000; /* Красный лазерный цвет */
}

.laser-text-red {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: #ff0000;
    text-shadow: 
        0 0 5px #ff0000,
        0 0 10px #ff0000,
        0 0 20px #ff0000,
        0 0 40px #ff0000,
        0 0 80px #ff0000,
        0 0 120px #ff0000;
    animation: flicker-red 1.5s infinite alternate;
}

@keyframes flicker-red {
    0% {
        text-shadow: 
            0 0 5px #ff0000,
            0 0 10px #ff0000,
            0 0 20px #ff0000,
            0 0 40px #ff0000,
            0 0 80px #ff0000,
            0 0 120px #ff0000;
    }
    50% {
        text-shadow: 
            0 0 5px #ff0000,
            0 0 15px #ff0000,
            0 0 30px #ff0000,
            0 0 60px #ff0000,
            0 0 100px #ff0000,
            0 0 150px #ff0000;
    }
    100% {
        text-shadow: 
            0 0 5px #ff0000,
            0 0 10px #ff0000,
            0 0 20px #ff0000,
            0 0 40px #ff0000,
            0 0 80px #ff0000,
            0 0 120px #ff0000;
    }
}

