body, .lang, .modal__content, .settings-input--free, .settings-input__content, .settings__content, .selectbox__content{
  background: #0d1117 !important;
}

/* .content-loading::after, */
.player-video__loader, /* в плеере */
.activity__loader, /* основная  */
/* .processing__loader,  */
/* .birthday__poster,  */
.loading-layer__ico,  /* нижняя часть при загрузки в плеере */
.search-source--loading .search-source__count, /* загрузка в поиске */
/* .modal-loading,  */
/* .modal-pending__loading,  */
.season-episode__loader, 
.screensaver__preload 
/* .extensions__item-check, 
.iframe__body */
{
  background-image: url(../img/loader.svg) !important;
  animation: spin-reverse 2s linear infinite !important;
}

@keyframes spin-reverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

/* .full-start-new__body {
    align-items: flex-start;
} */

.view--online {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.view--online svg {
    opacity: 0;
    position: absolute;
    pointer-events: none;
    width: 1.5em;
    height: 1.5em;
}

.view--online::before {
    content: '';
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background-image: url("data:image/svg+xml,%3Csvg fill='white' viewBox='0 0 56 56' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M27.9999 51.9063C41.0546 51.9063 51.9063 41.0781 51.9063 28 51.9063 14.9453 41.0312 4.0937 27.9765 4.0937 14.8983 4.0937 4.0937 14.9453 4.0937 28 4.0937 41.0781 14.9218 51.9063 27.9999 51.9063ZM27.9999 47.9219C16.9374 47.9219 8.1014 39.0625 8.1014 28 8.1014 16.9609 16.914 8.0781 27.9765 8.0781 39.0155 8.0781 47.8983 16.9609 47.9219 28 47.9454 39.0625 39.039 47.9219 27.9999 47.9219ZM23.8749 36.625L36.414 29.2188C37.328 28.6563 37.3046 27.3672 36.414 26.8516L23.8749 19.3984C22.914 18.8359 21.6483 19.2812 21.6483 20.3359V35.6875C21.6483 36.7656 22.8436 37.2344 23.8749 36.625Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.view--online.focus::before,
.view--online:focus-visible::before {
    background-image: url("data:image/svg+xml,%3Csvg fill='black' viewBox='0 0 56 56' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M27.9999 51.9063C41.0546 51.9063 51.9063 41.0781 51.9063 28 51.9063 14.9453 41.0312 4.0937 27.9765 4.0937 14.8983 4.0937 4.0937 14.9453 4.0937 28 4.0937 41.0781 14.9218 51.9063 27.9999 51.9063ZM27.9999 47.9219C16.9374 47.9219 8.1014 39.0625 8.1014 28 8.1014 16.9609 16.914 8.0781 27.9765 8.0781 39.0155 8.0781 47.8983 16.9609 47.9219 28 47.9454 39.0625 39.039 47.9219 27.9999 47.9219ZM23.8749 36.625L36.414 29.2188C37.328 28.6563 37.3046 27.3672 36.414 26.8516L23.8749 19.3984C22.914 18.8359 21.6483 19.2812 21.6483 20.3359V35.6875C21.6483 36.7656 22.8436 37.2344 23.8749 36.625Z'/%3E%3C/svg%3E");
    outline: none;
}

.settings-folder.focus, .settings-param.focus, .selectbox-item.focus, .noty, .simple-button, .lampac-loading {
  background-color: #1a1d26;
}

.search-source__count {
    /* border-radius: 0.3em !important; */
    font-size: 0.9em !important;
    padding: 0.3em !important;
    min-width: 1.6em !important;
    font-weight: 500 !important;
}

/* Форма регистрации */
/* ========== ОСНОВНЫЕ СТИЛИ ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
max-width: 500px;
    width: 100%;
    background-color: #13141899;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

h1 {
    color: #e4e6f0;
    margin-bottom: 10px;
    font-size: 28px;
    text-align: center;
    font-weight: 500;
}

.subtitle {
    color: #8f9199;
    margin-bottom: 30px;
    text-align: center;
    font-size: 16px;
}

.container > h1 > svg 
{background: #1e1f26;
    border-radius: 20px;
    padding: 3px;
    border: 1px solid #0f1014;
    vertical-align: sub;}

/* ========== ШАГИ ========== */
.step {
    display: none;
}

.step.active {
    display: block;
}

.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
}

.step-dot {
    width: 40px;
    height: 40px;
    border-radius: 10%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #6f7179;
    transition: all 0.3s;
}

.step-dot.active {
background-color: #1e1f26;
    color: #D8C39A;
    border: 1px solid #0f1014;
}

.step-dot.completed {
    background-color: rgba(255, 255, 255, 0.1);
    color: #D8C39A;
    border-color: #D8C39A;
}

/* ========== ФОРМЫ ========== */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #b4b6c0;
    font-weight: 500;
}

input {
    width: 100%;
    padding: 15px;
    border: 1px solid #0f1014;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s;
    background: #1e1f26;
    color: #e4e6f0;
}

/* input:focus {
    outline: none;
    border-color: #D8C39A;
    background: #23242b;
} */

input::placeholder {
    color: #5f6169;
}

/* ========== КНОПКИ ========== */
.btn {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    color: #e4e6f0;
    border: 0px solid #2f3038;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 15px;
}

.btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #D8C39A;
    border-color: #D8C39A;
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #D8C39A;
}

