/* Фон блока */
.telegram-group-block {
background-image: url(https://i.postimg.cc/1tZ3pyJs/Chat-GPT-Image-1-dek-2025-g-11-58-58.png);
background-size: cover;
background-position: center;
padding: 80px 20px;
text-align: center;
position: relative;
border-radius: 24px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
/* Заголовок */
.block-title {
font-family: 'leto', sans-serif;
font-size: 42px;
font-weight: 700;
color: #4E2A1E;
line-height: 1.3;
text-shadow: 2px 2px 0 #ffffff;
margin-bottom: 40px;
text-align: center;
}
/* Картинка с персонажами */
.group-image {
max-width: 400px;
width: 100%;
border-radius: 20px;
margin-bottom: 40px;
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
display: block;
margin-left: auto;
margin-right: auto;
}
/* Кнопка */
.custom-button {
display: inline-block;
background-color: #0F64B1;
color: white;
font-family: 'leto', sans-serif;
font-size: 22px;
font-weight: 600;
padding: 16px 36px;
border-radius: 999px;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 6px 16px rgba(0,0,0,0.15);
margin-top: 20px;
}
.custom-button:hover {
background-color: #084c8d;
transform: scale(1.05);
}