
/* ========== КОММЕНТАРИИ (КИБЕРПАНК) ========== */
.comments-wrapper {
    margin-top: 50px;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

/* ========== АДАПТИВНАЯ ШИРИНА ========== */
@media (min-width: 1025px) {
    .comments-wrapper { width: 824px !important; max-width: 824px !important; }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .comments-wrapper { width: 640px !important; max-width: 640px !important; }
}
@media (max-width: 767px) {
    .comments-wrapper { width: 320px !important; max-width: 320px !important; padding: 0 15px; box-sizing: border-box; }
}

/* ========== ЗАГОЛОВОК ========== */
.comments-title {
    font-size: 24px;
    font-weight: 600;
    color: #00FFEF;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #00FFEF;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.comments-count {
    font-size: 16px;
    font-weight: 400;
    color: #010039;
    background: #00FFEF;
    padding: 4px 12px;
    border-radius: 0 !important;
}

/* ========== ФОРМА ========== */
.comment-form {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    background: rgba(0, 255, 239, 0.03);
    padding: 20px;
    border: 1px solid rgba(0, 255, 239, 0.2);
    border-radius: 0 !important;
}
.comment-form .avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
    border-radius: 0 !important;
}
.comment-form .input-wrapper { flex: 1; }
.comment-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: #0d3b6e;
    border: 1px solid rgba(0, 255, 239, 0.3);
    border-radius: 0 !important;
    color: #eaf4ff;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    resize: vertical;
}
.comment-form textarea::placeholder {
    color: #8eb4d9;
}
.comment-form textarea:focus {
    outline: none;
    border-color: #00FFEF;
    box-shadow: 0 0 30px rgba(0, 255, 239, 0.1);
}
.comment-form .submit-btn {
    margin-top: 12px;
    padding: 8px 24px;
    background: transparent;
    border: 2px solid #00FFEF;
    border-radius: 0 !important;
    color: #00FFEF;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}
.comment-form .submit-btn:hover {
    background: #00FFEF;
    color: #010039;
    box-shadow: 0 0 30px rgba(0, 255, 239, 0.2);
}
.comment-form .submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ========== СПИСОК ========== */
.comments-list { display: flex; flex-direction: column; gap: 20px; }

/* ========== КОММЕНТАРИЙ ========== */
.comment-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 239, 0.1);
    border-radius: 0 !important;
    transition: all 0.3s ease;
}
.comment-item:hover {
    border-color: rgba(0, 255, 239, 0.3);
    box-shadow: 0 0 30px rgba(0, 255, 239, 0.05);
}
.comment-item .avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
    border-radius: 0 !important;
}
.comment-item .body { flex: 1; }
.comment-item .header {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}
.comment-item .author {
    font-weight: 700;
    color: #00FFEF;
    font-size: 16px;
}
.comment-item .date {
    font-size: 13px;
    color: rgba(0, 255, 239, 0.4);
}
.comment-item .text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 10px;
    word-break: break-word;
    white-space: pre-wrap;
}
.comment-item .actions {
    display: flex;
    gap: 12px;
    align-items: center;
}
.comment-item .like-btn,
.comment-item .reply-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 0 !important;
    color: rgba(0, 255, 239, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}
.comment-item .like-btn:hover,
.comment-item .reply-btn:hover {
    background: rgba(0, 255, 239, 0.1);
    color: #00FFEF;
}
.comment-item .like-btn.active { color: #ff4444; }
.comment-item .like-count { font-size: 13px; font-weight: 500; }

/* ========== ОТВЕТЫ ========== */
.replies-container {
    margin-left: 60px;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.reply-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 239, 0.05);
    border-radius: 0 !important;
}
.reply-item .avatar {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 12px;
    flex-shrink: 0;
    border-radius: 0 !important;
}
.reply-item .body { flex: 1; }
.reply-item .header {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}
.reply-item .author {
    font-weight: 700;
    color: #00FFEF;
    font-size: 13px;
}
.reply-item .to { color: #00FFEF; font-size: 12px; opacity: 0.7; }
.reply-item .date { font-size: 11px; color: rgba(0, 255, 239, 0.4); }
.reply-item .text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 6px;
    word-break: break-word;
    white-space: pre-wrap;
}
.reply-item .like-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 0 !important;
    color: rgba(0, 255, 239, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}
