@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
}

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

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: #0f2419;
    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: #1a5f3f;
    padding: 15px 0;
    border-bottom: 1px solid #2ecc71;
    position: fixed;
    z-index: 100;
    width: 100%;
    top: 0;
    left: 0;
}

.header-wrap {
    grid-gap: 20px;
    align-items: center;
    display: grid;
    grid-template-columns: max-content 1fr;
    justify-items: end;
}

.header-logo__img {
    height: 50px;
    width: auto;
}

.menu-wrap {
    grid-gap: 15px;
    align-items: center;
    display: grid;
    grid-template-columns: 1fr max-content max-content max-content max-content max-content;
}

.main-nav {
    padding-right: 20px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.main-nav__list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
    margin-left: 0;
    padding-left: 0;
}

.nav-item {
    font-size: 14px;
    position: relative;
    font-weight: bold;
}

.bonus-item {
    background-color: #e74c3c;
    border-radius: 5px;
    padding: 5px 10px 5px 30px;
    position: relative;
}

.bonus-item a {
    color: #fff !important;
}

.bonus-item::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url('../assets/img/fire-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.header-bonus-icon {
    display: flex;
    align-items: center;
}

.header-bonus-icon img {
    width: 24px;
    height: 24px;
}

.header-time {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.header-lang {
    background-color: #0d3d26;
    border-radius: 5px;
    padding: 5px 10px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

.nav-item__link {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.main-nav__list li:hover>a {
    color: #ffffff;

}

.header-lang {
    display: flex;
    align-items: center;
    color: #fff;
}

.btn {
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    line-height: 36px;
    text-transform: uppercase;
	width: fit-content;
}

.btn-register {
    background-color: #FFBB29;
    box-shadow: 0 6px 18px rgba(5, 242, 107, 0.3);    
}


.btn-login {
    background-color: #1a5f3f;
    box-shadow: 0 6px 18px rgba(26, 95, 63, 0.3);
}

.btn a {
    color: var(--btn-text);
    display: block;
    padding: 0 20px;
    font-weight: bold;   
}

body > header > div > div > div.menu-wrap > div.btn.btn-register > a {
    color: #000;
}

.btn:hover {
    opacity: .86
}

.menu-mob-btn {
    background: var(--default-color) url(../assets/img/mob-menu-icon.svg) no-repeat 50%;
    background-size: 15px;
    border: 1px solid var(--default-color);
    border-radius: 4px;
    display: none;
    height: 42px;
    justify-self: flex-end;
    width: 42px;
    cursor: pointer;
    position: relative;
    z-index: 9999;
}

.menu-mob-btn.-toggle {
    background: var(--default-color) url(../assets/img/mob-menu-close-icon.svg) no-repeat 50%;
    background-size: 15px
}

.main {
    background-color: #0f2419;
    color: #e5e6ec;
    padding-top: 82px; /* Высота хедера */
}

/*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: 32px auto;
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #2ecc71;
    background: #0d3d26;
    border-radius: 8px;
    overflow: hidden;
    table-layout: fixed;
}

/* Обертка для горизонтального скролла на мобильных устройствах */
@media (max-width: 768px) {
    .post-entry table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Для десктопов - таблица занимает только необходимое пространство */
@media (min-width: 769px) {
    .post-entry table {
        display: table;
        table-layout: auto;
        width: auto;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

.post-entry table th {
    background: #2ecc71;
    color: #ffffff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    border: none;
}

.post-entry table td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #e8f4f8;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Двухцветные строки */
.post-entry table tr:nth-child(odd) {
    background-color: #0d3d26;
}

.post-entry table tr:nth-child(even) {
    background-color: #1a5f3f;
}

.post-entry table tr:hover {
    background: rgba(46, 204, 113, 0.15);
}

/* Специальный класс для таблиц с малым количеством колонок */
.post-entry table.few-columns {
    width: auto !important;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.post-entry table.few-columns td {
    min-width: 120px;
}

/* Адаптивные стили для мобильных устройств */
@media (max-width: 768px) {
    .post-entry table {
        font-size: 13px;
        margin: 20px auto;
    }
    
    .post-entry table th {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .post-entry table td {
        padding: 8px 10px;
        font-size: 13px;
    }
}

.post-entry table tr:nth-child(odd) {
    background-color: #0d3d26;
}

.post-entry table tr td {
    padding: 10px 14px;
}

.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: 40px 0;
    margin-top: 30px;
    background: rgba(26, 95, 63, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.faq-block .faq-block--title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.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 {
    position: relative;
    z-index: 1;
}

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

.faq-block .faq-block--items .faq-block--items__item .faq-block--items__item--header {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 20px;
    position: relative;
    color: #ffffff;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

/* Двухцветные заголовки FAQ */
.faq-block .faq-block--items .faq-block--items__item:nth-child(odd) .faq-block--items__item--header {
    background: #2ecc71;
}

.faq-block .faq-block--items .faq-block--items__item:nth-child(even) .faq-block--items__item--header {
    background: #1a5f3f;
}

.faq-block .faq-block--items .faq-block--items__item .faq-block--items__item--header:hover {
    background: #27ae60;
}

.faq-block .faq-block--items .faq-block--items__item .title-faq {
    position: relative;
    z-index: 2;
}

.faq-block .faq-block--items .faq-block--items__item .title-faq:after {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    content: "+";
    height: 24px;
    width: 24px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.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: #27ae60;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--header .title-faq:after {
    content: "−";
    transform: translateY(-50%);
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--content {
    display: block;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-radius: 0 0 4px 4px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
}

/* Двухцветное содержимое FAQ */
.faq-block .faq-block--items .faq-block--items__item:nth-child(odd).-toggle .faq-block--items__item--content {
    background: #0d3d26;
}

.faq-block .faq-block--items .faq-block--items__item:nth-child(even).-toggle .faq-block--items__item--content {
    background: #1a5f3f;
}

.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;
    text-decoration: underline;
}

.faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--content a:hover {
    color: #27ae60;
}

/* FAQ Mobile Styles */
@media (max-width: 768px) {
    .faq-block {
        padding: 20px 0;
        margin-top: 20px;
    }
    
    .faq-block .faq-block--title {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .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 {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .faq-block .faq-block--items .faq-block--items__item .title-faq:after {
        height: 20px;
        width: 20px;
        right: 12px;
        font-size: 14px;
    }
    
    .faq-block .faq-block--items .faq-block--items__item.-toggle .faq-block--items__item--content {
        padding: 16px;
        font-size: 13px;
        line-height: 1.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: block !important;
        position: absolute;
        right: 15px;
        top: 20px;
    }
    
    .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: contain;
            background-position: right;
            background-repeat: no-repeat;
            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) 45%,transparent 93%);
            z-index: 0;
        }

        .banner-content {
            position: relative;
            z-index: 2;
			text-align: left;
   			width: 90%;
            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: linear-gradient(calc(var(--cms-page-dir-sign, 1) * 90deg),var(--dark-bg-color) 30%,transparent 93%);
    padding: 20px 0;
    margin: 0;
}

.games-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.games-row {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
}

.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: 1;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease;
    max-width: 280px;
}

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

.game-image {
    max-width: 100%;
    height: auto;
    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-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: 15px;
        gap: 10px;
    }
    
    .games-row {
        gap: 8px;
    }
    
    .game-item {
        max-width: none;
        min-width: 0;
    }
    
    .game-image {
          max-width: 100%;
          height: auto;
          border-radius: 8px;
      }
  }

/* Вертикальное раскрывающееся оглавление */
.table-of-contents {
    background: linear-gradient(135deg, #1a5f3f, #0d3d26);
    border: 1px solid #2ecc71;
    border-radius: 8px;
    margin: 20px 0;
    display: block;
    box-shadow: 0 2px 8px rgba(26, 95, 63, 0.3);
    overflow: hidden;
}

.table-of-contents .toc-title {
    margin: 0;
    font-size: 1.1em;
    font-weight: 600;
    color: #b7becf;
    padding: 16px;
    background: rgba(46, 204, 113, 0.1);
    border-bottom: 2px solid #2ecc71;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    user-select: none;
}

.table-of-contents .toc-title:hover {
    background: rgba(46, 204, 113, 0.2);
    color: #ffffff;
}

.table-of-contents .toc-title::after {
    content: '▼';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    font-size: 0.8em;
}

.table-of-contents.collapsed .toc-title::after {
    transform: translateY(-50%) rotate(-90deg);
}

.toc-vertical-wrapper {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.table-of-contents.collapsed .toc-vertical-wrapper {
    max-height: 0;
    padding: 0;
}

.toc-vertical-wrapper::-webkit-scrollbar {
    width: 6px;
}

.toc-vertical-wrapper::-webkit-scrollbar-track {
    background: rgba(26, 95, 63, 0.3);
}

.toc-vertical-wrapper::-webkit-scrollbar-thumb {
    background: #2ecc71;
    border-radius: 3px;
    transition: background 0.2s ease;
}

.toc-vertical-wrapper::-webkit-scrollbar-thumb:hover {
    background: #2f4574;
}

.toc-list {
    list-style: none;
    margin: 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toc-list li {
    margin: 0;
    padding: 0;
}

.toc-link {
    display: block;
    padding: 10px 16px;
    color: #b7becf;
    text-decoration: none;
    font-size: 0.9em;
    line-height: 1.4;
    transition: all 0.2s ease;
    background: rgba(15, 36, 25, 0.5);
    border: 1px solid rgba(67, 92, 148, 0.3);
    border-radius: 6px;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.toc-link:hover {
    color: #ffffff;
    background: rgba(46, 204, 113, 0.1);
    border-color: #ffbb2a;
    border-left-color: #ffbb2a;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(67, 92, 148, 0.2);
}

.toc-level-h3 {
    font-size: 0.85em;
    opacity: 0.95;
    margin-left: 16px;
}

.toc-level-h4 {
    font-size: 0.8em;
    opacity: 0.9;
    margin-left: 32px;
}

.toc-level-h5,
.toc-level-h6 {
    font-size: 0.75em;
    opacity: 0.85;
    margin-left: 48px;
}

@media (max-width: 768px) {
    .table-of-contents {
        margin: 15px 0;
        border-radius: 6px;
    }
    
    .table-of-contents .toc-title {
        font-size: 1em;
        padding: 12px;
    }
    
    .toc-vertical-wrapper {
        max-height: 300px;
    }
    
    .toc-list {
        padding: 12px;
        gap: 3px;
    }
    
    .toc-link {
        font-size: 0.85em;
        padding: 8px 12px;
        border-radius: 4px;
        line-height: 1.3;
    }
    
    .toc-link:hover {
        transform: translateX(2px);
        box-shadow: 0 1px 4px rgba(67, 92, 148, 0.15);
    }
    
    .toc-level-h3 {
        margin-left: 12px;
    }
    
    .toc-level-h4 {
        margin-left: 24px;
    }
    
    .toc-level-h5,
    .toc-level-h6 {
        margin-left: 36px;
    }
}

.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-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;
        margin-top: 82px; /* Добавляем отступ сверху равный высоте хедера */
    }
    
    .banner-item {
        height: 200px;
        background-size: cover;
        padding-top: 40px; /* Увеличиваем отступ сверху */
    }
    
    .banner-content {
        padding-top: 0;
        justify-content: flex-start; /* Выравниваем контент по верху */
    }
    
    .banner-title {
        font-size: 24px; /* Уменьшаем размер заголовка */
        line-height: 1.2;
        margin-bottom: 10px;
    }
    
    .banner-text {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

/*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;
        }

/* Стили для спортивного шаблона */
/* Общие стили для спортивного шаблона */
.sports-layout {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Стили для сайдбара (только для ПК) */
.sports-sidebar {
    width: 250px;
    background-color: #1e2a36;
    overflow-y: auto !important; /* Добавляем вертикальную прокрутку с !important */
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 82px; /* Высота хедера */
    left: 0;
    bottom: 0; /* Прикрепляем к нижнему краю окна */
    z-index: 99; /* Меньше чем у хедера, чтобы не перекрывать его */
    scrollbar-width: thin; /* Для Firefox */
    scrollbar-color: #0f5f2e #1e2a36; /* Для Firefox */
    padding-bottom: 20px; /* Отступ снизу, чтобы не налезать на футер */
}

/* Стили для скроллбара */
.sports-sidebar::-webkit-scrollbar {
    width: 8px;
}

.sports-sidebar::-webkit-scrollbar-track {
    background: #1e2a36;
}

.sports-sidebar::-webkit-scrollbar-thumb {
    background-color: #0f5f2e;
    border-radius: 4px;
}

/* Добавляем отступ для футера, чтобы сайдбар не налезал на него */
footer {
    position: relative;
    z-index: 100; /* Выше чем у сайдбара */
    margin-left: 0;
}

/* Верхнее меню на зеленом фоне */
.ui-nav-items {
    background-color: #0f5f2e;
    padding: 0;
}

.ui-nav-items--separated .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ui-nav-items--separated .nav-item:last-child {
    border-bottom: none;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: #ffffff;
}

.nav-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.favorite-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E");
}

.recommended-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
}

.competitions-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19 5h-2V3H7v2H5c-1.1 0-2 .9-2 2v1c0 2.55 1.92 4.63 4.39 4.94.63 1.5 1.98 2.63 3.61 2.96V19H7v2h10v-2h-4v-3.1c1.63-.33 2.98-1.46 3.61-2.96C19.08 12.63 21 10.55 21 8V7c0-1.1-.9-2-2-2zM7 10.82C5.84 10.4 5 9.3 5 8V7h2v3.82zM19 8c0 1.3-.84 2.4-2 2.82V7h2v1z'/%3E%3C/svg%3E");
}

.games-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-10 7H8v3H6v-3H3v-2h3V8h2v3h3v2zm4.5 2c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4-3c-.83 0-1.5-.67-1.5-1.5S18.67 9 19.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z'/%3E%3C/svg%3E");
}

/* Виды спорта */
.sports-categories {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    background-color: #1e2a36;
}

.sports-category-title {
    padding: 10px 15px;
    font-weight: bold;
    color: #ffffff;
    background-color: #263545;
    font-size: 14px;
}

.sports-list {
    padding: 0;
}

.sport-item {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: #ffffff;
}

.sport-item:hover {
    background-color: rgba(15, 95, 46, 0.2);
}

.sport-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Иконки для видов спорта */
.football-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 3.3l1.35-.95c1.82.56 3.37 1.76 4.38 3.34l-.39 1.34-1.35.46L13 6.7V5.3zm-3.35-.95L11 5.3v1.4L7.01 9.49l-1.35-.46-.39-1.34c1.01-1.57 2.56-2.77 4.38-3.34zM7.08 17.11l-1.14.1C4.73 15.81 4 14 4 12c0-.94.19-1.83.52-2.65L5.8 9.7l1.13.38 1.35 5.24-1.2 1.8zm7.42 2.48c-.79.26-1.63.41-2.5.41s-1.71-.15-2.5-.41l-.69-1.49.64-1.1h5.11l.64 1.11-.7 1.48zM14.27 15H9.73L8.38 9.76 12 7.23l3.62 2.53-1.35 5.24zm3.79 2.21l-1.14-.1-1.21-1.8 1.35-5.24 1.13-.38 1.28.36c.33.82.52 1.71.52 2.65 0 2--.73 3.81-1.93 5.21z'/%3E%3C/svg%3E");
}

.tennis-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M18.5 5.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-14 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm7 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 7c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-7 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm14 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-7 7c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-7 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm14 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z'/%3E%3C/svg%3E");
}

.basketball-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-10H9v2h2v2h2v-2h2v-2h-2V8h-2v2z'/%3E%3C/svg%3E");
}

.hockey-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M2 17v3h2v-4H3c-.55 0-1 .45-1 1zm7-1H5v4l4.69-.01c.38 0 .72-.21.89-.55l.87-1.9-1.59-3.48L9 16zm12.71.29c-.18-.18-.43-.29-.71-.29h-1v4h2v-3c0-.28-.11-.53-.29-.71zm-8.11-3.45L17.65 4H14.3l-1.76 3.97-.49 1.1-.05.14L9.7 4H6.35l4.05 8.84 1.52 3.32.08.18 1.42 3.1c.17.34.51.55.89.55L19 20v-4h-4l-1.4-3.16z'/%3E%3C/svg%3E");
}

.volleyball-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 2.07c3.07.38 5.57 2.52 6.54 5.36L13 5.65V4.07zM8 5.08c1.18-.69 2.54-1.08 4-1.08v2.83L8 10.29V5.08zM5 6.94v4.84c0 .68.44 1.27 1.09 1.49L4.43 16.5c-1.57-1.23-2.61-3.1-2.85-5.2 0-1.57.38-3.06 1.06-4.36h2.36zm5.38 12.44c-1.25-.33-2.37-1-3.27-1.9l1.42-3.12 3.13 3.47-1.28 1.55zm1.56-1.28l-3.15-3.5 5.88-5.1 4.76 7.35-7.49 1.25zm7.94-3.01l-4.78-7.4 7.88-4.09c.96 1.3 1.52 2.9 1.52 4.6 0 3.02-1.7 5.65-4.2 6.99l-.42-.1z'/%3E%3C/svg%3E");
}

.table-tennis-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12.87 15.07l-2.54-2.51.03-.03c1.74-1.94 2.98-4.17 3.71-6.53H17V4h-7V2H8v2H1v1.99h11.17C11.5 7.92 10.44 9.75 9 11.35 8.07 10.32 7.3 9.19 6.69 8h-2c.73 1.63 1.73 3.17 2.98 4.56l-5.09 5.02L4 19l5-5 3.11 3.11.76-2.04zM18.5 10h-2L12 22h2l1.12-3h4.75L21 22h2l-4.5-12zm-2.62 7l1.62-4.33L19.12 17h-3.24z'/%3E%3C/svg%3E");
}

.cricket-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M15.05 12.81L6.56 4.32a.996.996 0 00-1.41 0L2.32 7.15c-.39.39-.39 1.02 0 1.41l8.49 8.49c.39.39 1.02.39 1.41 0l2.83-2.83c.39-.39.39-1.02 0-1.41zm-.71 4.95l3.53 3.53c.39.39 1.03.39 1.42 0 .39-.39.39-1.03 0-1.42l-3.53-3.53-1.42 1.42z'/%3E%3C/svg%3E");
}

.american-football-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M3.02 15.62c-.08 2.42.32 4.34.67 4.69s2.28.76 4.69.67l-5.36-5.36zM13.08 3.28c-2.33.42-4.79 1.34-6.62 3.18s-2.76 4.29-3.18 6.62l7.63 7.63c2.34-.41 4.79-1.34 6.62-3.18s2.76-4.29 3.18-6.62l-7.63-7.63zM9.9 15.5l-1.4-1.4 5.6-5.6 1.4 1.4-5.6 5.6zm11.08-7.12c.08-2.42-.32-4.34-.67-4.69s-2.28-.76-4.69-.67l5.36 5.36z'/%3E%3C/svg%3E");
}

.esports-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-10 7H8v3H6v-3H3v-2h3V8h2v3h3v2zm4.5 2c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4-3c-.83 0-1.5-.67-1.5-1.5S18.67 9 19.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z'/%3E%3C/svg%3E");
}

