body {
    color: rgb(var(--color-1));
    background: rgb(var(--body-color));
    background-attachment: fixed;
    position: relative !important;
}

@font-face {
    font-family: 'wakuu';
    src: url('/fonts/wakuu.eot');
    src: url('/fonts/wakuu.eot?#iefix') format('embedded-opentype'),
        url('/fonts/wakuu.woff') format('woff'),
        url('/fonts/wakuu.ttf') format('truetype'),
        url('/fonts/wakuu.svg#wakuu') format('svg');
    font-weight: normal;
    font-style: normal;
}

@media (min-width: 1024px) and (pointer: fine) {

    /* Условие для ПК */
    body {
        zoom: 1.25;
    }
}
.item{
        padding: 10px 20px;
        border-radius: 16px;
        width: 100%;
    }
    .item:hover{
        background: #0A132B;
    }
.nav-link {
    color: rgb(160, 160, 160);
    transition: all .4s;
    width: fit-content;
}

.colored{
    background-image: linear-gradient(to right, #ee6ef5, #57b9ff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.nav-link:hover {
    color: rgb(var(--color-1));
}

.fixed {
    left: 50%;
    transform: translateX(-50%);
}

.sidebar {
    width: 70px;
    height: 100%;
    display: flex;
    position: fixed;
    top: 0;
}

hr {
    opacity: 0;
}

.w-45 {
    width: 45%;
}

.content-view {
    z-index: 300;
    position: absolute;
    width: 100%;
    height: 100%;
}

.nav-sticky {
    position: sticky;
    top: 0;
    transition: all .3s;
}

.active-nav {
    background: rgb(var(--bg-secondary-2), .8);
    backdrop-filter: blur(10px);
    padding: 22px;
    z-index: 99999;
}
.menu-btn{
    font-size: 22px;
}
a {
    color: var(--link-color);
    transition: color 0.3s;
}

.link {
    color: rgb(var(--accent));
    background: transparent;
    padding: 10px 16px;
    border-radius: 16px;
    transition: background .4s;
}

.link:hover {
    color: rgb(var(--accent));
    background: rgb(var(--accent), .1);
}

.nav {
    gap: 14px;
}

* {
    text-wrap: balance;
    font-family: "Nunito";
    font-weight: 600 !important;
    -webkit-tap-highlight-color: transparent;
}

@font-face {
    font-family: 'Nunito';
    src: url('/Nunito-Black.woff2') format('woff2'),
        url('/Nunito-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

.right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.rounded-left {
    border-radius: 16px 0px 0px 16px;
}

.shadow {
    box-shadow: 3px 0px 0px 0px rgba(0, 0, 0, 0.06) !important;
}

.rounded-right {
    border-radius: 0px 16px 16px 0px;
}

.alert {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 200px;
    z-index: 100;
    list-style-type: none;
}

.banner {
    width: 100%;
    height: 150px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.px-2 {
    padding: 0rem 30px;
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 5px;
    background-color: #0994FD;
    width: 0;
    z-index: 9999;
}

[data-animate] {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

[data-animate].visible {
    opacity: 1;
}

.text-end {
    text-align: right;
}

.text-center {
    text-align: center;
}

.bg-gradient {
    background: var(--bg-gradient);
}

.align-items-right {
    align-items: flex-end;
}

.hidden-text {
    filter: blur(4px);
}

input {
    height: 50px;
}

::placeholder {
    color: var(--text-muted) !important;
}

body {
    color: var(--text-white);
    margin: 0;
}

.overflow {
    overflow: auto;
}

.content-div {
    z-index: 3;
    flex: 1 0 auto;
}

[data-tooltip] {
    position: relative;
    cursor: pointer;
}

[data-tooltip]::after,
[data-tooltip]::before {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    z-index: 6;
}

/*[data-tooltip]::after {*/
/*    content: attr(data-tooltip);*/
/*    background: #0C1321;*/
/*    color: var(--text-white);*/
/*    padding: 8px 12px;*/
/*    border-radius: 6px;*/
/*    white-space: nowrap;*/
/*    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
/*    top: 50%;*/
/*    left: 100%;*/
/*    transform: translateY(-50%);*/
/*}*/

[data-tooltip]::before {
    content: '';
    border-style: solid;
    border-width: 6px;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border-color: transparent transparent transparent #333;
}

[data-tooltip]:hover::after,
[data-tooltip]:hover::before {
    visibility: visible;
    opacity: 1;
}

.text-right {
    text-align: right;
}

.flex-column {
    flex-direction: column;
}

ul,
ol {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.text-success {
    color: var(--text-success);
}

.pointer {
    cursor: pointer;
}

.footer-div {
    width: 100%;
    flex-shrink: 0;
}

.elem {
    margin-left: 20px;
}

.elem:first-child {
    margin-left: 0;
}

a,
.accent {
    color: rgb(var(--accent));
}

a {
    transition: color .3s;
}

.bg-secondary {
    background: var(--bg-secondary);
}

.bg-secondary-2 {
    background: rgb(var(--bg-secondary-2));
    -webkit-box-shadow: 3px 3px 0px 3px rgba(var(--bg-secondary), 0.2);
    -moz-box-shadow: 3px 3px 0px 3px rgba(var(--bg-secondary), 0.2);
    box-shadow: 3px 3px 0px 2px rgba(var(--bg-secondary), 0.2);
}

.nav {
    gap: 20px;
}

.nav-2 {
    gap: 30px;
}

.bg-accent {
    background: rgb(var(--accent));
}

.border {
    border: solid 1px rgb(var(--border));
}

.py-1 {
    padding-top: .3rem;
    padding-bottom: .3rem;
}

.btn {
    color: #fff!important;
    background: rgb(var(--accent));
    border-radius: 10px;
    outline: none;
    padding: 10px 20px;
    border: none;
    transition: 0.3s all;
    max-width: 100%;
    cursor: pointer;
}


.pin-right {
    position: absolute;
    right: 0;
    padding: 1.2rem;
}

.p-4 {
    padding: 2rem;
}

.btn:hover {
    color: rgb(var(--accent)) !important;
    transform: scale(0.95);
}

@media only screen and (min-width: 800px) {
    .mobile-only {
        display: none !important;
    }
}

@media only screen and (max-width: 800px) {
    body {
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .pc-only {
        display: none !important;
    }

    .pc-100 {
        width: 100% !important;
    }
}

.mobile-bar {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.left-margin {
    margin-left: 90px;
}

.text-muted {
    color: var(--text-muted) !important;
}

.avatar {
    padding: 3px;
    border: solid 3px rgb(var(--border));
    transition: border .3s;
}

.ride-top {
    position: absolute;
    top: -50%;
}

.py-3 {
    padding-top: 4rem;
}

.px-1 {
    padding: 0rem 5px;
}

footer.fixed {
    position: absolute;
    bottom: 0;
}

h4 {
    margin: 0 !important;
}

.pt-1 {
    padding-top: 1rem;
}

.py-2 {
    padding: 2rem 0px;
}

.pb-2 {
    padding-bottom: 2rem;
}

.w-10 {
    min-width: 20%;
    max-width: 20%;
}

.w-90 {
    width: 80%;
}

h1,
h3,
h2,
p {
    margin: 0;
}

.m-0 {
    margin: 0;
}

.rounded-circle {
    border-radius: 50%;
}

a {
    text-decoration: none;
}

.p-3 {
    padding: 1.2rem;
}

.p-1 {
    padding: .2rem;
}

.abs-center {
    position: absolute;
    top: 30%;
    transform: translateY(-30%);
}

.rounded {
    border-radius: 1.6rem;
}

.btn-secondary {
    background: transparent;
    border: solid 2px rgb(var(--border));
    transition: border .3s;
}

.btn-secondary:hover {
    border-color: rgb(var(--accent));
}

@keyframes fill {
    to {
        width: 100%;
    }
}

.fs-big {
    font-size: 2.4rem;
}

.w-75 {
    width: 75%;
}

.mt-2 {
    margin-top: .6rem;
}

.mt-3 {
    margin-top: 1.2rem;
}

.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-center {
    justify-content: center !important;
}

.position-relative {
    position: relative !important;
}

.align-items-center {
    align-items: center !important;
}

*,
::after,
::before {
    box-sizing: border-box;
}

.w-25 {
    width: 25%;
}

.w-50 {
    width: 50%;
}

.w-100 {
    width: 100%;
}

.place {
    width: 800px;
}

.w-right {
    width: 90%;
}

.w-30 {
    width: 30%;
}

.w-content {
    width: max-content;
}

.text-danger {
    color: var(--text-danger);
}

.fw-900 {
    font-weight: 900;
}

.fs-small {
    font-size: 14px !important;
}

.text-break {
    word-break: break-all;
}

#backdrop {
    background: rgba(0, 0, 0, .4);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
}

.show {
    display: block;
}

.pos-center {
    margin: 0 auto;
}

.p-2 {
    padding: 14px;
}

.text-start {
    text-align: left;
}

html,
body {
    height: 100%;
}
hr {
    height: 1px;
    border: none;
    margin-bottom: 20px;
    margin-top: 20px;
    position: relative;
}

label {
    cursor: pointer;
}

#fileInput {
    opacity: 0;
    position: absolute;
    z-index: -1;
}

input {
    color-scheme: dark;
}

.w-70 {
    width: 70%;
}

.text-white {
    color: var(--text-white);
}

.mb-1 {
    margin-bottom: 10px;
}

@keyframes glow {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

.active {
    position: relative;
}

.rounded-top {
    border-radius: 16px 16px 0px 0px;
}

.rounded-bottom {
    border-radius: 0px 0px 16px 16px;
}

.mb-3 {
    margin-bottom: 1rem;
}

.column {
    display: inline-flex;
    gap: 26px;
}

.main-container {
    padding-top: 30px;
    width: 770px;
    padding-left: 70px;
    padding-bottom: 30px;
}

.place-2 {
    width: 1000px;
}

.flex-reverse {
    flex-direction: row-reverse;
}

.menu-btn {
    padding-right: 0px;
}

a {
    width: fit-content;
}

textarea {
    resize: none;
}

@media only screen and (max-width: 800px) {
    .main-container {
        padding: 10px;
    }
}

.ya-input {
    background: rgb(var(--bg-secondary));
    font-size: 18px;
    margin: 10px 0px;
    border: none;
    outline: none;
    padding: 10px 20px;
    border-radius: 16px;
    transition: all .4s;
    width: 100%;
    color: rgb(var(--color-1));
}
    
.post {
    background: rgb(var(--bg-secondary-2));
    border: none;
    transition: all .4s;
}

.ya-input:focus,
.post:hover {
    background: rgba(var(--bg-secondary), .4);
}

.bg-gradient {
    background: linear-gradient(to right, #0074F1, #1780F1);
}

.faq-item:hover {
    background: rgb(var(--bg-secondary-2));
}

.faq-item {
    transition: background .3s;
}

.flex-column {
    flex-direction: column;
}

.menu-btn,
.icon-text {
    font-family: 'wakuu' !important;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.column-left,
.column-right {
    padding: 20px;
}

.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: solid 4px rgba(var(--accent), 0.6);
    pointer-events: none;
}

.pin-input {
    letter-spacing: 20px;
    text-align: center;
}

:root {
            --body-color: 4,4,10; /* Глубокий, почти абсолютный черный */
            --color-1: 250, 250, 250;
            --accent: 37,137,207; /* Кислотно-розовый для контраста */
            --border: 25, 25, 30; /* Темнее, чтобы не выделялось слишком сильно */
            --text-muted: #7C7C7C; /* Ещё мягче, чтобы не бросался в глаза */
            --text-success: #2DAC2D;
            --text-danger: #FF453A;
            --text-white: #fff;
            --bg-secondary: 7,12,31; /* Затемнил, теперь не будет сливаться */
            --bg-secondary-2: 10,10,24; /* Тоже затемнил для баланса */
            --link-color: 195,219,59; /* Оставил таким же */
        }
        .main-container{
            padding-left: 0;
            width: 600px;
        }
        .a {
            text-decoration: underline;
        }
        .nav-link{
            /*color: rgb(154,199,255);*/
        }
        .rounded-circle{
            border: solid 3px rgb(var(--accent));
            padding: 2px;
        }
        .banner{
            background: rgb(var(--bg-secondary));
            color: #fff;
            border-radius: 8px;
            padding: 2px 8px;
        }
        .btn{
            color: #fff!important;
            padding: 8px 20px;
        }
        @media (min-width: 1024px) and (pointer: fine) {
    body{
        zoom: 1.5;
    }
}
    .post:hover{
        background: rgb(var(--bg-secondary));
    }
.bg-secondary{
    background: rgb(var(--bg-secondary));
}