.reply-item .like-btn:hover {
    background: rgba(0, 255, 239, 0.1);
    color: #00FFEF;
}
.reply-item .like-btn.active { color: #ff4444; }
.reply-item .like-count { font-size: 12px; font-weight: 500; }

/* ========== ФОРМА ОТВЕТА ========== */
.reply-form {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.reply-form textarea {
    flex: 1;
    padding: 10px 12px;
    background: #0d3b6e;
    border: 1px solid rgba(0, 255, 239, 0.2);
    border-radius: 0 !important;
    color: #eaf4ff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    resize: vertical;
    box-sizing: border-box;
}
.reply-form textarea::placeholder {
    color: #8eb4d9;
}
.reply-form textarea:focus {
    outline: none;
    border-color: #00FFEF;
}
.reply-form .reply-send {
    padding: 8px 16px;
    background: transparent;
    border: 2px solid #00FFEF;
    border-radius: 0 !important;
    color: #00FFEF;
    cursor: pointer;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}
.reply-form .reply-send:hover {
    background: #00FFEF;
    color: #010039;
    box-shadow: 0 0 30px rgba(0, 255, 239, 0.2);
}

/* ========== НЕТ КОММЕНТАРИЕВ ========== */
.no-comments {
    text-align: center;
    padding: 40px;
    color: rgba(0, 255, 239, 0.4);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 239, 0.1);
    border-radius: 0 !important;
    font-size: 14px;
}

/* ========== АДАПТИВ ========== */
@media (max-width: 768px) {
    .comment-form { padding: 15px; flex-direction: column; }
    .comment-form .avatar { width: 36px; height: 36px; font-size: 14px; }
    .comment-item .avatar { width: 36px; height: 36px; font-size: 14px; }
    .comment-item .author { font-size: 14px; }
    .comment-item .text { font-size: 14px; }
    .comments-title { font-size: 20px; }
    .replies-container { margin-left: 20px; }
}



/* ========== БОКОВАЯ ПАНЕЛЬ СПРАВА (КИБЕРПАНК) ========== */
@media (min-width: 1200px) {
    .sidebar-panel {
        position: fixed;
        right: 0;
        top: 0;
        width: 380px;
        height: 100vh;
        background: #010039;
        border-left: 2px solid #00FFEF;
        z-index: 9999;
        overflow-y: auto;
        font-family: 'Montserrat', sans-serif;
        box-shadow: -5px 0 30px rgba(0, 255, 239, 0.15);
        transition: transform 0.3s ease, opacity 0.3s ease;
        padding-top: 80px;
    }
    .sidebar-panel.hidden {
        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;
    }
    body {
        margin-right: 380px;
        transition: margin-right 0.3s ease;
    }
    body.panel-hidden {
        margin-right: 0;
    }
}
@media (max-width: 1199px) {
    .sidebar-panel { display: none; }
    body { margin-right: 0 !important; }
}

.show-panel-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid #00FFEF;
    border-radius: 0 !important;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
    box-shadow: 0 0 20px rgba(0, 255, 239, 0.2);
    transition: all 0.3s ease;
}
.show-panel-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 255, 239, 0.3);
}
.show-panel-btn svg {
    width: 24px;
    height: 24px;
    stroke: #00FFEF;
    stroke-width: 2;
}
@media (min-width: 1200px) {
    .show-panel-btn.visible { display: flex; }
}

.sidebar-panel::-webkit-scrollbar {
    width: 4px;
}
.sidebar-panel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}
.sidebar-panel::-webkit-scrollbar-thumb {
    background: #00FFEF;
    border-radius: 0 !important;
}

