 /* Уведомление о  подтверждение EMAIL внизу*/
 .bottom-info-wrapper {
 background: rgb(20 20 20 / 60%) !important;
 box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
 backdrop-filter: blur(5px);
 border-top: 2px solid #e81c5a;
 
}

.bottom-info-wrapper .bottom-info-block {
 margin: 10px 20px;
 padding: 10px 0;
}

.bottom-info-wrapper .bottom-info-block-content {
 font-size: 16px;
 font-style:italic;
 color: #ddd;
}

.bottom-info-wrapper a {
 color: #e81c5a !important;
 text-decoration: none;
 font-weight: bold;
}

.bottom-info-wrapper .bottom-info-button-agree {
 background: #e81c5a !important;
 color: #fff !important;
 border: none;
 padding: 5px 15px;
 font-weight: bold;
 border-radius: 6px;
 transition: background 0.3s ease;
}
.bottom-info-wrapper .bottom-info-button-agree:hover {
 background: #c21447 !important;
}

.bottom-info-wrapper .bottom-info-button-hide {
 color: #fff;
 font-size: 18px;
 line-height: 28px;
 background: transparent;
 transition: transform 0.2s ease;
}
.bottom-info-wrapper .bottom-info-button-hide:hover {
 transform: scale(1.2);
}
 
 .bottom-info-wrapper:empty {
 border-top: none !important;
 height: 0 !important;
 padding: 0 !important;
}
/* Конец Уведомление о  подтверждение EMAIL внизу*/

/* Модальное окно кто сегодня посетил */
.user-list-modal {
 display: none;
 position: fixed;
 z-index: 99999;
 left: 0; top: 0;
 width: 100%; height: 100%;
 background: rgba(0, 0, 0, 0.7);
 backdrop-filter: blur(5px);
 justify-content: center;
 align-items: center;
}

.user-list-box {
 background: #1a1a1a;
 color: #fff;
 max-width: 500px;
 width: 90%;
 border-radius: 8px;
 overflow: hidden;
 box-shadow: 0 0 20px rgba(0,0,0,0.5);
 animation: fadeIn 0.2s ease;
}

.user-list-header {
 background: #2c2c2c;
 padding: 12px 16px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 font-weight: bold;
 font-size: 16px;
}

.user-list-close {
 cursor: pointer;
 font-size: 20px;
 color: #aaa;
}
.user-list-close:hover {
 color: #fff;
}

.user-list-content {
 padding: 16px;
 font-size: 14px;
 max-height: 300px;
 overflow-y: auto;
}

.user-list-footer {
 padding: 12px;
 background: #2c2c2c;
 text-align: center;
}
.user-list-footer button {
 background: #e81c5a;
 color: #fff;
 border: none;
 padding: 6px 20px;
 font-weight: bold;
 border-radius: 4px;
 cursor: pointer;
}
.user-list-footer button:hover {
 background: #c3154f;
}

@keyframes fadeIn {
 0% {opacity: 0; transform: scale(0.95);}
 100% {opacity: 1; transform: scale(1);}
}

ul.uz {
 list-style: disc inside;
 padding-left: 0;
}

ul.uz li {
 display: list-item;
 font-size: 15px;
 margin: 4px 0;
}

ul.uz li a,
ul.uz li span {
 display: inline;
 vertical-align: middle;
}

ul.uz li span {
 font-size: 12px;
 color: #5f5e5e;
 margin-left: 5px;
}
/* Конец Модальное окно кто сегодня посетил */


