body {
    background-color: #000000 !important;
    padding: 0px;
    margin: 0px;
    direction: rtl !important; /* Указываем направление справа налево */
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #CCCCCC;
}
a {
    text-decoration: none;
    color: #41adff;
}

a:hover {
    text-decoration: underline;
}
/* Основной стиль header */
.header__wrap_block {
    background-color: #19171F; /* Темно-зеленый фон */
    width: 100%;
}

/* Контейнер header */
#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px; /* Увеличиваем отступы */
}

/* Логотип (справа) */
.LogoMobilePlatform {
    display: flex;
    align-items: center;
    background-image: url('../img/logo.webp'); /* Замените на ваш логотип */
    background-size: contain;
    background-repeat: no-repeat;
    width: 103px;
    height: 20px;
    flex-shrink: 0; /* Запрещаем сжатие */
    margin-right: 15px; /* Отодвигаем логотип от края */
}

/* Контейнер кнопок (слева) */
#menu-right {
    display: flex;
    gap: 8px;
    margin-inline-start: 15px; /* Отодвигаем кнопки от края */
}

/* Общие стили для кнопок */
.header_reg_btn,
.header_login_btn {
    min-width: 80px;
    height: 25px;
    color: black;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
    border: none;
    white-space: nowrap; /* Запрещаем перенос текста */
}

.header_reg_btn {
	background-color: #06df67; /* Желтый цвет */
}

.header_login_btn {
	color: #06df67;
	border: 1px solid #06df67;
}

/* Блок управления выравниванием */
.header_both {
    display: flex;
    justify-content: space-between; /* Элементы разнесены по сторонам */
    align-items: center;
    width: 100%;
}

/* Эффект наведения */
.header_reg_btn:hover,
.header_login_btn:hover {
    background-color: #06df6862;
}
/* Основная обертка */
.main-wrapper {
    background-color: #121212 !important;
    height: 100%;
    padding: 0 24px;
}

.dynamic_container {
    padding: 12px 0;
}

.billboard_container .banners_billboard:not(.empty_banner) {
    padding: 0 16px;
}

/* Swiper стили */
.swiper, swiper-container {
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    list-style: none;
    padding: 0;
    display: block;
}

.swiper-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box;
}

.billboard_container .dynamicBanners_item {
    overflow: hidden;
}



/* Grid блоки */
.banners_thumbnail9 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
    grid-auto-flow: column;
}

.banners_thumbnail9 .dynamicBanners_inner:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.dynamicBanners .dynamicBanners_item {
    height: 100%;
    overflow: hidden;
}

/* Общие стили для изображений */
.banners_peek_carousel .dynamicBanners_img,
.banners_card_stream .dynamicBanners_img,
.banners_largeThumbnail .dynamicBanners_img,
.banners_popup .dynamicBanners_img,
.banners_rectangleAd .dynamicBanners_img,
.banners_thumbnail9 .dynamicBanners_img,
.banners_thumbnail5 .dynamicBanners_img,
.banners_button .dynamicBanners_img,
.banners_square .dynamicBanners_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Дополнительная информация */
.additional-infos {
    background-color: #121212;
    border: 1px solid #2e2e2e;
    border-radius: 16px;
    padding-top: 24px;
}

.additional-infos .info_container {
    overflow: auto;
    padding: 0 24px;
}

.additional-infos.single_list .info_article {
    width: 100%;
}

.additional-infos .info_title {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #FFFFFF;
    margin-bottom: 12px;
}

/* Flex utility classes */
.d-flex {
    display: flex !important;
}

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

@media (max-width: 768px) {
    .dynamic_featured_content a:nth-child(n+3) {
        display: none!important;
    }
}

/* FOOTER STYLES */
.tl_footer_BG {
    background-color: #19171F;
    padding: 40px 0;
    color: #fff;
}

.tl_footer_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer_first_line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer_social-list {
    display: flex;
    gap: 10px;
}

.footer_social-item {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-size: cover;
    background-position: center;
}

.social__instagram-icon {
    background-image: url('https://cdn-icons-png.flaticon.com/512/2111/2111463.png');
}

.tl_footer_links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.tl_footer_links_row {
    flex: 1;
    min-width: 180px;
}

.tl_footer_links_row h2 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #f1c40f;
}