.sidebar-content {
    padding: 30px 20px;
}

.author-card {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #00FFEF;
}
.author-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00FFEF, #010039);
    border-radius: 0 !important;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: #010039;
    border: 2px solid #00FFEF;
}
.author-name {
    font-size: 18px;
    font-weight: 700;
    color: #00FFEF;
    margin-bottom: 5px;
}
.author-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.nav-menu {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(0, 255, 239, 0.03);
    border: 1px solid rgba(0, 255, 239, 0.1);
    border-radius: 0 !important;
}
.nav-item {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 255, 239, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 3px solid transparent;
    padding-left: 10px;
}
.nav-item:last-child {
    border-bottom: none;
}
.nav-item:hover {
    color: #00FFEF;
    padding-left: 16px;
    border-left-color: #00FFEF;
}
.nav-item.active {
    color: #00FFEF;
    border-left-color: #00FFEF;
    background: rgba(0, 255, 239, 0.05);
}

/* ========== БЛОК "МЫ ТУТ!" ========== */
.social-section {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(0, 255, 239, 0.03);
    border: 1px solid rgba(0, 255, 239, 0.1);
    border-radius: 0 !important;
    text-align: center;
}
.social-title {
    font-size: 18px;
    font-weight: 700;
    color: #00FFEF;
    margin-bottom: 5px;
}
.social-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid transparent;
}
.social-icon.vk {
    background: #4C75A3 !important;
    color: #ffffff !important;
    border-color: #4C75A3;
}
.social-icon.vk:hover {
    background: #3a5d7a !important;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(76, 117, 163, 0.3);
}
.social-icon.tg {
    background: #0088cc !important;
    color: #ffffff !important;
    border-color: #0088cc;
}
.social-icon.tg:hover {
    background: #006699 !important;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 136, 204, 0.3);
}
.social-icon.vk,
.social-icon.tg,
.social-icon.vk:visited,
.social-icon.tg:visited,
.social-icon.vk:hover,
.social-icon.tg:hover {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* ========== ОБСУЖДАЕМЫЕ ========== */
.discussions-title {
    font-size: 18px;
    font-weight: 700;
    color: #00FFEF;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sidebar-comment {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 255, 239, 0.03);
    border: 1px solid rgba(0, 255, 239, 0.05);
    border-radius: 0 !important;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}
.sidebar-comment:hover {
    background: rgba(0, 255, 239, 0.08);
    border-color: #00FFEF;
    transform: translateX(-5px);
    box-shadow: 0 0 20px rgba(0, 255, 239, 0.05);
}
.comment-email {
    font-size: 12px;
    color: #00FFEF;
    margin-bottom: 8px;
    word-break: break-all;
}
.comment-preview {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.comment-reactions {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 8px;
}
.comment-blog-link {
    font-size: 11px;
    color: #00FFEF;
    opacity: 0.7;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 255, 239, 0.1);
    display: flex;
    align-items: center;
    gap: 5px;
}
.comment-blog-link:hover {
    opacity: 1;
}



    /* ========== КНОПКА ОГЛАВЛЕНИЯ (КИБЕРПАНК) ========== */
    .toc-toggle-btn {
        position: fixed !important;
        bottom: 80px !important;
        left: 0 !important;
        z-index: 99999 !important;
        width: 50px !important;
        height: 50px !important;
        background: rgba(0, 0, 0, 0.85) !important;
        border: 2px solid #00FFEF !important;
        border-radius: 0 !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 0 20px rgba(0, 255, 239, 0.2) !important;
        transition: all 0.3s ease !important;
        color: #00FFEF !important;
        font-size: 20px !important;
        font-weight: 700 !important;
        padding: 0 !important;
        margin: 0 !important;
        position: fixed !important;
        right: auto !important;
        top: auto !important;
    }
    .toc-toggle-btn:hover {
        transform: translateX(4px) !important;
        box-shadow: 0 0 40px rgba(0, 255, 239, 0.4) !important;
        color: #fff !important;
        border-color: #00FFEF !important;
        background: rgba(0, 255, 239, 0.1) !important;
    }
    .toc-toggle-btn:active {
        transform: scale(0.95) !important;
    }
    .toc-toggle-btn svg {
        width: 24px !important;
        height: 24px !important;
        fill: none !important;
        stroke: #00FFEF !important;
        stroke-width: 2.5 !important;
        display: block !important;
    }
    .toc-toggle-btn:hover svg {
        stroke: #fff !important;
    }

    /* ========== МОДАЛЬНОЕ ОКНО ОГЛАВЛЕНИЯ ========== */
    .toc-modal {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: rgba(0, 0, 0, 0.9) !important;
        backdrop-filter: blur(20px) !important;
        z-index: 99998 !important;
        display: none !important;
        align-items: center !important;
        justify-content: center !important;
        font-family: 'Montserrat', sans-serif !important;
        opacity: 0 !important;
        transition: opacity 0.3s ease !important;
    }
    .toc-modal.open {
        display: flex !important;
        opacity: 1 !important;
    }

    .toc-modal-content {
        width: 90% !important;
        max-width: 400px !important;
        max-height: 80vh !important;
        padding: 30px 24px !important;
        background: #0a0a0a !important;
        border: 2px solid #00FFEF !important;
        border-radius: 0 !important;
        box-shadow: 0 0 40px rgba(0, 255, 239, 0.15) !important;
        position: relative !important;
        overflow-y: auto !important;
    }
    .toc-modal-content::-webkit-scrollbar {
        width: 4px !important;
    }
    .toc-modal-content::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05) !important;
    }
    .toc-modal-content::-webkit-scrollbar-thumb {
        background: #00FFEF !important;
        border-radius: 0 !important;
    }

    .toc-modal-close {
        position: absolute !important;
        top: 10px !important;
        right: 14px !important;
        background: none !important;
        border: none !important;
        color: rgba(0, 255, 239, 0.6) !important;
        font-size: 28px !important;
        cursor: pointer !important;
        transition: all 0.2s ease !important;
        font-family: 'Montserrat', sans-serif !important;
    }
    .toc-modal-close:hover {
        color: #00FFEF !important;
        transform: rotate(90deg) !important;
    }

    .toc-title {
        font-size: 20px !important;
        font-weight: 700 !important;
        color: #00FFEF !important;
        margin-bottom: 20px !important;
        padding-bottom: 12px !important;
        border-bottom: 2px solid #00FFEF !important;
        text-transform: uppercase !important;
        letter-spacing: 2px !important;
    }

    .toc-item {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 12px 14px !important;
        color: rgba(255, 255, 255, 0.7) !important;
        font-size: 14px !important;
        cursor: pointer !important;
        border-radius: 0 !important;
        transition: all 0.3s ease !important;
        text-decoration: none !important;
        border-bottom: 1px solid rgba(0, 255, 239, 0.05) !important;
        border-left: 3px solid transparent !important;
    }
    .toc-item:last-child {
        border-bottom: none !important;
    }
    .toc-item:hover {
        background: rgba(0, 255, 239, 0.05) !important;
        color: #00FFEF !important;
        padding-left: 18px !important;
        border-left-color: #00FFEF !important;
    }
    .toc-item .text {
        font-weight: 500 !important;
        line-height: 1.3 !important;
        letter-spacing: 0.3px !important;
    }

    /* ========== АДАПТАЦИЯ ДЛЯ МОБИЛЬНЫХ ========== */
    @media (max-width: 768px) {
        .toc-toggle-btn {
            bottom: 100px !important;
            width: 42px !important;
            height: 42px !important;
            font-size: 16px !important;
        }
        .toc-toggle-btn svg {
            width: 20px !important;
            height: 20px !important;
        }
        .toc-modal-content {
            padding: 20px 16px !important;
            max-height: 85vh !important;
        }
        .toc-title {
            font-size: 18px !important;
        }
        .toc-item {
            font-size: 13px !important;
            padding: 10px 12px !important;
        }
    }

    @media (max-width: 480px) {
        .toc-toggle-btn {
            bottom: 80px !important;
            width: 38px !important;
            height: 38px !important;
            font-size: 14px !important;
        }
        .toc-toggle-btn svg {
            width: 18px !important;
            height: 18px !important;
        }
    }



    /* ========== ПЛАШКА ВНИЗУ ЭКРАНА (КИБЕРПАНК) ========== */
    .bottom-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 9998;
        width: 100%;
        background: #010039 !important;
        backdrop-filter: blur(20px);
        border-top: 2px solid #00FFEF;
        padding: 12px 0;
        box-shadow: 0 -4px 30px rgba(0, 255, 239, 0.15);
        transition: transform 0.4s ease, opacity 0.4s ease, width 0.4s ease;
        font-family: 'Montserrat', sans-serif;
        display: block !important;
        transform: translateY(0);
        opacity: 1;
    }
    
    .bottom-banner.hidden-banner {
        transform: translateY(100%);
        opacity: 0;
        pointer-events: none;
    }
    
    @media (min-width: 1200px) {
        .bottom-banner {
            width: calc(100% - 380px);
            left: 0;
        }
        body.panel-hidden .bottom-banner {
            width: 100%;
            left: 0;
        }
    }
    
    .bottom-banner-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 16px;
        flex-wrap: wrap;
    }
    
    @media (max-width: 1199px) {
        .bottom-banner-content {
            justify-content: center;
        }
    }
    
    .bottom-banner-actions {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    
    .bottom-banner-item {
        display: flex;
        align-items: center;
        gap: 6px;
        color: rgba(0, 255, 239, 0.7);
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
        background: none;
        border: none;
        font-family: 'Montserrat', sans-serif;
        padding: 6px 12px;
        border-radius: 0 !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border: 1px solid transparent;
    }
    
    .bottom-banner-item:hover {
        color: #00FFEF;
        background: rgba(0, 255, 239, 0.05);
        border-color: rgba(0, 255, 239, 0.2);
    }
    
    .bottom-banner-item .icon {
        font-size: 18px;
        line-height: 1;
    }
    
    .bottom-banner-item .count {
        font-weight: 500;
        min-width: 16px;
        color: #00FFEF;
    }
    
    .bottom-banner-item.liked {
        color: #ff4444;
    }
    .bottom-banner-item.liked:hover {
        color: #ff4444;
    }
    .bottom-banner-item.liked .count {
        color: #ff4444;
    }
    
    .share-btn {
        background: transparent;
        border: 1px solid rgba(0, 255, 239, 0.3);
        padding: 6px 16px;
        border-radius: 0 !important;
        color: #00FFEF;
        font-weight: 500;
        font-size: 13px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: 'Montserrat', sans-serif;
        display: flex;
        align-items: center;
        gap: 6px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .share-btn:hover {
        background: rgba(0, 255, 239, 0.1);
        border-color: #00FFEF;
        box-shadow: 0 0 20px rgba(0, 255, 239, 0.1);
        transform: scale(1.02);
    }
    
    /* ========== АДАПТАЦИЯ ========== */
    @media (max-width: 1199px) {
        .bottom-banner {
            width: 100% !important;
        }
    }
    
    @media (max-width: 768px) {
        .bottom-banner-content {
            padding: 0 12px;
            gap: 8px;
        }
        .bottom-banner-item {
            font-size: 11px;
            padding: 4px 8px;
        }
        .bottom-banner-item .icon {
            font-size: 14px;
        }
        .share-btn {
            font-size: 10px;
            padding: 4px 10px;
        }
        .bottom-banner-actions {
            gap: 6px;
        }
    }
