#emoji-captcha {
            position: relative;
            max-width: 375px;
            margin: 20px auto;
            transition: width .2s;
        }
        .border {
            border: solid 1px rgb(var(--border), .1);
        }
        .post-word{
            overflow-wrap: break-word;
            word-break: break-word;
        }
        .transparent-input{
            border: none;
            min-height: 50px;
            max-height: 200px; /* ограничение по высоте */
            overflow-y: auto;  /* скролл, если контент выходит за пределы */
            padding-left: 0;
            margin-bottom: 0;
         }
        .ya-input::-webkit-scrollbar {
          width: 8px;
        }
        .ya-input::-webkit-scrollbar-track {
          background: transparent; /* или rgba(255,255,255,0.05) */
        }
        
        .ya-input::-webkit-scrollbar-thumb {
          background-color: rgba(255,255,255,0.2);
          border-radius: 10px;
          border: 2px solid transparent;
          background-clip: content-box;
        }
        
        .ya-input::-webkit-scrollbar-thumb:hover {
          background-color: rgba(255,255,255,0.4);
        }
        .transparent-input:focus{
            background: transparent!important;
        }
        .btn-new{
            padding: 8px 16px;
            font-size: 14px;
            transition: all 0.3s;
            text-transform: lowercase;
        }
        .btn-new:hover {
            transform: translateY(-2px);
        }
        .tab{
            color: #fff;
            text-decoration: none!important;
            background: transparent;
            padding: 10px 20px!important;
            border-radius: 20px;
            transition: background .3s;
        }
        .active-tab, .tab:hover{
            background: rgb(var(--bg-secondary));
        }
        .fs-small{
            font-size: 14px!important;
        }
        .nav__link{
            padding: 10px 20px;
        }
        #captcha-emojis {
            display: flex;
            justify-content: space-evenly;
            align-items: center;
        }
        .rounded-sm{
            border-radius: .4rem;
        }
        .p-sm{
            padding: 4px 9px;
        }
        .bg-icon{
            background: #000;
            display: inline-block;
              width: 24px;
              height: 24px;
              border-radius: 50%;
              line-height: 24px;
              text-align: center;
              font-size: 10px;
              transition: all .3s;
        }
        .bg-icon:hover{
            background: white;
            color: #000;
            transform: translateY(-2px);
        }
        .bg-danger{
            background: var(--text-danger);
        }
        .n-nav {
            padding: 20px 40px;
        }
        .white-btn{
            font-size: .8rem;
            color: #000;
            background: #fff;
            padding: 2px 10px;
            border-radius: .5rem;
        }
        
.image-container div{
    transition: opacity 0.3s ease;
}
.image-container:hover div {
  opacity: 0.3;
}
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); }
    .modal img { max-width: 90%; max-height: 90%; margin: 5% auto; display: block; }
.image-container div:hover {
  opacity: 1;
}
        html {
          -webkit-text-size-adjust: 100%; /* iOS Safari */
          -ms-text-size-adjust: 100%;     /* старые IE/Edge */
        }
        .rounded-50{
            border-radius: 50%;
            padding: 2px;
            display: inline-flex;
        }
        .position-absolute{
            position: absolute;
        }
        .place{
            width: 840px;
        }
        
        :root, [data-theme="nvidia"] {
    --body-color: 5,5,5;
    --accent: 204,133,244; 
    --bg-secondary: 15,15,15;
    --bg-secondary-2: 30,30,30;
    --border: 200,200,200;
    --accent-premium: 220,220,220;
    --text-muted: #787878;
}
        .underline{
            text-decoration: underline;
        }
        .accent-premium{
            color: rgb(var(--accent-premium));
        }
.tab, button {
  user-select: none;
}
.n-footer, .n-body{
    zoom: 1.3;
}
@media (pointer:none), (pointer:coarse) {
            .n-body{
                padding: 0px 10px 0px;
                zoom: 1;
            }
            .n-footer{
                zoom: 1;
            }
        }
    
