@font-face {
    font-family: 'FontAwesome';
    src: url("../fonts/fa-regular-400.1102f4bc5efe.ttf") format('truetype');
    font-display: swap;
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FontAwesomeBrands';
    src: url("../fonts/fa-brands-400.744923dd40d8.ttf") format('truetype');
    font-display: swap;
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FontAwesomeSolid';
    src: url("../fonts/fa-solid-900.fd35bf30ce4a.ttf") format('truetype');
    font-display: swap;
    font-weight: normal;
    font-style: normal;
}





@font-face {
    font-family: 'FASolid_5_13';
    src: url("../fonts/fa-solid-900-5.13.0.977e6fae30d6.ttf") format('truetype');
    font-display: swap;
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FARegular_5_13';
    src: url("../fonts/fa-regular-400-5.13.0.6ee0bdf1a4b4.ttf") format('truetype');
    font-display: swap;
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FALight_5_13';
    src: url("../fonts/fa-light-300-5.13.0.5bdaa8582fd4.ttf") format('truetype');
    font-display: swap;
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FADuotone_5_13';
    src: url("../fonts/fa-duotone-900-5.13.0.cf3b376d9576.ttf") format('truetype'), url("../fonts/fa-duotone-900-5.13.0.5bafbe652c04.svg#fontawesome") format("svg");
    font-display: block;
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FABrands_5_13';
    src: url("../fonts/fa-brands-400-5.13.0.77ace0fee45b.ttf") format('truetype');
    font-display: swap;
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FARegular_5_15_1';
    src: url("../fonts/fa-regular-400-5.15.1.b2614d59b464.ttf") format('truetype');
    font-display: swap;
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FABrands_6_1';
    src: url("../fonts/fa-brands-400.6.1.744923dd40d8.ttf") format('truetype');
    font-display: swap;
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FADuotone_6_1';
    src: url("../fonts/fa-duotone-900.6.1.758d46a37078.ttf") format('truetype');
    font-display: block;
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FALight_6_1';
    src: url("../fonts/fa-light-300.6.1.ba034b0d1b8b.ttf") format('truetype');
    font-display: swap;
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FARegular_6_1';
    src: url("../fonts/fa-regular-400.6.1.1102f4bc5efe.ttf") format('truetype');
    font-display: swap;
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FASolid_6_1';
    src: url("../fonts/fa-solid-900.6.1.fd35bf30ce4a.ttf") format('truetype');
    font-display: swap;
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FAThin_6_1';
    src: url("../fonts/fa-thin-100.6.1.88e164f3e447.ttf") format('truetype');
    font-display: swap;
    font-weight: normal;
    font-style: normal;
}
/* 
Этот блок CSS-кода определяет адаптивную ширину контейнера и навигации для разных размеров экрана:

- При ширине экрана от 576px контейнер и навигация имеют максимальную ширину 540px
- При ширине от 768px - максимальная ширина 720px 
- При ширине от 922px - максимальная ширина 1100px
- При ширине от 1110px - максимальная ширина остается 1110px
- При ширине от 1200px - максимальная ширина увеличивается до 1185px

Это позволяет сайту корректно отображаться на разных устройствах, 
от мобильных до широкоформатных мониторов.
*/

@media (min-width: 576px) {
    .main_container,
    nav {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .main_container,
    nav {
        max-width: 720px;
    }
}

@media (min-width: 922px) {
    .main_container,
    nav {
        max-width: 1100px;
    }
}

@media (min-width: 1110px) {
    .main_container,
    nav {
        max-width: 1110px;
    }
}

@media (min-width: 1200px) {
    .main_container,
    nav {
        max-width: 1185px;
    }
}

*,
 ::after,
 ::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* font-family: sans-serif; */
    font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue";
}

body {
    line-height: 1.5;
    min-height: 100%;
}

html {
    height: 100%;
}

/*
 * Темизация через CSS‑переменные.
 * Светлая тема по умолчанию, тёмная — при [data-theme="dark"] на <html>.
 */
:root {
    --bg-body: #ffffff;
    --text-main: #212529;
    --text-muted: #6e6779;
    --card-bg: #ffffff;
    --card-text: #392e5c;
    --link: #d3cae8;           /* нав. ссылки по умолчанию */
    --link-hover: #ffffff;     /* нав. ссылки по ховеру */
    --nav-bg: #4b367c;
    --footer-bg: #19171c;
    --border: #ced4da;
    --surface: #f7f7f7;
    --brand: #6441a4;          /* фирменный фиолетовый */
    --brand-hover: #7d5bbe;
    --cta-bg: #ff9933;         /* CTA (оранжевые кнопки) */
    --cta-text: #000000;
    --star: #f3cb2a;
    --muted-2: #5a5a5a;
}

[data-theme="dark"] {
    --bg-body: #0f1115;
    --text-main: #e6e6e6;
    --text-muted: #a8a8b3;
    --card-bg: #161922;
    --card-text: #d7d2e8;
    --link: #b7a9e6;
    --link-hover: #ffffff;
    --nav-bg: #2a2150;
    --footer-bg: #0b0c10;
    --border: #2b2f3a;
    --surface: #1b1f2a;
    --brand: #7d5bbe;
    --brand-hover: #8d70d1;
    --cta-bg: #ff9933;
    --cta-text: #000000;
    --star: #f3cb2a;
    --muted-2: #8a8f9a;
}

