body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 15px;
}

.site-name {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.laser-text {
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    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; /* Тени для лазерного эффекта */
    animation: flicker 1.5s infinite alternate;
}


@keyframes flicker {
    0% {
        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;
    }
    50% {
        text-shadow: 
            0 0 5px #00ff00,
            0 0 15px #00ff00,
            0 0 30px #00ff00,
            0 0 60px #00ff00,
            0 0 100px #00ff00,
            0 0 150px #00ff00;
    }
    100% {
        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;
    }
}

/* Основной контейнер */
.container {
    text-align: center;
    margin-top: 150px; /* Расстояние от верхней части страницы до основного контента */
}

/* Кнопка подключения кошелька */
.connect-button {
    background-color: #00ff00;
    border: 2px solid #00ff00;
    color: #111;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.3s, border-color 0.3s;
}

/* Лазерный эффект на кнопке */
.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: translateX(-50%) translateY(-50%) scale(0);
    opacity: 0;
    pointer-events: none;
}

.connect-button:hover {
    color: #00ff00;
    border-color: #00ff00;
}

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

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

