@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
    --default-color: #1a5f3f;
    --default-lighten-color: #2ecc71;
    --default-catifsh-color: rgb(0, 0, 0);
    --default-header-color: #0d3d26;
    --default-footer-color: #0a2f1f;
    --btn-text: #fff;
    --dark-bg-color: #0a2f1f;
    --cms-page-dir-sign: 1;
}

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

li, ol, ol[class], ul, ul[class] {
    margin: 0;
    padding: 0
}

blockquote, body, dd, dl, figcaption, figure, h1, h2, h3, h4, li, ol[class], p, ul[class] {
    margin: 0
}

body {
    line-height: 1.5;
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    background-color: #161c24;
}

/* Стили блокировки скролла удалены */

li, ol[class], ul[class] {
    list-style: none
}

a {
    text-decoration: none
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto
}

img {
    display: block;
    max-width: 100%
}

button, input, select, textarea {
    border: none;
    font: inherit
}

[role=button], button {
    cursor: pointer
}

@media (prefers-reduced-motion:reduce) {
    * {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important
    }
}

body {
    background: #161c24;
    color: rgb(255, 255, 255);
    font-family: "Ubuntu", sans-serif;
    font-size: 16px;
    letter-spacing: .5px;
    line-height: 1.4
}

@media (max-width:768px) {
    body {
        font-size: 14px;
        overflow-x: hidden
    }
}

.container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1220px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

.header > .container {
    max-width: 100%;
}

.header {
    background: #161c24;
    padding: 15px 0;
    position: relative;
    z-index: 1000;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
}