[data-theme="dark"] body {
    background: var(--bg-body);
    color: var(--text-main);
}

[data-theme="dark"] .white-box {
    background: var(--card-bg);
}

[data-theme="dark"] .white-box p,
[data-theme="dark"] .box-title,
[data-theme="dark"] .rate-box .rate-title,
[data-theme="dark"] .rate-box-content p {
    color: var(--card-text);
}

[data-theme="dark"] .title_h2,
[data-theme="dark"] .sub_title_h3,
[data-theme="dark"] .comment-author-block .comment-login,
[data-theme="dark"] .comment-author-block .comment-date {
    color: var(--text-main);
}

/* nav цвета не трогаем в светлой теме; тёмную настроим отдельно при необходимости */

/* ссылки в навигации оставляем как было */

[data-theme="dark"] .form_reviews_wrap .form-control {
    background-color: var(--card-bg);
    color: var(--text-main);
    border-color: var(--border);
}

[data-theme="dark"] .show_hide_form_reviews__btn {
    background: var(--surface);
    border-color: var(--border);
    color: var(--text-main);
}

[data-theme="dark"] .rate-box-price-title.price-old div {
    background: var(--surface);
    color: var(--text-muted);
}

/* footer цвет остаётся оригинальным для светлой темы */

/* Кнопка переключения темы в навигации */
#themeToggle {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 0 12px;
    line-height: 28px;
}

#themeToggle:hover {
    background: rgba(255,255,255,0.12);
}


#logo_top {
    width: 230px;
    height: 34px;
}

.main_container {
    width: 100%;
    padding: 0 clamp(0px, 2vw, 15px);
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
    /* overflow: hidden; */
}


/* .mc2{
    min-height: 100%;
    padding-bottom: 230px;
} */

.row_container {
    display: -ms-flexbox;
    display: flex;
    margin: 0 -15px;
}

.prices .row_container {
    display: none;
}

.row_container.active {
    display: flex;
}

.col__1_3 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 clamp(0px, 2vw, 15px);
}

.col__1_4 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 clamp(0px, 2vw, 15px);
}

.col__3_4 {
    flex: 0 0 75%;
    max-width: 75%;
    padding: 0 clamp(0px, 2vw, 15px);
}

.shadow-box {
    -webkit-box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.15);
}

.white-box {
    background: white;
    padding: 15px 20px 0 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.box-title {
    font-size: 24px;
    display: block;
    text-align: center;
    color: #392e5c;
    margin-bottom: 15px;
    font-weight: 500;
    position: relative;
}

.white-box p {
    font-size: 16px;
    line-height: 24px;
    color: #392e5c;
    padding-bottom: 15px;
    margin: 0px;
}

.title_h2 {
    font-size: 28px;
    margin: 30px 0;
    font-weight: normal;
    color: #212529;
    text-align: center;
}

.title_h2>span {
    color: #6e6779;
    margin-left: 20px;
    font-size: 24px;
}

.sub_title_h3 {
    font-size: 28px;
    margin: 0 0 30px;
    font-weight: normal;
    color: #212529;
    text-align: center;
}

.fa-twitch:before {
    font-family: FontAwesomeBrands;
    content: "\f1e8";
    font-style: normal;
}

.fa-kick:before {
    font-family: FontAwesomeBrands;
    content: "\f3bb";
    font-style: normal;
}

.sub_title_h3>span {
    color: #6e6779;
    margin-left: 20px;
    font-size: 24px;
}

.min_otstup_title {
    margin-bottom: 15px;
}

.content_by_center {
    text-align: center;
    margin-bottom: 10px;
}

.guarantees-content {
    padding-top: 10px;
    padding-bottom: 40px;
    text-align: center;
}

.main_action__btn {
    transition: all 0.25s;
    font-size: 18px;
    text-decoration: none;
    padding: .5rem 30px;
    cursor: pointer;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    line-height: 1.5;
    border-radius: .25rem;
}

.main_action_inver__btn {
    background: white;
    color: #6441a4;
    transition: all 0.25s;
}

.main_action_inver__btn:hover {
    background: #efeef1;
    box-shadow: none;
}

.main_action__btn i {
    margin-left: 10px;
}

.review-box {
    position: relative;
    padding: 20px;
    padding-bottom: 5px;
}

.rate-review {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #f3cb2a;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-star:before {
    font-family: FontAwesomeSolid;
    content: "\f005";
}

.fa-angle-right:before {
    font-family: inherit;
    content: "\f105";
}

.comment-info {
    margin-bottom: 15px;
}

.comment-info .user-avatar {
    float: left;
    margin-right: 15px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.comment-author-block {
    float: left;
    line-height: 25px;
}

.comment-author-block .comment-login {
    font-size: 16px;
    color: #392e5c;
    font-weight: 500;
    display: block;
}

.comment-author-block .comment-date {
    font-size: 14px;
    color: #6e6779;
    display: block;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.nav_wrap {
    background: #4b367c;
}

nav {
    width: 100%;
    /* height: 74px; */
    position: relative;
    margin: 0 auto;
    background: #4b367c;
    padding: 7px 15px;
    color: #ffffff;
    box-sizing: border-box;
}

nav>div {
    height: 38px;
    line-height: 38px;
    display: inline-block;
}

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

.nav_container {
    font-size: 16px;
    position: absolute;
    right: 15px;
}

.nav_container>ul {
    margin-left: 30px;
    display: inline-block;
}

.custom_select_lang {
    display: inline-block;
}

.nav_container>ul>li {
    display: inline-block;
    margin-right: clamp(3px, 1vw, 30px);
}

.nav_container>ul>.nav_login__btn_li {
    margin-right: 10px;
}

.nav_container>ul>li:last-child {
    margin-right: 0;
}

.nav_container>ul>li>a {
    color: #d3cae8;
    display: inline-block;
    text-decoration: none;
}

.nav_container>ul>li>a:hover {
    color: #fff;
}

.nav_login__btn,
.nav_reg__btn {
    background: #6441a4;
    color: #ffffff;
    transition: all 0.25s;
    border-radius: .25rem;
    padding: 0 20px;
}

.nav_reg__btn,
.btn-action-main,
.main_action__btn,
.jelt_btn {
    background: #ff9933;
    color: #000!important;
}

/* * Старые стили (оставлены для совместимости) */
.inf_platform{
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 0.3rem;
    display: inline-block;
    color: #fff;
    margin: 5px 0 0 20px;
}

.inf_platform a{
    color: #0000EE;
}

/* * Современный Grid-контейнер для статусов платформ */
.platforms-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
    padding: 0;
}

/* * Карточка платформы */
.platform-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

/* * Эффект свечения при наведении */
.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.platform-card:hover::before {
    opacity: 1;
}

/* * Анимация при наведении для активных карточек */
.platform-card.platform-active:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(74, 199, 53, 0.4);
    border-color: rgba(74, 199, 53, 0.5);
}

/* * Анимация для карточек в разработке */
.platform-card.platform-development:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border-color: rgba(119, 119, 119, 0.4);
}