.tl_footer_links_row a {
    display: block;
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.tl_footer_links_row a:hover {
    color: #f1c40f;
}

.iconsFoot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.tl_footer_warning {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cw_footer_18_wrapper i {
    font-size: 24px;
    color: #f1c40f;
}

.copy {
    font-size: 14px;
    color: #ccc;
}

.d-flex.align-items-center a {
    display: inline-block;
    margin-left: 15px;
}

.google_play img {
    height: 40px;
}

@media (max-width: 940px) {
    table {
        font-family: ;
        font-size: small;
    }
}
/* Мобильная адаптация */
@media (max-width: 768px) {
  /* Хедер */
  #header {
    padding: 12px 15px;
  }
  table{
    font-family: ;
    font-size: xx-small;
  }

  .LogoMobilePlatform {
    width: 80px;
    margin-right: 10px;
  }

  #menu-right {
    gap: 5px;
    margin-inline-start: 10px;
  }

  .header_reg_btn,
  .header_login_btn {
    min-width: 60px;
    padding: 8px 12px;
    font-size: 14px;
    height: 20px;
  }

  /* Основной контент */
  .main-wrapper {
    padding: 0 12px;
  }

.billboard_container .banners_billboard_slider .dynamicBanners_item, .billboard_container .banners_billboard_slider .dynamicBanners_item.lca-banner-video-link, .billboard_container .banners_billboard_slider .dynamicBanners_img {
    height: calc(196px + (470 - 196)*(100vw - 320px)/(768 - 320));
}

  .banners_thumbnail9 {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .banners_thumbnail9 .dynamicBanners_inner:first-child {
    grid-column: span 2;
  }

  /* Дополнительная информация */
  .additional-infos {
    padding-top: 16px;
  }

  .additional-infos .info_container {
    padding: 0 12px;
  }

  .additional-infos .info_title {
    font-size: 18px;
    line-height: 24px;
  }

  /* Футер */
  .tl_footer_container {
    padding: 0 15px;
  }

  .footer_first_line {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .tl_footer_links_row {
    min-width: 100%;
    margin-bottom: 20px;
  }

  .tl_footer_links_row h2 {
    font-size: 16px;
  }

  .tl_footer_links_row a {
    font-size: 13px;
  }

  .iconsFoot {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .google_play img {
    height: 35px;
  }
}
@media (max-width: 768px){
    .banners_thumbnail9{
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
  /* Еще более мелкие экраны */
  body {
    font-size: 16px;
    line-height: 24px;
  }

  #header {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .header_both {
    gap: 10px;
  }

  .banners_thumbnail9 {
    grid-template-columns: 1fr;
  }

  .dynamic_container {
    padding: 8px 0;
  }

  .footer_social-item {
    width: 35px;
    height: 35px;
  }

  .copy {
    font-size: 12px;
  }
}

/* Общие улучшения для мобилок */
img {
  max-width: 100%;
  height: auto;
}

button,
a {
  touch-action: manipulation; /* Улучшает отзывчивость на тач */
}

html, body {
    overflow-x: hidden;
}

/* Улучшаем читаемость текста */
p, h1, h2, h3 {
  word-wrap: break-word;
  hyphens: auto;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
button{
    color: #fff;
    background-color: #2e2e2e;
    font-family: inherit;
    font-size: inherit;
    margin-right: 6px;
    margin-bottom: 6px;
    padding: 10px;
    border: 0;
    border-radius: 6px;
    outline: 0;
}
.blob{width:100%;box-shadow:0 0 0 0#000;transform:scale(1);animation:pulse 2s infinite}@keyframes pulse{0%{transform:scale(.95);box-shadow:0 0 0 0 #2e2e2e}70%{transform:scale(1);box-shadow:0 0 0 10px transparent}to{transform:scale(.95);box-shadow:0 0 0 0 transparent}}.promocode{border-style:dashed;font-size:2em;margin:auto;width:50%;padding:10px;text-align:center;display:block}.cta-button{display:inline-block;padding:.5rem 1rem;background-color:#07c;color:#fff;text-align:center;font-size:14px;font-weight:600;text-decoration:none;border-radius:3px;transition:background-color .3s}.cta-button:hover{background-color:#005fa3;text-decoration:none}@media (max-width:767px){.hide-on-mobile{display:none}}