/* Основной контент */
.sports-main-content {
    flex: 1;
    padding: 0;
    margin-left: 250px;
    margin-right: auto;
}

.article-post, .post-entry {
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* Адаптивные стили для мобильных устройств */
@media (max-width: 768px) {
    .sports-main-content {
        margin-left: 0; /* Убираем отступ на мобильных */
        width: 100%;
        max-width: 100%;
    }
}

/* Мобильная версия - горизонтальный скролл видов спорта */
.sports-categories-mobile {
    display: none;
    margin: 15px 0;
    padding: 0 15px;
    background-color: #1e2a36;
}

.sports-scroll-container {
    display: flex;
    overflow-x: auto;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.sports-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.sports-scroll-container .sport-item {
    flex: 0 0 auto;
    margin-right: 15px;
    padding: 10px 15px;
    background-color: #263545;
    border-radius: 4px;
    white-space: nowrap;
}

/* Адаптивные стили */
@media (max-width: 768px) {
    .sports-layout {
        flex-direction: column;
    }
    
    .sports-sidebar {
        display: none;
    }
    
    .sports-categories-mobile {
        display: block;
    }
    
    .sports-main-content {
        padding: 0;
        margin-left: 0; /* Убираем отступ на мобильных */
    }
    
    /* Исправляем баннер в спортивном шаблоне */
    .sports-main-content .banner-container {
        margin-top: 0; /* Убираем отступ сверху, так как он уже есть в .main */
    }
    
    .sports-main-content .banner-item {
        padding-top: 40px; /* Увеличиваем отступ сверху */
    }
    
    .sports-main-content .banner-content {
        padding-top: 0;
        justify-content: flex-start; /* Выравниваем контент по верху */
    }
    .banner-item {
        align-items: start;
    }
}

.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;
}