/* ========== РЕЗУЛЬТАТЫ ========== */
.result {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    display: none;
}

.result.show {
    display: block;
}

.result.success {
    background: rgba(216, 195, 154, 0.1);
    color: #D8C39A;
    border: 1px solid #D8C39A;
}

.result.error {
    background: rgba(220, 53, 69, 0.15);
    color: #f8b4bd;
    border: 1px solid #dc3545;
}

.result.info {
    background: rgba(23, 162, 184, 0.15);
    color: #96d9e8;
    border: 1px solid #17a2b8;
}

/* ========== АНИМАЦИЯ ЗАГРУЗКИ ========== */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #3f4048;
    border-top: 3px solid #D8C39A;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========== КОД ПОДТВЕРЖДЕНИЯ ========== */
.account-modal-split__info {
    background: #1e1f26;
    border-radius: 15px;
    padding: 20px !important;
    margin: 20px 0;
    border: 1px solid #2f3038;
}

.account-modal-split__title {
    font-size: 18px;
    font-weight: 600;
    color: #e4e6f0;
    margin-bottom: 10px;
}

.account-modal-split__text {
    font-size: 14px;
    color: #b4b6c0;
    margin-bottom: 20px;
    line-height: 1.5;
}

.account-modal-split__code {
    display: flex;
    gap: 2px;
    justify-content: center;
}

.account-modal-split__code-num {
    width: 45px;
    height: 45px;
    background: #0d1117;
    border: 1px solid #2f3038;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #e4e6f0;
    transition: all 0.3s;
}

.account-modal-split__code-num.filled {
    border-color: #D8C39A;
    background: #1e1f26;
    box-shadow: 0 0 10px rgba(216, 195, 154, 0.2);
}

.account-modal-split__code-num span {
    display: block;
}

/* ========== КЛАВИАТУРА ========== */
.account-modal-split__keyboard {
    margin-top: 15px;
}