.btn, .button, .ya-input{
    border-radius: 1rem;
}
.gradient-text {
  background: linear-gradient(
    to right,
    #B4D2FF 0%,
    rgb(204,133,244) 50%,
    #B478FF 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.mention {
    color: rgb(var(--accent));
    font-weight: bold;
    text-decoration: none;
}
.menu-btn, .icon-text{
    font-family: 'wakuu';
}
.social-btn{
    width: 28px;
    height: 28px;
    border-radius: 50%;
    line-height: 28px;
    text-align: center;
    font-size: 14px;
    display: inline-block;
    transition: all .3s;
}
.another-btn:hover, .another-btn-active{
    color: rgb(204, 204, 255)!important;
    background: rgba(204, 204, 255, .2);
}
.like-btn:hover, .like-btn-active{
    color: rgb(246, 100, 175)!important;
    background: rgba(246, 100, 175, .2);
}
.comment-btn:hover{
    color: rgb(34, 113, 179)!important;
    background: rgba(34, 113, 179, .2);
}
.repost-btn:hover{
    color: rgb(204,255,0)!important;
    background: rgba(204,255,0, .2);
}
.complain-btn:hover{
    color: rgb(255, 64, 64)!important;
    background: rgba(255, 64, 64, .2);
}
.has-tooltip {
    position: relative;
}

.has-tooltip::after {
    content: attr(tooltip-data);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(40,40,40);
    color: #fff;
    padding: 1px 17px;
    border-radius: 10px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 10;
    font-family: 'CourierEth';
}
.nav-4{
    gap: 4px;
}
.has-tooltip:hover::after {
    opacity: 1;
}
@font-face {
    font-family: 'wakuu';
    src: url('/fonts/web13.eot');
    src: url('/fonts/web13.eot?#iefix') format('embedded-opentype'),
         url('/fonts/web13.woff') format('woff'),
         url('/fonts/web13.ttf') format('truetype'),
         url('/fonts/web13.svg#web') format('svg');
    font-weight: normal;
    font-style: normal;
}

#copy-data::after {
  content: "L";
  font-family: "wakuu", sans-serif;
  padding-left: 6px;
  font-size: .5rem;
}

.typewriter {
  font-family: 'CourierEth';
}
@media only screen and (max-width: 800px) {
    .pc-100 {
        width: 100% !important;
    }
    .p-4 {
        padding: 2rem;
    }
    .p-fix{
        padding: .5rem;
    }
}

.custom-modal{
    zoom: 1.2;
}
.my-2{
    margin-top: 20px;
    margin-bottom: 20px;
}
@font-face {
    font-family: 'CourierEth'; /* ← это ты сам придумываешь */
    src: url('/fonts/CourierNewBold.woff2') format('woff2');
    
}
*{
    font-family: 'CourierEth';
    
    font-weight: 400!important;
    line-height: 1.4;
}

.icon-text, #copy-data::after{
    text-transform: initial;
}
.classic-btn{
    outline: none;
    border: none;
    padding: 6px 26px;
    border-radius: .5rem;
    background: rgb(var(--accent));
    transition: background .3s;
}

.classic-btn:hover{
    background: #fff;
}

a:hover{
    /*text-decoration: underline;*/
    color: #fff;
}
.item:hover{
    background: transparent;
}
.n-footer{
    border-top: solid 1px rgb(var(--border), .04);
}
.ya-input{
    background: transparent!important;
}
.n-body{
    padding-top: 50px;
}
hrv{
    height: .5px!important;
}
.n-content {
    padding-top: 2rem;
}
.border-bottom{
    border-bottom: solid 1px rgb(var(--border), .07);
}
.dropdown-trigger {
            position: relative;
            display: inline-block;
        }
        
        .dropdownMenu {
            display: none;
            position: absolute;
            left: 0;
            top: 40px;
            background: rgb(var(--bg-secondary-2));
            border-radius: 20px;
            color: #fff;
            padding: 10px;
            z-index: 1000;
            width: max-content;
        }
        #image-preview-container img{
            margin-bottom: 6px;
        }
        .dropdownMenu.show {
            display: block;
        }
        
        .dropdownMenu ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .dropdownMenu li {
            padding: 6px 14px;
        }
        
        .dropdownMenu a:hover {
            color: rgb(var(--accent));
        }
        
        .dropdownMenu a {
            text-decoration: none;
            color: #fff;
            display: block;
            transition: color .3s;
        }
        #mention-box {
        position: absolute;
        max-height: 150px;
        overflow-y: auto;
        top: 0;
        background: #000;
    }
    .mention-item {
        padding: 6px 10px;
        cursor: pointer;
    }
    
    .mention-item:hover {
        background-color: rgb(var(--bg-secondary-2));
    }