/* * Контейнер иконки платформы */
.platform-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 32px;
    transition: all 0.3s ease;
    position: relative;
}

/* * SVG-логотип платформы */
.platform-svg {
    width: 40px;
    height: 40px;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) 
            /* drop-shadow(0 0.5px rgba(255, 255, 255, 0.15)) */
            drop-shadow(0 0 1px rgba(0, 0, 0, 0.1));
}

/* * Эффект пульсации для активных платформ */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(74, 199, 53, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(74, 199, 53, 0);
    }
}

.platform-active .platform-icon {
    animation: pulse-glow 2s infinite;
}

/* * Иконка Twitch */
.twitch-icon {
    background: linear-gradient(135deg, #9146FF 0%, #6441a5 100%);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 2px 8px rgba(145, 70, 255, 0.3);
}

.twitch-icon .platform-svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) 
            /* drop-shadow(0 0 0.5px rgba(255, 255, 255, 0.2)) */
            drop-shadow(0 0 1px rgba(0, 0, 0, 0.15));
}

.platform-active:hover .twitch-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 8px 20px rgba(145, 70, 255, 0.6);
}

.platform-active:hover .twitch-icon .platform-svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4)) 
            drop-shadow(0 0 2px rgba(255, 255, 255, 0.2))
            drop-shadow(0 0 12px rgba(145, 70, 255, 0.8));
    transform: scale(1.05);
}

/* * Иконка Kick */
.kick-icon {
    background: linear-gradient(135deg, #53fc18 0%, #00d9a3 100%);
    color: #000;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 2px 8px rgba(83, 252, 24, 0.3);
}

.kick-icon .platform-svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4)) 
            /* drop-shadow(0 0 0.5px rgba(0, 0, 0, 0.3)) */
            drop-shadow(0 0 1px rgba(255, 255, 255, 0.1));
}

.platform-active:hover .kick-icon {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 8px 20px rgba(83, 252, 24, 0.6);
}

.platform-active:hover .kick-icon .platform-svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4)) 
            drop-shadow(0 0 2px rgba(0, 0, 0, 0.2))
            drop-shadow(0 0 12px rgba(83, 252, 24, 0.8));
    transform: scale(1.05);
}

/* * Иконка YouTube */
.youtube-icon {
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
    color: #fff;
    opacity: 0.6;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 2px 8px rgba(255, 0, 0, 0.2);
}

.youtube-icon .platform-svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4)) 
            /* drop-shadow(0 0 0.5px rgba(255, 255, 255, 0.25)) */
            drop-shadow(0 0 1px rgba(0, 0, 0, 0.2));
}

.platform-development:hover .youtube-icon {
    opacity: 0.8;
    transform: scale(1.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 4px 12px rgba(255, 0, 0, 0.4);
}

.platform-development:hover .youtube-icon .platform-svg {
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3)) 
            drop-shadow(0 0 1px rgba(255, 255, 255, 0.15))
            drop-shadow(0 0 8px rgba(255, 0, 0, 0.6));
    transform: scale(1.02);
}