.simple-keyboard {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hg-row {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.hg-button {
    width: 55px;
    height: 55px;
    background: #1e1f26;
    border: 1px solid #2f3038;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
    color: #e4e6f0;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.hg-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #D8C39A;
    color: #D8C39A;
    transform: scale(1.03);
}

.hg-button:active {
    transform: scale(0.97);
}

.hg-functionBtn {
    background: #2f3038;
}

.hg-functionBtn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ========== SVG ИКОНКИ ========== */
.icon-backspace, .icon-enter {
    width: 28px;
    height: 28px;
    fill: currentColor;
    display: block;
}

.hidden-sprite {
    display: none;
}

.hidden-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

/* ========== ДОПОЛНИТЕЛЬНО ========== */
.info-text {
    font-size: 13px;
    color: #6f7179;
    margin-top: 15px;
    text-align: center;
}

.resend-link {
    color: #D8C39A;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
}

.resend-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.title-icon {color: white;
    vertical-align: middle;
    width: 40px !important;
    height: 40px !important;
    border-radius: 40px;
    padding: 5px;
    border: 1px solid #2f3038;
    background: rgba(0, 0, 0, 0.3);}

.box-uid {background: #1e1f26;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    border: 2px solid #D8C39A;}    

.final-uid {font-size: 48px;
    font-weight: bold;
    color: #D8C39A;
    letter-spacing: 5px;
    font-family: monospace;
    text-align: center;
    background: #0d1117;
    padding: 15px;
    border-radius: 8px;}
    
    @media screen and (max-width: 767px) {
    .final-uid {
        font-size: 28px;
    } 
}

    @media screen and (min-width: 480px) {
    .final-uid {
        font-size: 24px;
    } 
}
    
.your-uid {font-size: 14px;
    color: #b4b6c0;
    margin-bottom: 10px;}

.bottom-uid {margin-top: 15px;
    font-size: 14px;
    color: #D8C39A;}    

.online-prestige {border-radius: .5em !important;}   
.online-prestige__img {
margin: 5px;
border: solid .1em #31313166;
border-radius: .4em;
}
.online-prestige__img--loaded>img {border-radius: 3px;}

.my_iptv div.card__view {
    border-radius: .5em !important;
}

/* focus иконок плеера */
.player-panel__rnext.focus svg path, .player-panel__rprev.focus svg path {
    stroke: #2c2c2c !important;
}

/* focus полсы просмотра */
.player-panel__timeline.focus {box-shadow: 0 0 0 0em #fff !important;}
/* Высота полсы просмотра */
.player-panel__timeline {
    height: 0.3em !important;
}
/* Модульное окно deny.js */


.modal__body {display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 90%;}
    @media screen and (max-width: 767px) {
.modal__body .scroll__content {
    max-height: 100em;
}
}

    @media screen and (min-width: 480px) {
.modal__body .scroll__content {
    max-height: 100em;
}
}

.account-add-device .about {    margin-bottom: 0em !important;}
/* OR -код */
.qr-box {padding-top: 0px;}
.about-qr-box {display: flex;
    justify-content: center;
    align-items: center;
    margin: 34px 0;}

.about-qr {background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 10px rgb(0 0 0);
    outline: solid 10px #131418;
    text-align: center;
    width: 290px;

}        


/* Потрер (карточки) */
.card__img {
    border-radius: 0.4em !important;
}

/* Фокус постера     */
.card.focus .card__view::after, .card.hover .card__view::after, .card-episode.focus .full-episode::after, .full-episode.focus::after, .online-prestige.focus::after, .online-prestige.focus::after {
    border: 0.1em solid #4d4d4d69 !important;
    box-shadow: inset 0 0 4px 4px rgb(255 255 255 / 75%);
    border-radius: 0.8em !important;
}

.scroll--mask {
mask-image: none !important;
}

/* рейтинг карточек */
.card__vote {
    border-radius: 0.4em !important;
    font-weight: 300;
    padding: 0.4em 0.4em !important;
    background: #4CAF50 !important;
    font-size: 0.8em !important;
}

 /* иконка плей на постере */
.card__icon {
    width: 1.7em !important;
    height: 1.7em !important;
}

.card__type{
    left: 0.5em !important;
    top: 0.5em !important;
}
.card__quality {
    left: 0.5em !important;
    bottom: 0.5em !important;
    border-radius: 0.4em !important;
}

.card__vote {
    right: 0.5em !important;
    bottom: 0.5em !important;
}

.full-person {
    padding: 10px 20px 10px 10px;
}
.card-watched, .full-start-new__img, .full-start__button, .full-episode__body, 
.full-episode__img, .full-episode__img img, .items-line__more, .reaction {border-radius: .4em !important;}
.full-person, .full-person.focus {border-radius: 1.5em !important;}

/* Плеер */
.player-panel__position {
    background-color: #4b8dca !important;
    min-width: 0.3em;
}
.time-line > div {background-color: #4b8dca !important;}
.player-panel__peding{min-width: 0.3em;}
.player-panel__timeline.focus .player-panel__position > div:after {
    background-color: #fff !important;
    width: 0.5em !important;
    height: 0.5em !important;
}

.player-panel__position > div:after {
    background-color: #0277ff00 !important
}

.player-panel__line {margin: 6px 1px;}
/* Всплывающее уведомление */
.noty {
    left: 2em !important;
    right: 2em !important;
    bottom: 2em !important;
    border-radius: 3em;
    color: #fff!important;
    font-weight: 500;
}

.lampac-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  padding: 10px 30px;
  border-radius: 50px;
  font-family: Arial, sans-serif;
  font-size: 1.4em;
  text-align: center;
  /* text-transform: uppercase; */
  line-height: 1.5;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}

.lampac-loading.show {
  opacity: 1;
}

/* кнопка информация в закладках */
.empty__footer .simple-button.selector:last-child {
    display: none !important;
}
.empty__footer .simple-button.selector:first-child {
    margin-right: 0 !important;
}

/* возраст и статус */
.full-start__pg {
    font-size: 1.2em;
    border: 1px solid #fff;
    -webkit-border-radius: 0.2em;
    -moz-border-radius: 0.2em;
    background-color: rgb(255 103 0);
    border-radius: 0.4em;
    padding: 0.7em 0.6em;
}

            .full-start-new__head {
                margin-bottom: 1em;
            }
            
            body.cardify-trailer-active .full-start__background {
                opacity: 0 !important;
            }
            
            .cardify {
                transition: all .3s;
            }
            
            .cardify .full-start-new__body {
                height: 80vh;
            }
            
            .cardify .full-start-new__right {
                display: flex;
                align-items: flex-end;
            }
            
            .cardify .full-start-new__title {
                text-shadow: 0 0 .1em rgba(0,0,0,0.3);
            }
            
            .cardify__left {
                flex-grow: 1;
            }
            
            .cardify__right {
                display: flex;
                align-items: center;
                flex-shrink: 0;
                position: relative;
            }
            
            .cardify__details {
                display: flex;
            }
            
            .cardify .full-start-new__reactions {
                margin: 0;
                margin-right: -2.8em;
            }
            
            .cardify .full-start-new__reactions:not(.focus) {
                margin: 0;
            }
            
            .cardify .full-start-new__reactions:not(.focus) > div:not(:first-child) {
                display: none;
            }
            
            .cardify .full-start-new__reactions:not(.focus) .reaction {
                position: relative;
            }
            
            .cardify .full-start-new__reactions:not(.focus) .reaction__count {
                position: absolute;
                top: 28%;
                left: 95%;
                font-size: 1.2em;
                font-weight: 500;
            }
            
            .cardify .full-start-new__rate-line {
                margin: 0;
                margin-left: 3.5em;
                display: flex;
                align-items: center;
            }
            
            .cardify .full-start-new__rate-line > *:last-child {
                margin-right: 0 !important;
            }
            
            /* ===== СТИЛИ ДЛЯ СТАТУСОВ ===== */
            .full-start__status {
   font-size: 1.2em;
    border: 1px solid #fff;
    -webkit-border-radius: 0.2em;
    -moz-border-radius: 0.2em;
border-radius: 0.4em;
    padding: 0.7em 0.6em;
            }
            
            .full-start__status:first-letter {
                text-transform: uppercase;
            }
            
            /* Переопределяем hide для статуса */
            .full-start__status.hide {
                display: inline-block !important;
            }
            
            .full-start__status.status-released {
                background-color: #4b8dca !important;
                color: white !important;
            }
            
            .full-start__status.status-ongoing {
                background-color: #28a745 !important;
                color: white !important;
            }
            
            .full-start__status.status-ended {
                background-color: #dc3545 !important;
                color: white !important;
            }
            
            .full-start__status.status-planned {
                background-color: #ffc107 !important;
                color: black !important;
            }
            
            .full-start__status.status-canceled {
                background-color: #343a40 !important;
                color: white !important;
            }
            /* ===== КОНЕЦ СТИЛЕЙ ДЛЯ СТАТУСОВ ===== */
            
            .cardify__background {
                left: 0;
            }
            
            .cardify__background.loaded:not(.dim) {
                opacity: 1;
            }
            
            .cardify__background.nodisplay {
                opacity: 0 !important;
            }
            
            .cardify.nodisplay {
                transform: translate3d(0,50%,0);
                opacity: 0;
            }
            
            .full-start-new__tagline {
                margin-top: 1em !important;
            }

.empty__img {margin-left: 60px;}

    @media screen and (max-width: 767px) {
.empty__img {margin-left: 40px;}
}

    @media screen and (min-width: 480px) {
.empty__img {margin-left: 20px;}
}

.account-modal__site a {text-decoration:none; font-weight: 500; color: #fff;}

.sisi-18-warning {color: #ffaa00;
    background-color: #32343d87;
    padding: 5px 20px 15px 20px;
    margin: 0px 20px 20px 20px;
    text-align: center;
    border: 2px solid #ffffff;
    border-radius: 20px;line-height: 1.2;} 
.sisi-18-warning span {color: #c91e1e;
    font-size: 1.3em;
    font-weight: 500;text-decoration: underline;line-height: 1.6;}

        .menu__item[data-action="nav_button"] .menu__ico svg {
            transition: color 0.2s ease;
        }
        .menu__item[data-action="nav_button"]:hover .menu__ico svg,
        .menu__item[data-action="nav_button"].focus .menu__ico svg {
            color: #000000 !important;
        }

.head__markers {
    margin: 0 1em 0 2em !important;
}

.full-start-new__rate-line .full-start__rate {
    padding: 4px;
    border: 1px solid #7f7f7f54;
}

.full-start__rate > div:first-child {
    border-right: 0.1px solid #7f7f7f54 !important;
    border-radius: 0 !important;
    background: none !important;
    padding: 0.5em 1.2em 0.5em 1em;
}

.view--online {
    position: relative;
    display: inline-flex;
    align-items: center;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
}


.card__promo {
    border-bottom-left-radius: 0.4em !important;
    border-bottom-right-radius: 0.4em !important;
}

.full-person__photo {
    border-radius: 0.4em !important;
}

.explorer-card__head-body {display: none !important;}
.explorer-card__head-left {
    width: 95% !important;
    margin-right: 1.5em;
}
.explorer-card__head {margin-bottom: 2em !important;}