
/* Специальный стиль для кнопки "Стать частью сервера" */
.connect-btn {
    padding: 15px 30px;
    font-size: 1.3em;
    height: auto;
    width: auto;
    min-width: 200px;
    max-width: 300px;
    text-align: center;
    border-radius: 10px;
    background: rgba(0, 128, 0, 0.8); /* Зелёный цвет с прозрачностью */
    color: white;
    transition: background 0.3s, transform 0.3s;
}

.connect-btn:hover {
    background: rgba(0, 200, 0, 0.9); /* Ярче при наведении */
    transform: scale(1.05);
}

.custom-separator {
    margin: 50px 0;
    border-top: 2px solid white;
}

.social-section {
    text-align: center;
    margin-top: 40px;
}

.social-link {
    color: white;
    font-size: 1.5em;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-link:hover {
    color: #ff8c00;
}

footer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    margin-top: 50px;
}
.connect-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}