/* * Иконка Trovo */
.trovo-icon {
    background: linear-gradient(135deg, #1bda8e 0%, #159f6a 100%);
    color: #fff;
    opacity: 0.6;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 2px 8px rgba(27, 218, 142, 0.2);
}

.trovo-icon .platform-svg {
    filter: 
            /* drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3))  */
            /* drop-shadow(0 0 0.5px rgba(255, 255, 255, 0.2)) */
            drop-shadow(0 0 1px rgba(0, 0, 0, 0.15));
}

.platform-development:hover .trovo-icon {
    opacity: 0.8;
    transform: scale(1.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 4px 12px rgba(27, 218, 142, 0.4);
}

.platform-development:hover .trovo-icon .platform-svg {
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3))
            drop-shadow(0 0 1px rgba(255, 255, 255, 0.15))
            drop-shadow(0 0 8px rgba(27, 218, 142, 0.6));
    transform: scale(1.02);
}

/* * Hover-эффекты для платформы "На обновлении" */
.platform-updating:hover .twitch-icon {
    transform: scale(1.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 4px 12px rgba(255, 193, 7, 0.4);
}

.platform-updating:hover .twitch-icon .platform-svg {
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3)) 
            drop-shadow(0 0 1px rgba(255, 255, 255, 0.15))
            drop-shadow(0 0 8px rgba(255, 193, 7, 0.6));
    transform: scale(1.02);
}

/* * Контент карточки */
.platform-content {
    flex: 1;
    min-width: 0;
}

/* * Название платформы */
.platform-name {
    margin: 0 0 4px 0;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

/* * Описание платформы */
.platform-description {
    margin: 0 0 12px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* * Контейнер статуса */
.platform-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* * Индикатор статуса (точка) */
.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: relative;
}

/* * Активный статус (зеленый с пульсацией) */
.status-indicator.active {
    background: #4ac735;
    box-shadow: 0 0 10px rgba(74, 199, 53, 0.8);
}

.status-indicator.active::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid #4ac735;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* * Статус в разработке (серый) */
.status-indicator.development {
    background: #777;
    box-shadow: 0 0 6px rgba(119, 119, 119, 0.5);
}

/* * Статус "На обновлении" (желтый) */
.status-indicator.updating {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.3);
    animation: pulse-updating 2s infinite;
}

/* * Анимация пульсации для статуса "На обновлении" */
@keyframes pulse-updating {
    0%, 100% {
        box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.3);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.6);
    }
}

/* * Статус "Бета-тестирование" (фиолетовый) */
.status-indicator.beta {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.3);
    animation: pulse-beta 2s infinite;
}

.status-indicator.beta::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid #8b5cf6;
    animation: pulse-ring-beta 2s infinite;
}

/* * Анимация пульсации для статуса "Бета-тестирование" */
@keyframes pulse-beta {
    0%, 100% {
        box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.6);
    }
}

@keyframes pulse-ring-beta {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* * Текст статуса */
.status-text {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.platform-active .status-text {
    color: #4ac735;
}

.platform-development .status-text {
    color: #999;
}

.platform-updating .status-text {
    color: #ffc107;
}

.platform-beta .status-text {
    color: #8b5cf6;
}

/* * Адаптивность для мобильных устройств */
@media screen and (max-width: 768px) {
    .platforms-status-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 20px 0;
    }
    
    .platform-card {
        padding: 16px;
    }
    
    .platform-icon {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
    
    .platform-name {
        font-size: 18px;
    }
}

/* * Адаптивность для планшетов */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .platforms-status-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.nav_reg__btn:hover,
.btn-action-main:hover,
.main_action__btn:hover,
.jelt_btn:hover {
    background: #efac52!important;
    color: #000!important;
}

.nav_login__btn:hover {
    background: #7d5bbe;
}

.main_priview {
    height: 630px;
    padding: 30px 0;
    background-color: #2e2348;
    background: url("../img/mask.84228330bfe6.webp"), url("../img/mask_img.9152d1b155fe.webp");
    background-position: top;
    overflow: hidden;

    @media screen and (max-width: 768px) {
        background: linear-gradient(180deg, #2e2348 0%, #120f18 100%);
        overflow: visible;
        height: auto;
        padding: 20px 0 10px;
    }
}
.main_priview.loaded {
    background: url("../img/mask.84228330bfe6.webp"), url("../img/mask_img.9152d1b155fe.webp");
}

.pudge-img {
    position: absolute;
    right: 0px;
    margin-top: 25px;
    animation: jump 2s infinite;
    
    @media screen and (max-width: 950px) {
        display: none;
    }
}

.title-main {
    font-size: 38px;
    color: white;
    margin: 0px;
    padding: 0px;
    margin-bottom: 15px;
    line-height: 52px;
    font-weight: 500;
}

.advantages-main {
    display: block;
    color: white;
    font-weight: 300;
    font-size: 22px;
    line-height: 34px;
    margin-bottom: 17px;
}

.advantages-main span {
    display: block;
}

.advantages-main i {
    margin-right: 10px;
}

.fa-angle-right:before {
    content: "\f105";
}

.action-main {
    margin-bottom: 10px;
}



@keyframes jump {
    0% {
        top: 0px;
    }
    50% {
        top: 10px;
    }
    100% {
        top: 0px;
    }
}

.btn-action-main {
    transition: all 0.25s;
    font-size: 18px;
    padding: 9px 31px;
    border-radius: .3rem;
    display: inline-block;
    text-decoration: none;
}

.btn-action-main i {
    margin-left: 10px;
}

.reviews {
    padding-top: 30px;
    position: relative;
    overflow: hidden;
}

.reviews_wrap {
    padding-top: 15px;
    margin-top: -15px;
    flex-wrap: unset;
    transition: transform 0.6s ease;
}

.arrows_reviews {
    height: 50px;
    position: relative;
    margin: 0 auto;
    width: 200px;
}

.arrow__btn,
.items_numbers {
    position: absolute;
    display: flex;
    top: 50%;
    align-items: center;
    justify-content: center;
    width: 40px;
    color: #fff;
    text-align: center;
    opacity: 0.5;
    height: 40px;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .5);
    border-radius: 8px;
    cursor: pointer;
}

.items_numbers {
    left: 50px;
    width: 100px;
    height: 34px;
    background: none;
    color: #4c4c4c;
    font-weight: 900;
    opacity: 1;
    border-bottom: 1px solid;
    border-radius: 0;
}

.arrow__btn:hover,
.arrow__btn:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9;
}

.arrow__btn::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: transparent no-repeat center center;
    background-size: 100% 100%;
}