.header-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    min-height: 50px;
}

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo__link {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

.header-logo__img {
    height: auto;
    width: auto;
    max-width: 200px;
    display: block;
    vertical-align: middle;
}

.header-logo__text {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.header-logo__leaf {
    color: #2ecc71;
    position: relative;
}

.header-search {
    flex: 1;
    max-width: 400px;
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.header-search__input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.header-search__input::placeholder {
    color: #888;
}

.header-search__input:focus {
    border-color: #2ecc71;
    background: #2f2f2f;
}

.header-search__icon {
    position: absolute;
    right: 12px;
    color: #888;
    pointer-events: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.menu-mob-btn {
    display: none;
    width: 40px;
    height: 40px;
    background: #2a2a2a;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.menu-mob-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.menu-mob-btn::before,
.menu-mob-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-mob-btn::before {
    top: 10px;
}

.menu-mob-btn::after {
    bottom: 10px;
}

.menu-mob-btn.-toggle span {
    opacity: 0;
}

.menu-mob-btn.-toggle::before {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-mob-btn.-toggle::after {
    bottom: 50%;
    transform: translate(-50%, 50%) rotate(-45deg);
}

.btn {
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    vertical-align: middle;
    margin: 0;
}

.btn-register {
    background-color: #2ecc71;
    color: #000;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.btn-register:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(46, 204, 113, 0.4);
}

.btn-login {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #3a3a3a;
}

.btn-login:hover {
    background-color: #2a2a2a;
    border-color: #4a4a4a;
}

.btn a {
    color: inherit;
    text-decoration: none;
    display: block;
}


.main {
    background-color: #161c24;
    color: #e5e6ec;
}

/*POST*/
.post-entry p:not(:last-child) {
    margin-bottom: 24px;
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    line-height: 1.2;
    margin-bottom: 14px
}

.post-entry h1 {
    font-size: 32px
}

.post-entry h2 {
    font-size: 28px
}

.post-entry h3 {
    font-size: 24px
}

.post-entry h4 {
    font-size: 20px
}


.post-entry table {
    font-size: 14px;
    margin-bottom: 24px;
    width: 100%;
	display: block;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    margin-left: auto;
    margin-right: auto;
    border-collapse: collapse;
    border: 2px solid #1a5f3f;
    background: linear-gradient(135deg, #1a5f3f 0%, #0d3d26 100%);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.post-entry table th {
    background: linear-gradient(135deg, #2ecc71 0%, #1a5f3f 100%);
    color: #ffffff;
    padding: 18px 24px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.post-entry table th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffbb2a, #2f4574);
}

.post-entry table td {
    padding: 18px 24px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
    transition: all 0.3s ease;
}

.post-entry table tr:nth-child(even) {
    background: linear-gradient(135deg, rgba(26, 95, 63, 0.3) 0%, rgba(13, 61, 38, 0.2) 100%);
}

.post-entry table tr:hover {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.2) 0%, rgba(26, 95, 63, 0.3) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.post-entry table tr:last-child td {
    border-bottom: none;
}

@media (min-width: 769px) {
    .post-entry table {
        display: table;
        margin-left: auto;
        margin-right: auto;
        width: auto;
        max-width: 100%;
    }
}

.post-entry table tr:first-child {
    background: linear-gradient(135deg, #ffbb2a 0%, #2f4574 100%) !important;
}

.post-entry table tr:first-child td {
    color: #ffffff;
    font-weight: 700;
    border: none;
    background: linear-gradient(135deg, #ffbb2a 0%, #0f422a 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.post-entry table tr:nth-child(odd) {
    background: linear-gradient(135deg, rgba(26, 95, 63, 0.15) 0%, rgba(13, 61, 38, 0.1) 100%);
}

.post-entry table tr td {
    padding: 16px 20px
}

.post-entry .wp-block-image {
    margin-bottom: 24px
}

.post-entry .wp-block-image img {
	border-radius:15px;
    margin: 0 auto;
}

.post-entry img {
    height: auto !important;
}

.post-entry ol {
    counter-reset: num;
    list-style-type: none;
    margin-bottom: 24px;
    margin-left: 32px
}

.post-entry ol li {
    margin: 0 0 16px;
    padding: 0;
    position: relative
}

.post-entry ol li:before {
    background: var(--default-color);
    border-radius: 50%;
    color: #fff;
    content: counter(num);
    counter-increment: num;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    height: 24px;
    left: -32px;
    line-height: 24px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 24px
}

.post-entry ul {
    list-style-type: none;
    margin-bottom: 24px;
    margin-left: 32px;
    padding: 0;
}

.post-entry ul li {
    margin: 0 0 16px;
    padding: 0;
    position: relative;
}

.post-entry ul li:before {
    background: var(--default-color);
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: 8px;
    left: -20px;
    position: absolute;
    top: 8px;
    width: 8px;
    box-shadow: 0 0 0 2px var(--default-lighten-color);
}

/* WPFront Scroll Top Styles */
#wpfront-scroll-top-container {
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}



#wpfront-scroll-top-container div.text-holder {
    
    color: #fff !important;
    border: 1px solid var(--default-header-color) !important;
    box-shadow: none !important;
}


#wpfront-scroll-top-container i {
    color: #fff !important;
}

#wpfront-scroll-top-container i:hover {
    color: var(--default-lighten-color) !important;
}

.wp-block-quote{
    margin-bottom:1.2rem;
    background-color: var(--default-color);
    color: #FFFFFF;
    padding:40px;
    padding-left:80px;
    position: relative;
        border-radius: 8px;
}
.wp-block-quote::before{
    position: absolute;
    left:20px;
    top:20px;
    width:40px;
    height:40px;
content: url("data:image/svg+xml,%3Csvg fill='%23FFFFFF' width='40px' height='40px' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z'/%3E%3C/svg%3E");
}

@media(max-width:580px){
    .wp-block-quote{
        padding:24px;
        padding-left:56px;
    }
    .wp-block-quote::before{
        top:16px;
        left:16px;
        width:24px;
        height:24px;
content: url("data:image/svg+xml,%3Csvg fill='%23FFFFFF' width='24px' height='24px' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z'/%3E%3C/svg%3E");
    }
}

/*AUTHOR*/
.author-block {
    grid-gap: 30px;
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 20px;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, .078);
    display: grid;
    grid-template-columns: max-content 1fr;
    margin-bottom: 32px;
    padding: 32px
}

@media (max-width:768px) {
    .author-block {
        grid-gap: 20px;
        grid-template-columns: 1fr;
        padding: 20px 16px
    }
}

.author-block .author-block__photo img {
    border-radius: 50%;
    height: 168px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 168px
}

.author-block .author-block__top-grid {
    grid-gap: 20px;
    display: grid;
    grid-template-columns: 1fr max-content;
    margin-bottom: 20px
}

@media (max-width:768px) {
    .author-block .author-block__top-grid {
        grid-gap: 20px;
        grid-template-columns: 1fr
    }
}

.author-block .author-block__line {
    color: #828282;
    font-size: 18px
}

.author-block .author-block__name {
    color: #2d2d2c;
    font-size: 24px;
    font-weight: 700
}

.author-block .author-block__socials {
    display: flex;
    gap: 10px
}

.author-block .author-block__socials .author-block__socials__item {
    background: #f2f2f2;
    border-radius: 4px;
    display: inline-block;
    height: 32px;
    overflow: hidden;
    width: 32px
}

.author-block .author-block__socials .author-block__socials__item:hover {
    opacity: .86
}

.author-block .author-block__socials .author-block__socials__item i {
    display: inline-block;
    height: 32px;
    width: 32px
}

.author-block .author-block__socials .author-block__socials__item i.icon-fb {
    background: url(../assets/img/icon-fb.svg) no-repeat 50%;
    background-size: 22px
}

.author-block .author-block__socials .author-block__socials__item i.icon-tw {
    background: url(../assets/img/icon-tw.svg) no-repeat 50%;
    background-size: 22px
}

.author-block .author-block__socials .author-block__socials__item i.icon-email {
    background: url(../assets/img/icon-email.svg) no-repeat 50%;
    background-size: 22px
}

.author-block .author-block__text {
    color: #2d2d2c;
    font-size: 18px
}

.author-block .author-block__text p:not(:last-child) {
    margin-bottom: 20px
}

/*FAQ*/
.faq-block {
    padding: 60px 0;
    margin-top: 40px;
    background: #161c24;
    border-radius: 16px;
}

.faq-block .faq-block--title {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    background: linear-gradient(135deg, var(--default-color) 0%, var(--default-lighten-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.faq-block .faq-block--subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 32px;
    margin-top: -8px;
    text-align: center;
    font-weight: 400;
}

.faq-block .faq-block--items .faq-block--items__item:not(:last-child) {
    margin-bottom: 12px
}

.faq-block .faq-block--items .faq-block--items__item .faq-block--items__item--header {
    background: #1d2839;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    padding: 24px 32px;
    position: relative;
    color: #ffffff;
    box-shadow: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.faq-block .faq-block--items .faq-block--items__item .faq-block--items__item--header:hover {
    background: #223047;
    box-shadow: none;
    transform: translateY(-2px);
}

.faq-block .faq-block--items .faq-block--items__item .title-faq {
    max-width: 85%;
    width: 85%
}

.faq-block .faq-block--items .faq-block--items__item .title-faq:after {
    background: rgba(183, 190, 207, 0.15);
    border-radius: 8px;
    content: "+";
    height: 36px;
    width: 36px;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #b7becf;
    border: 1px solid rgba(183, 190, 207, 0.15);
    box-shadow: none;
}

.faq-block .faq-block--items .faq-block--items__item .faq-block--items__item--content {
    display: none
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--header {
    background: #223047;
    color: #ffffff;
    box-shadow: none;
    transform: translateY(-2px);
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--header .title-faq:after {
    content: "−";
    background: rgba(183, 190, 207, 0.25);
    color: #b7becf;
    border: 1px solid rgba(183, 190, 207, 0.25);
    transform: translateY(-50%) rotate(180deg);
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--content {
    display: block;
    padding: 32px;
    background: #1d2839;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
    border-radius: 0 0 12px 12px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.7;
    backdrop-filter: none;
    box-shadow: none;
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--content p:not(:last-child) {
    margin-bottom: 16px
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--content a {
    color: #2ecc71;
    transition: all 0.3s ease;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--content a:hover {
    color: #fff;
    border-bottom-color: var(--default-lighten-color);
    text-shadow: 0 0 8px rgba(0, 149, 255, 0.5);
}

/*WP STYLE*/
.wp-block-media-text .wp-block-media-text__media {
    float: right;
    max-width: 50%;
    margin-left: 20px;
    margin-bottom: 20px;
}

.alignright{
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .menu-mob-btn {
        display: flex !important;
        position: relative;
        right: auto;
        top: auto;
    }
    
    .header-wrap {
        position: relative;
    }
}

.alignright {
    max-width: 100%;
    margin: 16px auto 24px auto;
    float: none;
    order: 2;
}

.alignleft{
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}
/*footer*/
footer {
    background: #090f1e;
    color: #fff;
	padding: 0 20px;
}
.logocontainer {
	display: flex;
    align-items: center;
    margin-bottom: 45px;
}
.logo-container {
	display: flex;
    width: 48px;
    height: 19px;
}
.logocontainer-line {
	margin-left: 20px;
    margin-right: 18px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .2) 9.92%, rgba(0, 0, 0, 0) 100%);
}

.footermain {
	display: flex;
    align-items: flex-start;
    width: 100%;
}
@media (max-width: 1200px) {
    .footermain {
        flex-wrap: wrap;
    }
}
.footersupport {
	width: 100px;
}
.footersupport strong {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.footersupport small {
	color: #8692aca6;
    font-size: 10px;
}

.footer-clmn {
	margin-left: 80px;
}
@media (max-width: 1299px) {
    .footer-clmn {
        margin-left: 35px;
    }
}
.footer_clmn-left {
	max-width: 320px;
    width: 100%;
}

.footer-clmn strong {
	font-weight: 600;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: #5a647a;
    margin-bottom: 40px;
    display: block;
}

.footer-link ul{
	margin-top: 10px;
}

.footer-link ul li {
	margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-link ul li small {
	color: #8692aca6;
    font-size: 13px;
    font-weight: 400;
    display: block;
    max-width: 207px;
    width: 100%;
}

.footer-link ul li a {
	color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 13px;
    font-weight: 300;
    position: relative;
    transition: .3s;
}

.footer-app {
	display: flex;
    align-items: flex-start;
    margin-left: auto;
}
.footer-app-row {
	position: relative;
}
.footer_app {
	align-items: center;
    background-color: transparent;
    border: 1px solid #444;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    padding: 4px 15px;
    transition: .3s;
}

.footer_app_for_apple {
	width: 158px;
}
.footer_app_fl {
	display: flex;
    align-items: center;
}

.icon_apple svg {
    fill: #fff;
    width: 24px;
}

.footer_app_wrap {
    margin-left: 10px;
}

.footer_app_wrap small {
    color: hsla(0, 0%, 100%, .5);
    font-size: 10px;
    display: block;
}

.footer_app_wrap span {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    display: block;
}

.footer_app_arrow {
    align-items: center;
    background-color: #464646;
    border-radius: 100%;
    display: flex;
    height: 14px;
    justify-content: center;
    width: 14px;
}

.footer_app_arrow svg {
    fill: #fff;
    max-width: 6px;
    transform: rotate(-90deg);
}

.footer_app_for_android {
    margin-top: 8px;
}
.icon_android svg, .icon_windows svg {
    width: 28px;
}

.footer_for_windows {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
    margin-left: 8px;
    padding: 10px;
    justify-content: flex-start;
}

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

.footer_item {
    margin-top: 50px;
}

.separator {
    background: linear-gradient(90deg, hsla(0, 0%, 100%, .2) 9.92%, transparent);
    height: 1px;
    width: 100%;
}

.footer_content {
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
    width: 100%;
}
.footer_socials {
    display: flex;
    align-items: center;
}

.footer_socials a {
    border-radius: 10px;
    height: 35px;
    justify-content: center;
    margin-left: 10px;
    transition: .3s ease-out;
    width: 35px;
    display: flex;
    align-items: center;
}

.footer_socials a svg {
    max-width: 65%;
}

.telegram_link {
    background: linear-gradient(240.2deg, #0fb1d6, #08c 61.34%);
}

.x_link {
    background: linear-gradient(135deg, #ffffff, #ffffff);
}

.facebook_link {
    background: linear-gradient(135deg, #82a4e9, #4267b2);
}

.instagram_link {
    background: linear-gradient(214.99deg, #7e2bf4 7.65%, #ed146e 51.93%, #ffc90c 95.29%);
}

.footer_brands {
    display: flex;
    align-items: center;
}

.footer_brand {
    margin: 0 25px;
}

@media (max-width: 1200px) {
    .footer_brand {
        margin: 0 10px;
    }
}

.footer_brands svg {
    height: 25px;
}

.footer-lang_fl {
    display: flex;
    align-items: center;
}

.head-lang {
    position: relative;
    display: flex;
    z-index: 99;
}

.head-lang_block {
    cursor: pointer;
    align-items: center;
    background-color: rgba(26, 95, 63, .3);
    border-radius: 6px;
    display: flex;
    height: 24px;
    justify-content: space-between;
    padding: 0 8px;
    transition: .3s;
    width: 64px;
    position: relative;
}

footer .head-lang_block {
    height: 35px;
    padding: 0 8px;
}

footer .header-button {
    width: 35px;
    height: 35px;
    background: linear-gradient(92.58deg, #0d3d26 0%, rgba(13, 61, 38, .6) 99.71%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin: 0 10px;
}

.partners {
    display: flex;
    width: 100%;
    align-items: center;
    border-bottom: 1px solid hsla(0, 0%, 100%, .2);
    border-top: 1px solid hsla(0, 0%, 100%, .2);
    justify-content: space-between;
    padding: 30px 0;
    gap: 13px;
}

@media (max-width: 1200px) {
    .footer__partners {
        flex-wrap: wrap;
        justify-content: center;
        grid-gap: 5px;
    }
}

.partners svg {
    height: 22px;
    transition: 0.3s;
}

.partners svg .svg__color {
    opacity: 0;
    transition: 0.3s;
}

.partners svg:hover .svg__color {
    opacity: 1;
}

.partners svg:hover .svg__mono {
    opacity: 0;
}

.partners svg .svg__mono {
    transition: 0.3s;
}

.footer_descr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.footer_descr p {
    color: #34405e;
    font-size: 10px;
    font-weight: 700;
    text-align: left;
}

.footer_plus {
    display: flex;
    align-items: center;
}

.eighteen {
    color: #77829b66;
    font-size: 16px;
    font-weight: 800;
    line-height: 16px;
}
/*footer mobile styles*/

@media (max-width: 970px) {
    .footer_content {
        flex-wrap: wrap;
        position: relative;
		justify-content: center;
    }
}

@media (max-width: 570px) {
    .footer_brands {
        flex-wrap: wrap;
        grid-gap: 10px;
		justify-content: center;
        width: 100%;
        margin-top: 35px;
        margin-bottom: 25px;
    }
	.footer_brand {
		margin: 0 5px;
	}
	.footer_brand svg {
		height: 18px;
	}
	    .partners {
        flex-wrap: wrap;
        justify-content: center;
        grid-gap: 15px;
    }
	.footersupport {
    width: 13%;
}
	.footer-clmn {
		display: none;
	}
}



/*MOBILE*/
@media (max-width:768px) {
    .menu-mob-btn {
        display: block;
    }

    .header-logo__img {
        max-height: 42px;
        max-width: 180px;
        width: auto;
    }

    .menu-wrap {
        grid-gap: 16px;
        background: #000;
        display: none;
        grid-template-columns: 86px 1fr;
        height: calc(100vh - 82px);
        left: 0;
        padding: 20px;
        place-content: flex-start;
        position: fixed;
        top: 82px;
        width: 100%;
        z-index: 9998;
        transition: all 0.3s ease;
        overflow-y: auto;
    }

    .menu-wrap.-toggle {
        display: grid;
        visibility: visible;
        opacity: 1;
    }

    .main-nav {
        grid-column: 1 / 3;
        grid-row: 1;
        margin-bottom: 64px;
        padding: 0;
        text-align: left;
        width: 100%;
    }

    .main-nav__list {
        display: block;
    }

    .main-nav__list li:not(:last-child) {
        border-bottom: 1px solid hsla(0, 0%, 100%, .1);
        display: block;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .header .btn {
        grid-row: 2;
        text-align: center;
    }

    .header .btn a {
        padding: 0 10px;
    }
}

/* banner */

        .banner-container {
            width: 100%;            
            margin: 0 auto;
            height: 320px;
            overflow: hidden;
            position: relative;
            background-image: linear-gradient(calc(var(--cms-page-dir-sign, 1) * 90deg), var(--dark-bg-color) 30%, transparent 93%);
        }

        .banner-item {
            width: 100%;
            height: 320px;
            background-size: cover;
            background-position: center;
            border-radius: 0;
            position: relative;
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            flex-direction: column;
            color: white;
            text-align: left;
            padding: 20px;
        }



        .banner-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 0;
            background: linear-gradient(calc(var(--cms-page-dir-sign, 1) * 90deg),var(--dark-bg-color) 30%,transparent 93%);
            z-index: 0;
        }

        .banner-content {
            position: relative;
            z-index: 2;
			text-align: left;
   			width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            height: 100%;
        }

        .banner-title {
            font-size: 24px;
            font-weight: 700;
            margin: 0 0 10px 0;
            color: #fff;
            text-shadow: 0 2px 4px rgba(0,0,0,0.7);
        }

        .banner-text {
            font-size: 14px;
            font-weight: 400;
            margin: 0 0 15px 0;
            color: #fff;
            text-shadow: 0 1px 2px rgba(0,0,0,0.7);
            line-height: 1.4;
        }

        .banner-button {
			margin: 0;
			padding: 12px 24px;
			background: #FFBB29;
			color: #000;
			border: none;
			border-radius: 8px;
			cursor: pointer;
			font-size: 14px;
		}

/* Секция с играми */
.games-section {
    background: #161c24;
    padding: 20px 0;
    margin: 0;
}

.games-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px 10px 15px;
}
.games-title {
    color: #b7becf;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.games-title-icon {
    color: #ff2;
}
.games-more-link {
    color: #2ecc71;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease;
}
.games-more-link:hover {
    color: #35ff8c;
}

/* Unify main content widths on desktop */
@media (min-width: 1025px) {
    .main .banner-carousel,
    .main .games-section,
    .main .post-entry,
    .main .table-of-contents {
        max-width: 1280px; /* немного шире стандартного контента */
        margin-left: auto;
        margin-right: auto;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }
    /* Для карусели отступы не нужны, иначе появляется сдвиг слайдов */
    .main .banner-carousel {
        padding-left: 0;
        padding-right: 0;
    }
}

.games-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 20px;
    scroll-behavior: smooth;
    justify-content: space-between;
}

.games-container::-webkit-scrollbar {
    height: 6px;
}

.games-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.games-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    transition: background 0.2s ease;
}

.games-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.game-item {
    flex: 0 0 auto;
    width: 180px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.game-item:hover {
    transform: translateY(-5px);
}

.game-image {
    width: 100%;
    aspect-ratio: 2 / 3;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.2s ease;
}

.game-item:hover .game-image {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.game-link {
    display: block;
    position: relative;
}

.game-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.game-item:hover .game-overlay {
    opacity: 1;
}
.game-play-btn {
    width: 86px;
    height: 86px;
    background: radial-gradient(50% 50% at 50% 50%, #00e676 0%, #00b248 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(5, 242, 107, 0.55), 0 0 40px rgba(5, 242, 107, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.game-play-icon {
    width: 0;
    height: 0;
    border-left: 18px solid #ffffff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}
.game-overlay-demo {
    margin-top: 10px;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.game-title {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

@media (max-width: 768px) {
    .games-container {
        padding: 0 15px;
        gap: 8px;
    }
    
    .game-item {
        width: 120px;
        max-width: 120px;
        min-width: 120px;
    }
    
    .game-image {
        width: 100%;
        aspect-ratio: 2 / 3;
        object-fit: cover;
        border-radius: 8px;
    }
    
    .game-title {
        font-size: 10px;
        margin-top: 6px;
    }
}

/* Горизонтальное оглавление */
/* Оглавление: выпадающий список */
.table-of-contents {
    display: none;
    margin: 20px 0;
    background: #161c24; /* темный фон под общий стиль */
    border: 1px solid #2ecc71;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(26, 95, 63, 0.3);
    overflow: hidden;
}
.table-of-contents .toc-summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 16px;
    color: #b7becf;
    font-weight: 700;
    position: relative;
}
.table-of-contents .toc-summary::-webkit-details-marker { display: none; }
.table-of-contents .toc-summary:after {
    content: '▾';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform .2s ease;
}
.table-of-contents[open] .toc-summary:after {
    transform: translateY(-50%) rotate(180deg);
}
.table-of-contents .toc-list {
    list-style: none;
    margin: 0;
    padding: 0 16px 14px 16px;
}
.table-of-contents .toc-list li {
    margin: 6px 0;
}
.table-of-contents .toc-list a {
    color: #e5e6ec;
    text-decoration: none;
    border-bottom: 1px dashed rgba(46,204,113,.6);
}
.table-of-contents .toc-list a:hover {
    color: #fff;
    border-color: #2ecc71;
}

@media (max-width: 768px) {
    .table-of-contents {
        margin: 15px 0;
        border-radius: 6px;
    }
    .table-of-contents .toc-summary {
        font-size: 1em;
        padding: 12px 14px;
    }
}

.banner-button {
	text-decoration: none;
	font-weight: 600;
	box-shadow: 0 4px 12px rgba(5, 242, 107, 0.3);
    width: auto;
    display: inline-block;
    transition: all 0.3s ease;
}

.banner-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(5, 242, 107, 0.4);
}

/* Мобильные стили для banner-item */
@media (max-width: 768px) {
    .banner-item {
        background-position: right !important;
        position: relative;
    }
    
    .banner-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 1;
    }
    
    .banner-content {
        position: relative;
        z-index: 2;
    }
}

/* Banner carousel */
.banner-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    margin: 16px 0 24px;
}
.banner-carousel .banner-track {
    display: flex;
    will-change: transform;
}
.banner-carousel .banner-slide {
    min-width: 100%;
    user-select: none;
}
.banner-carousel .banner-slide a,
.banner-carousel .banner-slide img {
    display: block;
    width: 100%;
    height: auto;
    border: 0;
}
.banner-carousel .banner-dots {
    position: static;
    transform: none;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 5;
    margin-top: 10px;
}
.banner-carousel .banner-dot {
    width: 46px;
    height: 6px;
    border-radius: 6px;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
}
.banner-carousel .banner-dot.-active {
    background: #2ecc71;
}



.banner-header {
			color: #fff;
			box-sizing: inherit;
			font-family: -apple-system,SF Pro Display,-apple-system,SF Pro Text,sans-serif;
			font-weight: 800;
			letter-spacing: .33px;
			text-shadow: 0 2px 4px rgba(0,0,0,0.5), 0 4px 8px rgba(0,0,0,0.5);
			max-width: 100%;
			width: 100%;
			font-size: 30px;
			line-height: 106%;
			white-space: pre-line;
		}

        @media (max-width: 768px) {
    .banner-container {
        height: 200px;
    }
    
    .banner-item {
        height: 200px;
    }
}

/*grid*/

        .grid-container {
            display: flex;
            gap: 15px;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
			justify-content: space-between;
			margin: 15px 0 15px 0;
        }

        .grid-item {
            display: flex;
            align-items: center;
            background-image: linear-gradient(110deg,#1e283f,rgba(20,27,46,.6) 100%);
            padding: 15px;
            border-radius: 8px;
            text-decoration: none;
            color: #fff;
            width: 30%;
            min-width: 200px;
			justify-content: space-between;
        }
		
		.grid-item:hover {
			scale: 1.1;
}

        .grid-icon {
            width: 50px;
            height: 50px;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
			font-size: 35px;
        }

        .grid-text {
            display: flex;
            flex-direction: column;
        }

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

        .grid-subtitle {
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .grid-container {
                flex-direction: column;
                align-items: center;
            }
            .grid-item {
                width: 100%;
            }
        }

body > header > div {
    max-width: 100%;
}

#wpfront-scroll-top-container img {
    margin-bottom: 60px;
}

/* ============================================
   SIDEBAR STYLES
   ============================================ */

/* Основной контейнер сайдбара - только для ПК */
@media (min-width: 1025px) {
    #sidebar.sidebar,
    .sidebar {
        position: fixed;
        left: 0;
        top: 0;
        height: 100vh;
        background: #1d2839;
        z-index: 999;
        overflow-y: auto;
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease;
        width: 70px;
        padding: 20px 0;
        align-items: center;
        gap: 0;
    }
    
    .sidebar-mobile-only {
        display: none !important;
        visibility: hidden !important;
    }
    
    .sidebar-nav--desktop {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .sidebar-nav--desktop .sidebar-nav__item {
        width: 100%;
        padding: 15px;
        justify-content: center;
        background: transparent;
        border-radius: 0;
        margin: 0;
        transition: all 0.3s ease;
    }
    
    .sidebar-nav--desktop .sidebar-nav__item:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .sidebar-nav__icon-svg {
        display: block !important;
        width: 24px;
        height: 24px;
        color: #ffffff;
        fill: currentColor;
        opacity: 0.7;
        transition: opacity 0.3s ease;
    }
    
    .sidebar-nav--desktop .sidebar-nav__item:hover .sidebar-nav__icon-svg {
        opacity: 1;
    }
    
    .main {
        margin-left: 70px;
    }
}

/* Хедер мобильного меню */
.sidebar-header {
    display: none;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header__logo-link {
    text-decoration: none;
}

.sidebar-header__logo-img {
    height: 32px;
    width: auto;
}

.sidebar-header__logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #2ecc71;
}

.sidebar-header__logo-leaf {
    color: #ffffff;
}

.sidebar-close-btn {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    color: #fff;
    border: none;
    font-size: 32px;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.sidebar-close-btn:hover {
    color: #2ecc71;
}

/* Навигационное меню */
.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-nav--desktop {
    display: none;
}

.sidebar-nav__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #2a2a2a;
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sidebar-nav__item:hover {
    background: #333;
    transform: translateX(4px);
}

.sidebar-nav__icon {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.sidebar-nav__text {
    flex: 1;
}

.sidebar-nav__icon-svg {
    display: block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Цветные иконки для мобильного меню */
.sidebar-nav__icon-svg--green {
    color: #2ecc71;
}

.sidebar-nav__icon-svg--purple {
    color: #9b59b6;
}

.sidebar-nav__icon-svg--yellow {
    color: #f1c40f;
}

.sidebar-nav__icon-svg--blue {
    color: #3498db;
}

.sidebar-nav__icon-svg--gold {
    color: #f39c12;
}

.sidebar-nav__icon-svg--red {
    color: #e74c3c;
}

.sidebar-nav__icon-svg--white {
    color: #ffffff;
}

@media (min-width: 1025px) {
    .sidebar-nav__icon-svg {
        color: #ffffff;
        opacity: 0.7;
    }
    
    .sidebar-nav__icon-svg--green,
    .sidebar-nav__icon-svg--purple,
    .sidebar-nav__icon-svg--yellow,
    .sidebar-nav__icon-svg--blue,
    .sidebar-nav__icon-svg--gold,
    .sidebar-nav__icon-svg--red,
    .sidebar-nav__icon-svg--white {
        color: #ffffff;
        opacity: 0.7;
    }
}

/* Кнопки действий */
.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.sidebar-action {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sidebar-action--telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    color: #ffffff;
}

.sidebar-action--telegram:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
}

.sidebar-action--download {
    background: transparent;
    border: 2px solid #2ecc71;
    color: #2ecc71;
    justify-content: space-between;
}

.sidebar-action__icon--cactus {
    color: #2ecc71;
    flex-shrink: 0;
}

.sidebar-action__icon--cactus img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.sidebar-action--download:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.4);
}

.sidebar-action__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.sidebar-action__text {
    flex: 1;
}

.sidebar-action__arrow {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Информационные ссылки */
.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    text-decoration: none;
    color: #ffffff;
    font-size: 13px;
    transition: all 0.3s ease;
}

.sidebar-link:hover {
    color: #2ecc71;
    padding-left: 5px;
}

.sidebar-link__text {
    flex: 1;
}

.sidebar-link__arrow {
    width: 12px;
    height: 12px;
    color: #888;
    transition: all 0.3s ease;
}

.sidebar-link:hover .sidebar-link__arrow {
    color: #2ecc71;
    transform: translateX(4px);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 1024px) {
    #sidebar.sidebar,
    .sidebar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        padding: 28px 24px !important;
        background: rgba(29, 40, 57, 0.98) !important;
        backdrop-filter: blur(6px) !important;
        z-index: 10001 !important;
        visibility: visible !important;
        opacity: 0 !important;
        gap: 24px !important;
        flex-direction: column !important;
        display: flex !important;
        overflow-y: auto !important;
        transition: transform 0.3s ease, opacity 0.3s ease !important;
        transform: translateX(-100%) !important;
        -webkit-transform: translateX(-100%) !important;
        pointer-events: none !important;
    }
    
    body.menu-open #sidebar.sidebar.sidebar--open,
    body.menu-open #sidebar.sidebar--open,
    body.menu-open .sidebar.sidebar--open,
    body.menu-open .sidebar--open,
    body.menu-open aside#sidebar.sidebar--open,
    body.menu-open aside.sidebar.sidebar--open,
    #sidebar.sidebar.sidebar--open,
    #sidebar.sidebar--open,
    .sidebar.sidebar--open,
    .sidebar--open,
    aside#sidebar.sidebar--open,
    aside.sidebar.sidebar--open {
        transform: translateX(0) !important;
        -webkit-transform: translateX(0) !important;
        -moz-transform: translateX(0) !important;
        -ms-transform: translateX(0) !important;
        -o-transform: translateX(0) !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        visibility: visible !important;
    }
    
    body.menu-open {
        overflow: hidden !important;
    }
    
    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }
    
    .mobile-menu-overlay.visible {
        opacity: 1;
        visibility: visible;
    }
    
    .sidebar-nav--desktop {
        display: none !important;
    }
    
    .sidebar-nav.sidebar-mobile-only {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    .sidebar-nav.sidebar-mobile-only .sidebar-nav__item {
        align-items: center !important;
        gap: 14px !important;
        padding: 14px 16px !important;
        border-radius: 14px !important;
        background: rgba(255, 255, 255, 0.06) !important;
        transition: background 0.2s ease !important;
        font-size: 16px !important;
        line-height: 1.4 !important;
    }
    
    .sidebar-nav.sidebar-mobile-only .sidebar-nav__item:hover {
        background: rgba(255, 255, 255, 0.12) !important;
    }
    
    .sidebar-nav.sidebar-mobile-only .sidebar-nav__icon-svg {
        flex-shrink: 0 !important;
        width: 26px !important;
        height: 26px !important;
    }
    
    .sidebar-nav.sidebar-mobile-only .sidebar-nav__text {
        font-weight: 600 !important;
    }
    
    .sidebar-actions.sidebar-mobile-only {
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
    }
    
    .sidebar-links.sidebar-mobile-only {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    /* Показываем мобильные элементы */
    .sidebar-mobile-only {
        display: block !important;
        visibility: visible !important;
    }
    
    .sidebar-nav.sidebar-mobile-only {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
    }
    
    .sidebar-actions.sidebar-mobile-only {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .sidebar-links.sidebar-mobile-only {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
    }
    
    .sidebar-header {
        display: flex !important;
    }
    
    .sidebar-close-btn {
        display: block !important;
        font-size: 32px !important;
        color: #ffffff !important;
        background: transparent !important;
        border: none !important;
        line-height: 1 !important;
        cursor: pointer !important;
    }
    
    .menu-mob-btn {
        display: flex !important;
        z-index: 10002 !important;
        position: relative;
    }
    
    .header-search {
        display: none;
    }
    
    .header-actions {
        gap: 8px;
        margin-left: 0;
        align-items: center;
        display: flex;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .main {
        margin-left: 0 !important;
    }
    
    body.menu-open {
        overflow: hidden !important;
        position: fixed;
        width: 100%;
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999 !important;
    }
}

/* Мобильная версия хедера */
@media (max-width: 1024px) {
    .header-wrap {
        flex-wrap: nowrap;
        align-items: center;
    }
    
    .header-logo__text {
        font-size: 24px;
    }
    
    .header-logo__img {
        height: 40px;
    }
    
    .header-actions {
        order: initial;
        width: auto;
        justify-content: flex-end;
        margin-top: 0;
        margin-left: auto;
        align-items: center;
    }
    
    .header-btn-login {
        display: none !important;
    }
    
    .menu-mob-btn {
        margin: 0;
        position: relative;
    }
}