/* Сохранен ваш оригинальный стиль */
h1, h2, h3, h4, h5, h6, p, a, span, button {
    font-family: "Golos Text", sans-serif;
    text-decoration: none;
    margin: 0;
    color: #000;
}
.element-animation {
    opacity: 0;
    -webkit-transform: translateY(5px);
}
.element-animation.element-show {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transition: .5s;
}
body {
    background-color: #fcfefd;
    overflow-x: hidden;
    height: 100%;
}
body::-webkit-scrollbar {
    width: 6px;
}
body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0);
}
body::-webkit-scrollbar-thumb {
    background-color: #0fab7c;
    border-radius: 20px;
}
.wrap {
    min-height: calc(100vh);
}
.bg-image {
    z-index: -1;
}
.bg-1 { position: absolute; top: 20%; left: -2%; transform: rotate(-15deg); z-index: -1; }
.bg-2 { position: absolute; top: 30%; left: 79%; transform: rotate(25deg); z-index: -1; }
.bg-3 { position: absolute; top: 69%; left: 10%; transform: rotate(-15deg); z-index: -1; }
.bg-4 { position: absolute; top: 69%; left: 60%; transform: rotate(-3deg); z-index: -1; }
.bg-5 { position: absolute; top: 5%; left: 60%; transform: rotate(-3deg); z-index: -1; }

header {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu-logo h1 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(130deg, #1affba 0%, #0fab7c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all .2s;
}
.menu-logo h1:hover { opacity: .7; }
nav a {
    margin-left: 32px;
    font-size: 18px;
    transition: all .2s;
    color: #000;
}
nav a:hover { opacity: .7; }
.active-nav { font-weight: 700; }

.navbar {
    display: none;
    padding: 16px 10px;
    border-bottom: 3px solid #0fab7c;
}
.navbar a {
    color: #000000;
    font-weight: 400;
    font-size: 18px;
}
.navbar a:hover {
    color: #000000;
    font-weight: 400;
    font-size: 18px;
}
.navbar-toggler {
    border: 3px solid #0fab7c;
    background-color: #ffffff;
}

/* Стили для блогеров */
.bloggers {
    margin-top: 120px;
    background-color: #ffffffde;
    backdrop-filter: blur(5px);
    filter: drop-shadow(0 0 1rem rgba(0, 0, 0, 0.200));
    border-radius: 8px;
    padding: 40px 60px;
    border-top: 4px solid #0fab7c;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.blogger-header {
    padding-bottom: 40px;
    text-align: center;
    background: linear-gradient(#35fbc010, #ffffff00);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 40px;
}
.blogger-header h2 {
    font-weight: 700;
    font-size: 32px;
    color: #0fab7c;
    margin-bottom: 15px;
}
.blogger-header p {
    font-size: 18px;
    line-height: 1.5;
    color: #555;
}
.blogger-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 8px;
    background: #fff;
    transition: all 0.3s;
}
.blogger-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.blogger-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 2px solid #0fab7c;
    flex-shrink: 0;
}
.blogger-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blogger-item-text {
    flex-grow: 1;
    min-width: 0;
}
.blogger-item-text a {
    font-size: 22px;
    font-weight: 600;
    color: #fc0909;
    transition: all 0.2s;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blogger-item-text a:hover {
    opacity: 0.8;
}
.blogger-item-text p {
    font-size: 16px;
    color: #666;
    margin-top: 5px;
    word-wrap: break-word;
}
.blogger-item-button button {
    height: 50px;
    border: 0;
    padding: 0 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    background: linear-gradient(130deg, #fc0909 0%, #d10808 100%);
    color: #fff;
    transition: all 0.3s;
    white-space: nowrap;
}
.blogger-item-button button:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(252, 9, 9, 0.3);
}

.links {
    padding-top: 60px;
    display: flex;
    justify-content: center;
}
.links img {
    width: 64px;
    margin: 0px 16px;
    transition: all .2s;
    filter: drop-shadow(0 0 0.8rem rgba(0, 0, 0, 0.300));
}
.links img:hover { opacity: .7; }

footer {
    width: 100%;
    margin-top: 60px;
    background-color: #0fab7cce;
}
.footer-cont {
    padding: 24px 0px;
}
.footer-info {
    text-align: center;
}
.footer-info p { color: #fff; }
.footer-img {
    padding-top: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-img img { width: 50px; }

/* Медиа-запросы для адаптивности */
@media (max-width: 991px) {
    .navbar {
        display: block;
    }
    header {
        display: none;
    }
}

@media (max-width: 768px) {
    .bloggers {
        padding: 20px 15px;
        margin-top: 80px;
        max-width: 100%;
    }
    .blogger-header {
        padding: 15px;
        margin-bottom: 20px;
    }
    .blogger-header h2 {
        font-size: 24px;
    }
    .blogger-header p {
        font-size: 16px;
    }
    .blogger-item {
        flex-direction: column;
        align-items: center; /* Центрируем элементы */
        padding: 15px;
        margin-bottom: 20px;
    }
    .blogger-avatar {
        width: 80px; /* Увеличиваем аватарку для мобильных */
        height: 80px;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .blogger-item-text {
        text-align: center; /* Центрируем текст */
        width: 100%;
    }
    .blogger-item-text a {
        font-size: 18px;
        white-space: normal; /* Разрешаем перенос названия */
    }
    .blogger-item-text p {
        font-size: 14px;
    }
    .blogger-item-button {
        width: 100%;
        margin-top: 15px;
    }
    .blogger-item-button button {
        width: 100%;
        padding: 0 15px;
        height: 45px;
        font-size: 14px;
    }
    .links {
        padding-top: 40px;
        flex-wrap: wrap;
    }
    .links img {
        width: 48px;
        margin: 8px;
    }
}

@media (max-width: 576px) {
    .bloggers {
        padding: 15px 10px;
    }
    .blogger-header h2 {
        font-size: 20px;
    }
    .blogger-header p {
        font-size: 14px;
    }
    .blogger-item-text a {
        font-size: 16px;
    }
    .blogger-item-text p {
        font-size: 13px;
    }
    .blogger-item-button button {
        font-size: 13px;
        height: 40px;
    }
    .footer-cont {
        padding: 15px 0;
    }
    .footer-info p {
        font-size: 14px;
    }
    .footer-img img {
        width: 40px;
    }
}