.arrow_left {
    left: 0;
}

.arrow_right {
    right: 0;
}

.arrow_left::before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.arrow_right::before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.form_reviews_wrap {
    /* -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out; */
}

.form_reviews_wrap .form-group {
    display: block;
    width: 100%;
    margin: 20px 0;
}

.fontAwesomeSolid {
    font-family: 'FontAwesomeSolid';
    color: #f3cb2a !important;
}

.form_reviews_wrap .form-group label {
    font-weight: 400;
    font-size: 13px;
    letter-spacing: .5px;
    margin-bottom: 5px;
    display: inline-block;
}

.form_reviews_wrap .form-group textarea {
    resize: vertical;
    height: 200px;
}

.form_reviews_wrap .form-control {
    display: block;
    width: 100%;
    height: calc(2.2em + .75rem + 2px);
    padding: .375rem 1rem;
    font-size: 1.0625rem;
    line-height: 2.2;
    border-radius: .25rem;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    outline: none;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.send_review__btn {
    background-color: #6441a4 !important;
    color: #fff !important;
    border: 0px !important;
    box-shadow: none !important;
    cursor: pointer;
}

.send_review__btn:hover {
    background: #7d5bbe !important;
}

.show_hide_form_reviews__btn {
    display: block;
    width: 175px;
    margin: 0 auto;
    background: none;
    color: #6441a4;
    border: none;
    outline: none;
    height: calc(2.2em + .75rem + 2px);
    padding: .375rem 1rem;
    font-size: 1.0625rem;
    line-height: 2.2;
    cursor: pointer;
    background: rgb(247 247 247);
    padding: 3px 0px;
    height: auto;
    line-height: unset;
    border-radius: 3px;
    margin-top: 10px;
    border: 1px solid rgb(216 216 216);
    margin-bottom: 20px;
}

.show_hide_form_reviews__btn:hover {
    background: linear-gradient(180deg, rgba(229, 221, 244, 1) 0%, rgba(238, 237, 241, 1) 100%);
}

.show_hide_form_reviews__btn.off {
    color: #a0a0a0;
}

.reviews .title_h2 {
    margin-top: 0;
}

.rate-box .rate-title {
    color: #392e5c;
    display: block;
    font-size: 16px;
    line-height: 16px;
    white-space: nowrap;
    box-sizing: border-box;
    margin-bottom: 15px;
    position: relative;
}

.rate-box .rate-title i {
    margin-right: 10px;
    color: #f3cb2a;
}

.badge {
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
}

.rate-title .badge {
    font-weight: 400;
    color: rgb(236, 19, 19);
    float: right;
    font-size: 16px;
    font-weight: 500;
    padding: 0px;
    line-height: 16px;
}

.rate-box-price {
    font-size: 16px;
    margin: 0 -10px;
    padding-bottom: 15px;
}

.rate-box-content {
    padding-bottom: 10px;
}

.rate-box-price-title {
    width: 65%;
    text-align: center;
    display: inline-block;
    float: left;
    padding: 0 10px;
    line-height: 32px;
}

.rate-box-price-title.price-new div {
    background: #6441a4;
    color: white;
}

.rate-box-price-title div {
    border-radius: 3px;
}

.rate-box-price-title.price-old {
    width: 35%;
}

.rate-box-price-title.price-old div {
    background: #f6f6f6;
    color: #5a5a5a;
}

.rate-box-content p {
    font-size: 16px;
    line-height: 24px;
    color: #392e5c;
    margin-bottom: 5px;
    position: relative;
    padding-left: 25px;
    padding-bottom: 0px;
}

.rate-item-content {
    color: #6441a4;
    fill: currentColor;
    position: absolute;
    top: 50%;
    margin-top: -8px;
    margin-left: -25px;
    display: inline-block;
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJ0dy1zdmdfX2Fzc2V0IHR3LXN2Z19fYXNzZXQtLWluaGVyaXQgdHctc3ZnX19hc3NldC0tdmVyaWZpZWQiIHdpZHRoPSIxNnB4IiBoZWlnaHQ9IjE2cHgiIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDE4IDE4IiB4PSIwcHgiIHk9IjBweCIgaWQ9InN2ZyIgZmlsbD0iIzY0NDFhNCI+PHBhdGggZD0iTTIuNjM2IDIuNjM2TDkgMGw2LjM2NSAyLjYzNkwxOCA5bC0yLjYzNSA2LjM2NUw5IDE4bC02LjM2NC0yLjYzNUwwIDlsMi42MzYtNi4zNjR6TTcuMzggMTMuMTFsNi4wOTctNi40Mi0xLjQ1LTEuMzc4LTQuNzI2IDQuOTgtMS42MTMtMS41Mi0xLjM3IDEuNDU4IDMuMDY1IDIuODh6Ii8+PC9zdmc+);
    width: 16px;
    height: 16px;
}