/* 🎲 Рулетка редуксов */
a.down-block {
    display: block;
    max-width: 520px;
    padding: 16px 20px 16px 90px;
    background: linear-gradient(145deg, #1b1b1b, #121212);
    border: 2px solid #3a3a3a;
    border-radius: 12px;
    color: #efefef;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    line-height: 1.4;
    margin: 0 3px 24px 0;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}

a.down-block span {
    display: block;
    font-size: 14px;
    font-weight: normal;
    color: #bbbbbb;
    margin-top: 6px;
}

a.down-block:hover {
    background: linear-gradient(145deg, #222222, #191919);
    border-color: #e81c5a;
    box-shadow: 0 0 12px rgba(232, 28, 90, 0.4);
}

/* Иконка рулетки (кубик) */
a.redux-block::before {
    content: "";
    width: 56px;
    height: 56px;
    background: url(/images/roulett.png) no-repeat center center / contain;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: transform 0.3s;
}

a.redux-block:hover::before {
    transform: translateY(-50%) rotate(10deg) scale(1.05);
}
/* 🔚 Конец блока рулетки */


/* Мини-Чат */
.chatStats-overlay {
 display: none;
 position: fixed;
 z-index: 10000;
 left: 0;
 top: 0;
 width: 100%;
 height: 100%;
 background: rgba(0, 0, 0, 0.7);
 backdrop-filter: blur(6px);
 justify-content: center;
 align-items: center;
 font-family: sans-serif;
}

.chatStats-box {
 background: #1a1a1a;
 color: #fff;
 width: 90%;
 max-width: 400px;
 border-radius: 8px;
 box-shadow: 0 0 20px rgba(0,0,0,0.6);
 animation: fadeInScale 0.3s ease;
 transform-origin: center;
 overflow: hidden;
}

.chatStats-header {
 background: #2c2c2c;
 padding: 15px 20px;
 display: flex;
 justify-content: space-between;
 align-items: center;
}

.chatStats-title {
 font-size: 18px;
 font-weight: bold;
}

.chatStats-close {
 cursor: pointer;
 font-size: 22px;
 color: #aaa;
 transition: 0.2s;
}
.chatStats-close:hover {
 color: #fff;
}

.chatStats-content {
 padding: 20px;
 font-size: 14px;
 text-align: center;
}

.chatStats-footer {
 background: #222;
 padding: 15px;
 text-align: center;
}

.chatStats-footer button {
 background: #e81c5a;
 color: white;
 border: none;
 padding: 8px 20px;
 border-radius: 4px;
 cursor: pointer;
 font-weight: bold;
}
.chatStats-footer button:hover {
 background: #c41547;
}

 
 /* Анимация */
@keyframes fadeInScale {
 0% {
 opacity: 0;
 transform: scale(0.85);
 }
 100% {
 opacity: 1;
 transform: scale(1);
 }
}
 
 .chatRules-overlay {
 display: none;
 position: fixed;
 z-index: 10000;
 left: 0;
 top: 0;
 width: 100%;
 height: 100%;
 background: rgba(0, 0, 0, 0.7);
 backdrop-filter: blur(6px);
 justify-content: center;
 align-items: center;
 font-family: sans-serif;
}

.chatRules-box {
 background: #1a1a1a;
 color: #fff;
 width: 90%;
 max-width: 500px;
 border-radius: 8px;
 box-shadow: 0 0 20px rgba(0,0,0,0.6);
 overflow: hidden;
 animation: fadeInScale 0.3s ease;
 transform-origin: center;
}

.chatRules-header {
 background: #2c2c2c;
 padding: 15px 20px;
 display: flex;
 justify-content: space-between;
 align-items: center;
}

.chatRules-title {
 font-size: 18px;
 font-weight: bold;
}

.chatRules-close {
 cursor: pointer;
 font-size: 22px;
 color: #aaa;
 transition: 0.2s;
}
.chatRules-close:hover {
 color: #fff;
}

.chatRules-content {
 padding: 20px;
 font-size: 14px;
}

.chatRules-content ul {
 padding-left: 20px;
 margin-top: 10px;
}
.chatRules-content ul li {
 margin-bottom: 6px;
 list-style-type: disc;
}

.chatRules-footer {
 background: #222;
 padding: 15px;
 text-align: center;
}

.chatRules-footer button {
 background: #e81c5a;
 color: white;
 border: none;
 padding: 8px 20px;
 border-radius: 4px;
 cursor: pointer;
 font-weight: bold;
}
.chatRules-footer button:hover {
 background: #c41547;
}


 
 .ch_smlin img {
 cursor: pointer;
 font-size: 20px;
 padding: 4px;
 transition: transform 0.1s;
}

.ch_smlin img:hover {
 transform: scale(1.3);
}
 
 .chat_over{background:rgb(0 0 0);right:20px;position:fixed;padding:0;padding-top:0;z-index:9999;bottom:-250px;text-align:center;font-size:14px;border:1px solid #0f0f0f;width: 350px;}
.chat_over *{outline:none}
.chat_over .jspTrack{height:160px!important}
.chat_over,.ch_sml,.ch_smlin,.uuslugi,.new_comment_error,.forum_get,.comment_answer_button a,.quoteMessage,.premium .prc,.siteRate,.siteRate div,.sb1,.sb2,.chatRight,.gChat,.gChat:hover,.over_ind,.ind,.info_signs,.column_1,.column_c,.column_2,.jspDrag{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}
.smile_in,.ch_smlin img,.sound_on,.sound_off,#setting_chat a,#rules_chat a,#sound_chat div,.hm,.ch_sml,.jspDrag{transition:all linear .1s;-moz-transition:all linear .1s;-webkit-transition:all linear .1s;-o-transition:all linear .1s}
.comm .us{color:#646464;font-size:12px;margin-top:0px;padding:0}
.comm .us a{text-decoration:none}
 .comm .us .us_name{color:rgb(136, 195, 255); font-size:14px;}
.comm .av{margin-right:10px;width:35px;height:35px;overflow:hidden;-webkit-border-radius:50px;-moz-border-radius:50px;border-radius:50px;border: 2px solid #e81c5a;
 box-shadow: 0 0 15px #e81c5a;}
.comm .av img{width:100%;height:100%;object-fit:cover;-webkit-border-radius:250px;-moz-border-radius:250px;border-radius:250px}
.comm .chatInner{width:235px !important;overflow:hidden;margin-bottom: 5px;
 margin-top: 2px;}
.cerr{float:right;padding:7px;padding-right:20px}
.hm{visibility:hidden;position:absolute;height:0;margin-top:-10px;overflow:hidden;opacity:0;top:-34px;right:0;background:rgba(0,0,0,.8);padding:5px 10px;color:#fff;font-size:11px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}
#online_counter:hover span,#rules_chat:hover span,#setting_chat:hover span,.sound_on:hover span,.sound_off:hover span{opacity:1;height:auto;margin-top:0;visibility:visible}
#c_one_clon,#c_tell{position:absolute;top:-1500px;right:-15000px}
#setting_chat a,#rules_chat a,#sound_chat div{width:19px;height:16px;display:inline-block;opacity:.5;cursor:pointer}
#setting_chat a:hover,#rules_chat a:hover,#sound_chat div:hover{opacity:.9}
#setting_chat,#rules_chat,#sound_chat{float:right;margin-right:15px;margin-top:12px}
#setting_chat a{background:url(/chat_files/chat-sprite.png) 0 -23px no-repeat}
#rules_chat a{background:url(/chat_files/chat-sprite.png) -39px -21px no-repeat}
#sound_chat .sound_on{background:url(/chat_files/chat-sprite.png) -19px -21px no-repeat}
#sound_chat .sound_off{background:url(/chat_files/chat-sprite.png) -19px -35px no-repeat;display:none}
#online_counter{float:right;color:#FFF;margin-top:9px;margin-right:8px;padding:4px;padding-left:16px;background:url(/chat_files/chat-sprite.png) -32px 3px no-repeat;cursor:pointer;font-size:13px}
#bottom_chat span,#top_chat span{display:inline-block;width:17px}
#bottom_chat,#top_chat{text-align:left;padding:12px;color:#FFF;cursor:pointer;font-size:15px}
#bottom_chat,.chtt iframe{display:none}
.ngd{background:#141414; padding: 1px 10px 1px 10px;cursor:default}
.jspContainer{background:none!important}
.pdvr{float:right;opacity:1}
.msg:hover .pdvr{opacity:1}
.clkg{font-size:12px;padding:10px;background:#1f1f1f;-webkit-border-radius:0 0 3px 3px;-moz-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px;border: 0px solid #0f0f0f;}
.cs2{margin-top:3px;color:#E32F17;font-size:10px}
.cs1{margin-top:3px;color:#2B2B2B;font-size:10px}
.mchat{width:250px}

#mchatMsgF{margin:0!important;min-height:auto!important;width:348px;padding:0 10px!important;height:36px!important;padding-right:53px!important;border:0px solid #0f0f0f;background:#1f1f1f;-webkit-border-radius:0 0 3px 3px;-moz-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;color: #a5a7ab;}
#mchatBtn{position:absolute;top:-1200px;right:-1500px}
#mchatAjax{background:#646464;position:absolute;right:-200px}
.ch_sml{z-index:99999999;height:0;opacity:0;overflow:hidden;margin-top:-98px;right:0;position:absolute}
.ch_smlin{width:165px;height:80px;background:#070707;overflow:hidden;text-align:left;border:1px solid rgba(0,0,0,.2)}
.ch_smlin img{padding-left:3px;padding-top:3px;float:left;cursor:pointer}
.ch_smlin img:hover{opacity:.7}
.smile_in:hover .ch_sml{height:85px;opacity:1;margin-top:-78px}
.smile_in span{opacity:.5}
.smile_in span:hover{opacity:.8}
.smile_in{z-index:3;position:absolute;margin-left:315px}
.smile_in span{display:inline-block;margin-top:9px;cursor:pointer;width:19px;height:19px;background:url(/chat_files/smile_icon.png) 0px 0;opacity:.5; background-size: contain;}
.otbv,.otbv:hover{color:#6A6A6A}
.chatBubbles{display:table}
.chatRight,.cBubbleLeft,.cBubbleRight{display:table-cell;vertical-align:top}
.myBubble{margin-left: 15px;margin-top: 10px;}
.myBubble .cBubbleLeft{display:none}
.myBubble .chatRight{background:#1f1f1f !important;}
.myBubble .cBubbleRight{display:table-cell}
.myBubble .chatInner{width:200px} 
.chatRight{border:1px solid #111111;padding:10px;border-radius: 8px;}
.cBubbleLeft{position:relative}
 .cBubbleLeft span,.cBubbleRight span{/* background:url(/chat_files/chat-sprite.png); */ width:8px;height:10px;position:absolute;top:13px}
.cBubbleLeft span{background-position:0 0;right:-1px}
.cBubbleRight{display:none;position:relative}
.cBubbleRight .av{margin-left:10px;margin-right:0}
.cBubbleRight span{background-position:0 -14px;left:-1px}
#wrapper2{height: 300px !important;
 max-height: 300px;background:#141414;width:337px !important;overflow:auto}
#scroller{text-align:left;width:270px;padding:0}
#onlCountDate{display:none}
.jspContainer{overflow:hidden;position:relative;width: 335px !important;}
.jspPane{position:absolute; min-height: 101%;}
.jspVerticalBar{position:absolute;top:0;right:0;width:4px;margin-bottom:5px;height:100%;background:transparent}
.jspHorizontalBar{position:absolute;bottom:0;left:0;width:100%;height:4px;background:transparent}
.jspVerticalBar *,.jspHorizontalBar *{margin:0;padding:0}
.jspCap{display:none}
.jspHorizontalBar .jspCap{float:left}
.jspTrack{background:transparent;position:relative}
.jspDrag{background:rgb(52 55 61);position:relative;top:0;left:0;cursor:pointer}
.jspHorizontalBar .jspTrack,.jspHorizontalBar .jspDrag{float:left;height:100%}
.jspArrow{background:#50506d;text-indent:-20000px;display:block;cursor:pointer}
.jspArrow.jspDisabled{cursor:default;background:#80808d}
.jspVerticalBar .jspArrow{height:16px}
.jspHorizontalBar .jspArrow{width:16px;float:left;height:100%}
.jspVerticalBar .jspArrow:focus{outline:none}
.jspCorner{background:#eeeef4;float:left;height:100%}
.sb1,.sb2{padding:0 0px}
.msg+.msg{margin-top:9px}
img[rel="usm"]{height:19px;width:19px;vertical-align:middle}
/* Конец Мини-Чат */


/* Лого загрузки Preloader */
.preloader-sitetext {
 font-size: 22px;
 font-weight: bold;
 font-style: italic;
 color: #fff;
 text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
 overflow: hidden;
 white-space: nowrap;
 border-right: 2px solid #e81c5a;
 animation: typing 3s steps(30, end), blink-caret 0.75s step-end infinite;
 margin-bottom: 5px;
 max-width: max-content;
}


.preloader-desc {
 font-size: 12px;
 color: #aaa;
 text-transform: uppercase;
 letter-spacing: 1px;
 margin-bottom: 15px;
}

/* Анимация печати текста */
@keyframes typing {
 from { width: 0 }
 to { width: 100% }
}

/* Мигающий курсор */
@keyframes blink-caret {
 from, to { border-color: transparent }
 50% { border-color: #e81c5a }
}


 /* Блок шестерёнок */
.preloader-gears {
 position: relative;
 width: 70px;
 height: 70px;
 margin-bottom: 20px;
}

/* Общие стили для всех шестерёнок */
.preloader-gear {
 position: absolute;
 color: #e81c5a;
 animation-iteration-count: infinite;
 animation-timing-function: linear;
}

/* Большая шестерёнка */
.preloader-gear.big {
 font-size: 40px;
 left: -10px;
 top: 14px;
 animation: preloaderRotateRight 1.5s linear infinite;
 color: #fff;
}

/* Верхняя маленькая */
.preloader-gear.small.top {
 font-size: 28px;
 left: 20px;
 top: -5px;
 animation: preloaderRotateLeft 1.5s linear infinite;
}

/* Нижняя маленькая */
.preloader-gear.small.bottom {
 font-size: 28px;
 left: 29px;
 top: 28px;
 animation: preloaderRotateLeft 1.5s linear infinite;
}

/* Анимация вращения вправо */
@keyframes preloaderRotateRight {
 0% { transform: rotate(0deg); }
 100% { transform: rotate(360deg); }
}

/* Анимация вращения влево */
@keyframes preloaderRotateLeft {
 0% { transform: rotate(0deg); }
 100% { transform: rotate(-360deg); }
}
/* Конец Лого загрузки Preloader */


/* Оповещение ЛС */
#one_pm {
 position: fixed;
 right: 20px;
 bottom: 0px;
 cursor: pointer;
 font-family: 'PT Sans', sans-serif;
 z-index: 9999;
}


#hnp_sound {position:absolute;top:-1000px;left:-1000px}
#hnp_author span {display:none}
 .h_newpm {position:relative;width:350px;height:110px;margin-bottom:20px;background:#131313f0;box-shadow:0 0 12px rgba(0, 0, 0, 0.4);border:1px solid rgb(41 40 40 / 40%);-webkit-border-radius: 5px;-moz-border-radius: 5px;border-radius: 5px;}
.h_newpm #hnp_author {color:#e81c5a;font-weight:bold;text-decoration:none;}
.h_newpm #hnp_author:hover {color:#fff;text-decoration:underline}
.h_npin {padding:14px;padding-top:10px}
 .h_nptitle {color:#FFF;font-weight:bold;font-size:15px;padding-bottom:12px}
.h_npimg {width:57px;height:57px;overflow:hidden;-webkit-border-radius: 50%;-moz-border-radius: 50%;border-radius: 50%;border-radius: 50%;
 border: 2px solid #e81c5a;
 box-shadow: 0 0 10px #e81c5a;}
.h_npimg img {width:100%;-webkit-border-radius: 5px;-moz-border-radius: 5px;border-radius: 5px;}
.h_npl {position:absolute;left:13px;top:38px;z-index:3;width:70px}
.h_npr {position:absolute;left:84px;top:38px;z-index:3;color:#FFF;font-size:15px;padding-right:14px}
.h_npr #hnp_text, .h_npr #hnp_text:hover {display:block;text-decoration:none;color:#FFF}
.h_newpm:hover .h_del {display:inline-block;}
.h_del {position:absolute;display:none;top:12px;right:12px;z-index:3;cursor:pointer;background:url('/images/del023.png') 0px 0px;width:18px;height:18px}
.h_del:hover {background-position:0px 18px}
.h_nover {position:absolute;top:0px;left:0px;width:100%;height:100%;}
/* Конец Оповещение ЛС */



/* Стандартные уведомления сайта */
.site-notification {
 position: fixed;
 left: 50%;
 bottom: 40px;
 transform: translateX(-50%) translateY(20px);
 background: #1c1d1ff0;
 color: #f1f1f1;
 padding: 12px 16px;
 border-radius: 5px;
 font-size: 15px;
 font-family: 'Proxima Nova Rg', sans-serif;
 box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
 border: 1px solid rgb(41 40 40 / 40%); 
 opacity: 0;
 z-index: 20001;
 transition: opacity 0.4s ease, transform 0.4s ease;
 display: flex;
 align-items: center;
 gap: 12px;
 max-width: 90%;
 min-width: 280px;
 border-right: 3px solid transparent;
}

.site-notification.notify-show {
 opacity: 1;
 transform: translateX(-50%) translateY(0);
}

.site-notification.notify-hide {
 opacity: 0;
 transform: translateX(-50%) translateY(20px);
}

.site-notification-icon {
 width: 18px;
 height: 18px;
 display: flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
}

.site-notification-icon img {
 width: 18px;
 height: 18px;
 object-fit: contain;
 display: block;
}

.site-notification-text {
 display: flex;
 align-items: center;
 line-height: 1.4;
}
 
 
 .site-notification-wrapper {
 display: flex;
 flex-direction: column;
 gap: 4px;
}

.site-notification-title {
 font-weight: 600;
 font-size: 13px;
 color: #ffc800;
 line-height: 1;
 text-transform: uppercase;
 letter-spacing: 0.3px;
 margin-top: 1px;
}

.site-notification-close {
 margin-left: auto;
 font-size: 16px;
 color: #ccc;
 cursor: pointer;
 transition: color 0.3s ease;
 flex-shrink: 0;
}

.site-notification-close:hover {
 color: #fff;
}
.site-notification.type-warn .site-notification-title {
 color: #ffc107;
}
.site-notification.type-error .site-notification-title {
 color: #ff4d4d;
}
.site-notification.type-success .site-notification-title {
 color: #28a745;
}
.site-notification.type-mmc .site-notification-title {
 color: #e81c5a;
}

/* Конец Стандартные уведомления сайта */

/* Глобальное уведомление от админа */
site-notification-close {
 margin-left: auto;
 font-size: 16px;
 color: #ccc;
 cursor: pointer;
 transition: color 0.3s ease;
}

.site-notification-close:hover {
 color: #fff;
}
/* Конец Глобальное уведомление от админа */

/* Кастомный Title */
#custom-tooltip {
 position: fixed;
 background: rgba(20, 20, 20, 0.95);
 color: #fff;
 padding: 8px 12px;
 border-radius: 8px;
 border: 1px solid rgba(255, 255, 255, 0.05); 
 font-size: 14px;
 font-weight: 500;
 box-shadow: 0px 0px 8px rgba(0,0,0,0.5);
 z-index: 11000;
 pointer-events: none;
 max-width: 220px;
 word-break: break-word;
 text-align: center;
 opacity: 0;
 transition: opacity 0.2s ease, transform 0.2s ease;
}
/* Конец Кастомный Title */


/* Реакции */
.card-reaction-btn.reaction-inactive {
 opacity: 0.4;
}

/* Анимация выбора реакции */
@keyframes reactionBounce {
 0% { transform: scale(1); }
 30% { transform: scale(1.25); }
 60% { transform: scale(0.9); }
 100% { transform: scale(1); }
}

.reaction-animate {
 animation: reactionBounce 0.4s ease;
}
.reaction-emoji {
 width: 18px !important;
 height: 18px !important;
 object-fit: contain !important;
 margin-right: 4px !important;
 vertical-align: middle !important;
}

.card-reactions {
 display: flex;
 justify-content: flex-start;
 align-items: center;
 flex-wrap: wrap;
 gap: 6px;
 margin-top: 15px; /* вместо 8px сделаем например 12px */
 margin-bottom: 10px;
 font-size: 14px;
}

.card-reaction-btn {
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 2px 8px;
 font-size: 14px;
 color: #ccc;
 cursor: pointer;
 background-color: rgba(255, 255, 255, 0.05);
 border-radius: 18px;
 transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
 min-height: 24px;
 box-sizing: border-box;
}

.card-reaction-btn:hover {
 background-color: rgba(255, 255, 255, 0.1);
}

.card-reaction-btn:active {
 animation: bounceTap 0.35s ease;
}

.card-reaction-count {
 margin-left: 4px;
 font-size: 12px;
 color: #aaa;
}

/* Когда реакция не активна (счётчик = 0) */
.card-reaction-btn.reaction-inactive {
 opacity: 0.4;
}

.card-reaction-btn.card-reaction-selected {
 background-color: rgba(232, 28, 90, 0.15);
 color: #fff;
}

@keyframes bounceTap {
 0% { transform: scale(1); }
 25% { transform: scale(1.15); }
 50% { transform: scale(0.95); }
 75% { transform: scale(1.05); }
 100% { transform: scale(1); }
}


/* Контейнер для взрыва эмодзи */
#emoji-explosion {
 position: fixed;
 bottom: 0;
 left: 0;
 width: 100%;
 pointer-events: none;
 overflow: visible;
 z-index: 9999;
}

/* Стиль каждой эмодзи */
.emoji-particle {
 position: absolute;
 bottom: 0;
 will-change: transform, opacity;
 opacity: 1;
 transition: transform 2.5s ease-out, opacity 2.5s ease-out;
}

@keyframes floatUp {
 0% {
 transform: translateY(0) scale(1);
 opacity: 1;
 }
 100% {
 transform: translateY(-150px) scale(0.5);
 opacity: 0;
 }
}

.emoji-burst {
 position: fixed;
 width: 24px;
 height: 24px;
 z-index: 9999;
 pointer-events: none;
 transform: translate(0, 0);
 transition: transform 1.5s ease-out, opacity 1.5s ease-out;
}

/* Контейнер взрыва эмодзи */
#emoji-explosion {
 position: fixed;
 bottom: 0;
 left: 0;
 width: 100%;
 pointer-events: none;
 overflow: visible;
 z-index: 9999;
}

/* Стиль каждой летающей эмодзи */
.emoji-particle {
 position: absolute;
 bottom: 0;
 will-change: transform, opacity;
 opacity: 1;
 transition: opacity 1s ease;
}
/* Конец Реакции */


/* Картинка-видео фиксированный */
.download-buttonkart {
 display: inline-block;
 background-color: #e81c5a;
 color: #fff;
 padding: 5px 12px;
 border-radius: 14px;
 font-size: 13px;
 text-decoration: none;
 transition: background 0.3s ease, transform 0.2s ease;
 box-shadow: 0 4px 10px rgba(232, 28, 90, 0.3);

}

.download-buttonkart:hover {
 background-color: #c4164c;
 transform: translateY(-2px);
 box-shadow: 0 6px 14px rgba(232, 28, 90, 0.5);
}
.category-label {
 font-size: 12px;
 color: #fff;
 background: #e81c5a;
 padding: 4px 10px;
 border-radius: 10px;
 display: inline-block;
 margin-bottom: 5px;
}

.category-label i {
 margin-right: 6px;
}
 
 .favorite-badge {
 position: absolute;
 top: 133px;
 left: 15px;
 background: rgb(33 163 255 / 80%);
 border-radius: 50%;
 padding: 5px 10px;
 cursor: pointer;
 z-index: 9;
 
 transform: scale(1);
 transition: transform 0.3s ease, background 0.3s ease;
}

.favorite-badge:hover {
 background: rgb(33 163 255 / 100%);
 transform: scale(1.1);
}

.favorite-badge i {
 color: #fff;
 font-size: 14px;
}

.update-badge-absolute {
 position: absolute;
 top: 15px;
 right: 15px;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 background: linear-gradient(135deg, #6f00ff 0%, #bb6aff 100%);
 color: #ffffff;
 border: 1px solid rgba(187, 106, 255, 0.4);
 font-size: 16px;
 padding: 6px;
 border-radius: 50%;
 box-shadow: 0 0 8px rgba(187, 106, 255, 0.4);
 cursor: help;
 z-index: 5;

 transform: scale(1);
 transition: transform 0.3s ease, background 0.3s ease;
}

.update-badge-absolute:hover {
 background: linear-gradient(135deg, #bb6aff 0%, #6f00ff 100%);
 transform: scale(1.1);
}

.update-badge-absolute i {
 animation: spin 2s linear infinite;
 /* Никакого transform здесь! */
}

@keyframes spin {
 0% { transform: rotate(0deg); }
 100% { transform: rotate(360deg); }
}

 
 
 /* Плавность для исчезновения и появления */
.category-label,
.info-container,
.new-badge,
.locked-badge, 
.caption,
.update-badge-absolute {
 transition: 
 opacity 0.4s ease,
 transform 0.4s ease;

}

/* Когда скрывается */
.hide-element {
 opacity: 0;
 transform: translateY(10px); /* Плавный спуск вниз при скрытии */
 pointer-events: none;
}

/* Когда появляется */
.show-element {
 opacity: 1;
 transform: translateY(0);
}
 
 /* Вид материала под иконка пароля */
/* Улучшенный стиль замка */
.locked-badge {
 position: absolute;
 top: 90px;
 left: 15px;
 background: linear-gradient(135deg, #6f00ff, #0099ff);
 color: #fff;
 padding: 8px;
 border-radius: 50%;
 font-size: 16px;
 z-index: 10;
 display: flex;
 align-items: center;
 justify-content: center;
 box-shadow: 0 0 10px rgba(111, 0, 255, 0.5), 0 0 20px rgba(0, 153, 255, 0.3);
 transform: translateY(0) scale(1);
 transition: transform 0.3s ease, opacity 0.3s ease;
 cursor: help;
}

.locked-badge:hover {
 transform: translateY(0) scale(1.1);
 background: linear-gradient(135deg, #0099ff, #6f00ff);
 box-shadow: 0 0 15px rgba(0, 153, 255, 0.6), 0 0 25px rgba(111, 0, 255, 0.4);
}

.sticky-active {
 position: fixed;
 top: 96px;
 z-index: 5000;
 background: #000000db;
 padding: 10px 20px;
 box-shadow: 0 4px 10px rgba(0,0,0,0.4);
 border-radius: 0px;
border-bottom-left-radius: 10px;
 border-bottom-right-radius: 10px; 
 width: auto; /* будет управляться JS */
}

.menu-placeholder {
 height: 0px;
}
/* Конец Картинка-видео фиксированный */

.popup-alert {
 background: #1e1e1e;
 color: #fff;
 padding: 15px;
 border-left: 4px solid #e81c5a;
 position: fixed;
 bottom: 20px;
 right: 20px;
 max-width: 300px;
 border-radius: 6px;
 box-shadow: 0 0 10px rgba(0,0,0,0.4);
 z-index: 9999;
 animation: fadeIn 0.5s ease-out;
}
.popup-alert a {
 color: #e81c5a;
 text-decoration: underline;
 font-weight: bold;
}

@keyframes fadeIn {
 from { opacity: 0; transform: translateY(20px); }
 to { opacity: 1; transform: translateY(0); }
}


/* Начало правого сайдбара*/
.right-sidebar-toggle {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: #e81c5a;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px #e81c5a;
  transition: box-shadow 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}


.right-sidebar-toggle:hover {
  box-shadow: 0 0 20px #ff4d80, 0 0 30px #ff4d80;
    transform: translateY(-50%) scale(1.1);
}


.right-sidebar {
  position: fixed;
  top: 0;
  right: -370px; /* скрыт за экраном */
  width: 370px;
  height: 100%;
  background: #1a1a1a;
  color: #fff;
  box-shadow: -2px 0 8px rgba(0,0,0,0.5);
  z-index: 10000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.right-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #111;
  border-bottom: 1px solid #333;
	position: sticky;
    top: 0;
    z-index: 1;
    font-weight: bold;
    font-size: 18px;
}

.right-sidebar-content {
  padding: 15px;
  overflow-y: auto;
  flex-grow: 1;
}

.close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

    
    .web_now:nth-of-type(odd) .web_now_ava {float: right;} 
.circle {border-radius: 50%;} 
.web_now_ava {height: 57px;width: 57px;border: 4px solid #e81c5a;
 box-shadow: 0 0 10px #e81c5a;overflow: hidden;float: left;margin-top: 5px;} 
.web_now_ava img {width: 110%;min-height: 112%; margin-top: -3px;margin-left: -2px;} 
.web_now {position: relative;display: block;margin-bottom: 15px; background: #111111;
 padding: 15px;
 border-radius: 15px;box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);} 
.web_now_ava {height: 57px;width: 57px;border: 3px solid #e81c5a;
 box-shadow: 0 0 10px #e81c5a;overflow: hidden;float: left;margin-top: 5px;} 

.web_now:nth-of-type(even) 
.web_now_body {margin-left: 75px;margin-top: 12px;} 
.web_now:nth-of-type(odd) 
.web_now_body {padding-right: 5px;margin-top: 12px;display: block;} 
.web_now_body_top {margin-bottom: 8px;padding:0 5px;line-height: 22px;white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 229px;} 
.web_now_body_top a.comm-user {
  color: #88c3ff;
  font-size: 14px;
  transition: color 0.3s ease;
}

.web_now_body_top a.comm-user:hover {
  color: #fff;

}

    
.web_now_date {color: #bfbfbf;float: right;font-size: 10px;margin-top: 2px;} 
.web_now_body_top a.fa {margin-left: -14px;font-size: 16px;opacity: 0;visibility: hidden;transition:all 0.3s ease 0s;color: #d8d8d8;margin-top: 5px;} 
.web_now_body_top a.fa:hover {color: #5bc4f3;} 
.web_now_body_container {position: relative;} 
.web_now_body_mess {background: #2e2e2f;border-radius: 5px;padding: 8px 12px 10px;color: #a5a7ab;font-size: 14px;line-height: 18px;z-index: 0;display: block;font-family: 'Exo 2', sans-serif;font-style: italic;font-weight: 300;} 
.web_now_body_comment {max-height: 55px;overflow: hidden;} 
.web_now_body_comment a {color: #3BAFDA} 
.web_now:nth-of-type(even) .web_now_body .web_now_body_container span.comm_sprt{background: url(/images/comm_sprt_l.png) no-repeat 0px 0px;width: 25px;height: 17px;display: block;position: absolute;left: -8px;top: 8px;} 
.web_now:nth-of-type(odd) .web_now_body .web_now_body_container span.comm_sprt{background: url(/images/comm_sprt_r.png) no-repeat 0px 0px;width: 25px;height: 17px;display: block;position: absolute;right: -22px;top: 8px;} 
.web_now:nth-of-type(odd) .web_now_ava {float: right;} 
.web_now:nth-of-type(odd) .web_now_body {margin-right: 70px;} 



/* Цвет для Администратора (ID 1) */
.devstormx {
 color: red !important; 
 background: url(/images/UserGroupMarks/admin.gif) no-repeat 1px center; 
 padding-left: 16px;
}

.limited-text {
  max-width: 31ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
	font-weight: bold;
	color: #e81c5a;
	transition: 0.3s all;
}
    
    .limited-text:hover {
	color: #fff;
	transition: 0.3s all;
    }
/* Конец правого сайдбара */