.rate-box-price-title.price-old span:nth-child(1) {
    text-decoration: line-through;
}

.fa-user:before {
    content: "\f007";
    font-family: FontAwesomeSolid;
    color: rgb(236, 19, 19);
    font-size: 12px;
    position: relative;
    left: 7px;
    top: -1px
}

.guarantees {
    position: relative;
}

.block-guarantees-background {
    background: -webkit-gradient(linear, left top, right top, from(#8641dc), to(#6441a4));
    background: linear-gradient(to right, #8641dc, #6441a4);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 55%;
    z-index: -1;
    overflow: hidden;
}

.block-guarantees-background:before {
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
    background-color: rgba(137, 90, 216, .58);
    left: -20px;
    right: 0;
    bottom: -150px;
}

.block-guarantees-background:after {
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
    background-color: rgba(137, 90, 216, .58);
    right: -20px;
    left: 0;
    bottom: -170px;
}

.block-guarantees-background:after,
.block-guarantees-background:before {
    position: absolute;
    display: block;
    height: 200px;
    content: "";
}

footer {
    background: #19171c;
    padding-top: 40px;
    padding-bottom: 20px;
    color: #898395;
    /* position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 214px; */
}

footer .col__1_4 {
    padding-right: 0;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.footer-logo {
    margin-bottom: 15px;
    display: block;
}

img {
    vertical-align: middle;
    border-style: none;
}

.container-footer-title {
    color: #d3cae8;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 18px;
    height: 18px;
    display: block;
}

.help-footer {
    padding: 0px;
    margin: 0px;
    list-style: none;
    line-height: 30px;
}

.help-footer li a {
    color: #898395;
    transition: color 0.25s;
    text-decoration: none;
    background-color: transparent;
}

.help-footer li a:hover,
.help-footer li a:active,
.help-footer li a:focus {
    color: white;
    text-decoration: none;
}

.pay-footer {
    margin-top: 10px;
}

.help-footer-contact li a {
    text-decoration: underline;
}

.help-footer li a {
    color: #898395;
    transition: color 0.25s;
}

.button_switch ul {
    text-align: center;
    margin-bottom: 20px;
}

.button_switch ul li {
    list-style: none;
    display: inline-block;
    /* margin: 0 2px; */
    border-radius: 3px 3px 0 0;
    /* background: #af8dee; */
    border: 1px solid #c5cbcf;
    background: #f7f7f7;
    color: #686d71;
    padding: 5px 10px;
    cursor: pointer;
    /* transition: background 0.5s ease-out, color 0.5s ease-out; */
    z-index: 1;
    position: relative;
}

.button_switch ul li:hover {
    background: rgb(229, 221, 244);
    background: linear-gradient(180deg, rgba(229, 221, 244, 1) 0%, rgba(238, 237, 241, 1) 100%);
}

.button_switch ul li.active {
    background: #5f42a1;
    border: 1px solid #a1a9b3;
    color: white;
    z-index: 3;
}

.button_switch ul li.active::after {
    display: block;
    content: '';
    background: #5f42a1;
    width: 100%;
    padding: 0 1px;
    box-sizing: content-box;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: -1px;
}

.button_switch ul li.active:first-child::after {
    left: 0;
}

.button_switch ul li.active:last-of-type::after {
    left: -2px;
}

.polosa {
    margin: 0 auto;
    /* width: 653px; */
    height: 4px;
    border: 1px solid #a1a9b3;
    background: #5f42a1;
    position: relative;
    top: -4px;
    z-index: 2;
}

.prices {
    margin-top: 60px;
}

.followers {
    margin-bottom: 30px;
}

.reviews_soc {
    text-align: center;
}

.reviews_soc>a {
    margin-right: 20px;
}

.button_switch {
    text-align: center;
}

.button_switch ul {
    display: inline-block;
}

.reviews_soc_h2 {
    margin-bottom: 20px
}

.list_pages {
    margin: 10px 20px;
    padding-bottom: 5px;
}

.list_pages>ul>li {
    list-style-type: circle;
    color: rgb(100, 65, 164);
}

.sub_items {
    margin-left: 20px;
}

.sub_items li {
    list-style-type: circle;
    color: rgb(100, 65, 164);
}

.inf {}

.inf>div {
    background: #5f42a1;
    border: 1px solid #a1a9b3;
    color: white;
    padding: 15px 30px;
    display: none;
}

.inf .promocode {
    -webkit-box-shadow: 0 0px 5px 0 rgb(225 225 225 / 60%);
    box-shadow: 0 0px 5px 0 rgb(225 225 225 / 60%);
    padding: 5px 10px;
    margin: 10px 0 0;
}

.inf>div.active {
    display: block;
}

.list_lng {
    height: 36px;
    margin: 0;
}

.list_lng li {
    list-style: none;
    display: block;
    width: 50%;
    margin: 0;
    border-radius: 3px 3px 0 0;
    border: 1px solid #c5cbcf;
    background: #f7f7f7;
    color: #686d71;
    padding: 5px 10px;
    cursor: pointer;
    transition: background 0.3s linear;
    float: left;
    text-align: center;
}

.list_lng li:hover {
    background: #ececec;
    border: 1px solid #a1a9b3;
}

.list_lng li.active {
    background: #5f42a1;
    border: 1px solid #5f42a1;
    color: white;
}

.page-content li {
    margin-left: 20px;
}


/* CUSTOM SELECT ///////////////////////////////////////////////////////*/


/*the container must be positioned relative:*/

.custom_select_lang {
    position: relative;
    font-family: Arial;
}

.custom_select_lang select {
    display: none;
    /*hide original SELECT element:*/
}


/*style the arrow inside the select element:*/


/* .select-selected:after {
  position: absolute;
  content: "";
  top: 17px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
} */


/*point the arrow upwards when the select box is open (active):*/


/* .select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 10px;
} */


/*style items (options):*/

.custom_select_lang .select-items {
    position: absolute;
    background-color: #24272d;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    line-height: 25px;
    font-size: 13px;
    word-spacing: 7px;
    width: 117px;
}

.select-items a {
    text-decoration: none;
    color: #fff;
}


/*hide the items when the select box is closed:*/

.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

.custom_select_lang .select-items div,
.custom_select_lang .select-selected {
    color: #fff;
    padding: 2px 6px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
    border-radius: 6px;
}

.custom_select_lang .select-selected {
    background-color: #24272d;
    border: 1px solid #191919;
    line-height: 25px;
    font-size: 13px;
    word-spacing: 7px;
}


/* CUSTOM SELECT */

@media screen and (max-width: 1210px) {
    .col__780_000 {
        display: none;
    }
    footer .col__780_100 {
        flex: 0 0 33%;
        max-width: 33%;
    }
}

@media screen and (max-width: 1110px) {
    .nav_container>ul>li.hide_btn__about,
    .nav_container>ul>li.hide_btn__reviews,
    .nav_container>ul>li.hide_btn__prices,
    .nav_container>ul>li.hide_btn__news,
    .nav_container>ul>li.hide_btn__guarantees{
        display: none;
    }
}

/* .nav_container>ul>li.hide_btn__news,
.nav_container>ul>li.hide_btn__blog {
    @media screen and (max-width: 1110px) {
        display: none;
    }
} */

@media screen and (max-width: 780px) {
    .nav_container>ul>li.hide_btn__blog {
        display: none;
    }
    footer .col__780_100,
    .col__780_100 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .title-main {
        font-size: 28px;
        line-height: 32px;
    }
    .advantages-main {
        font-size: 15px;
        line-height: 30px;
    }
    .button_switch ul li {
        font-size: 0.4em
    }
    .container-footer-title {
        margin-top: 15px;
    }
    .custom_select_lang .select-selected {
        width: 30px;
        height: 31px;
    }
    .title_lng_hide {
        display: none;
    }
    .custom_select_lang {
        position: relative;
        right: -25px;
        width: 30px !important;
    }
}

@media screen and (max-width: 560px) {
    .nav_container>ul>li.hide_btn__login,
    .nav_container>ul>li.hide_btn__register {
        font-size: 12px;
        padding: 0 !important;
    }
    .nav_login__btn,
    .nav_reg__btn {
        padding: 0 clamp(0px, 2vw, 10px) !important;
        line-height: 28px;
    }
    #logo_top {
        width: 130px;
        height: 17px;
    }
    .nav_container {
        right: 7px;
    }
    .nav_container>ul>.nav_login__btn_li {
        margin-right: 5px;
    }
}

.min_title_icon {
    display: none;
    font-family: 'FontAwesomeSolid';
}

@media screen and (max-width: 370px) {
    .min_title_icon {
        display: block;
    }
    .norm_title_text {
        display: none;
    }
}

.main_container>.row_container,
.row_container.chas {
    flex-wrap: wrap;
}

.row_container.reviews_wrap {
    flex-wrap: unset;
}


/* .hide_btn__news{
    border-left: solid 1px #d3cae8;
    padding-left: 15px;
    margin-left: -15px;
} */

.soc_wiget {
    bottom: 15px;
    right: 15px;
    opacity: 1;
    transition: opacity 0.5s ease 0s;
    box-sizing: border-box;
    position: fixed;
    z-index: 100;
}

.soc_wiget>* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    box-sizing: border-box;
}

.soc_bottons_list {
    display: none;
}

.soc_item_circle {
    display: flex;
    margin-top: 14px;
    position: relative;
    -webkit-box-pack: end;
    justify-content: flex-end;
}

@keyframes soc_item_title_anim {
    from {
        opacity: 0;
        margin-right: -50px;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        margin-right: 14px;
        transform: scaleX(1);
    }
}

@keyframes soc_item_title_anim2 {
    from {
        background-color: rgba(75, 54, 124, 0.2);
    }
    to {
        background-color: rgba(75, 54, 124, 1);
    }
}

.soc_item_circle:hover .soc_item_title {
    display: block;
    animation: 0.2s linear 0s 1 normal none running soc_item_title_anim;
}

.soc_item_circle:hover .soc_item_link {
    background-color: rgba(75, 54, 124, 1);
    animation: 0.3s linear 0s 1 normal none running soc_item_title_anim2;
}

.soc_item_title {
    order: 1;
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
    font-size: 13px;
    border: 1px solid rgb(226, 226, 226);
    padding: 4px 9px 6px;
    margin: auto 14px auto 0px;
    border-radius: 4px;
    color: rgb(51, 51, 51);
    background: white;
    top: 12px;
    box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 5px;
    white-space: nowrap;
    display: none;
    z-index: 100;
    line-height: 15px;
}

.soc_item_link {
    width: 50px;
    height: 50px;
    /* background: #4b367c; */
    order: 2;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 5px 2px;
    transition: all 0.5s ease 0s;
    position: relative;
    z-index: 200;
    display: block;
    border: 0px none;
}

.soc_item_img {
    width: 50px;
    height: 50px;
}

.soc_item_link.tg {
    background-color: rgb(0, 136, 204);
}

.soc_item_link.vk {
    background-color: rgb(99, 131, 168);
}

.soc_item_link_main {
    width: 50px;
    height: 50px;
    background: #4b367c;
    order: 2;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.4) 2px 2px 6px;
    transition: all 0.5s ease 0s;
    position: relative;
    z-index: 200;
    display: block;
    border: 0px none;
}

@keyframes soc_item_main_botton_anim {
    0% {
        transform: rotate(270deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes soc_item_main_botton_anim2 {
    from {
        opacity: 0;
        margin-bottom: -50px;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        margin-bottom: 14px;
        transform: scaleX(1);
    }
}

.soc_item_circle .soc_item_link_main {
    /* animation-duration: 0.8s;
    animation-name: soc_item_main_botton_anim; */
    transition-property: all;
    transition: .8s
}

.soc_item_circle:hover .soc_item_link_main {
    /* animation-duration: 0.8s;
    animation-name: soc_item_main_botton_anim; */
    transform: rotate(360deg);
}

.soc_wiget:hover .soc_bottons_list {
    display: block;
    animation-duration: 0.3s;
    animation-name: soc_item_main_botton_anim2;
}

/* * Переопределения для тёмной темы (влияют только при [data-theme="dark"]) */
[data-theme="dark"] body {
    background: var(--bg-body);
    color: var(--text-main);
}

[data-theme="dark"] .nav_wrap,
[data-theme="dark"] nav {
    background: var(--nav-bg) !important;
}

[data-theme="dark"] .nav_container>ul>li>a:not(.nav_login__btn):not(.nav_reg__btn):not(.jelt_btn):not(.btn-action-main):not(.main_action__btn) {
    color: var(--link);
}

/* Сохраняем фирменные цвета текста на кнопках в тёмной теме */
[data-theme="dark"] .nav_container>ul>li>a.nav_login__btn,
[data-theme="dark"] .nav_container>ul>li>a.nav_reg__btn {
    color: #ffffff;
}

[data-theme="dark"] .nav_container>ul>li>a.jelt_btn,
[data-theme="dark"] .btn-action-main,
[data-theme="dark"] .main_action__btn {
    color: #000000;
}

[data-theme="dark"] .nav_container>ul>li>a:hover {
    color: var(--link-hover) !important;
}

[data-theme="dark"] .white-box {
    background: var(--card-bg) !important;
}

[data-theme="dark"] .white-box p,
[data-theme="dark"] .box-title,
[data-theme="dark"] .rate-box .rate-title,
[data-theme="dark"] .rate-box-content p {
    color: var(--card-text) !important;
}

[data-theme="dark"] .form_reviews_wrap .form-control {
    background-color: var(--card-bg) !important;
    color: var(--text-main) !important;
    border-color: var(--border) !important;
}

[data-theme="dark"] .show_hide_form_reviews__btn {
    background: var(--surface) !important;
    border-color: var(--border) !important;
    color: var(--text-main) !important;
}

[data-theme="dark"] .rate-box-price-title.price-old div {
    background: var(--surface) !important;
    color: var(--text-muted) !important;
}

[data-theme="dark"] footer {
    background: var(--footer-bg) !important;
}

