/* Подключение шрифта elementskit для иконок */
@font-face {
    font-family: 'elementskit';
    src: url('fonts/elementskit.woff?y24e1e') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


/* Хедер */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-image: linear-gradient(50deg, #063F9C 65%, #01B3EA 100%);
    padding: 5px 10px;
    color: #fff;
}

.logo {
    flex: 0 0 auto;
}

.logo img {
    max-width: 138px;
    height: auto;
}

.login-form {
    display: flex;
    align-items: center;
    gap: 5px;
}

.login-form__icon {
    display: flex;
    align-items: center;
}

.login-form__icon svg {
    fill: #fff;
}

.login-form__input {
    font-family: Tahoma, Helvetica, sans-serif;
    color: #000;
    font-size: 12px;
    border: 1px solid #063F9C;
    background: #fff;
    border-radius: 4px;
    padding: 5px;
    min-width: 100px;
}

.login-form__button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: #FF0000;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    border-radius: 4px;
    transition: background 0.3s;
}

.login-form__button:hover {
    background: #CC0000;
}

.login-form__button svg {
    fill: #fff;
}

/* Навигация */
.nav {
    background-image: linear-gradient(50deg, #0647b3 65%, #01B5EB 100%);
    padding: 5px 10px;
}

.nav__toggle {
    display: none;
}

.nav__menu {
    list-style: none;
    display: flex;
    gap: 0;
    font-size: 0;
}

.nav__item {
    position: relative;
}

.nav__link {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: background 0.3s;
}

.nav__link:hover {
    background: #0754CC;
}

.nav__burger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

/* Секция новостей */
.news-section {
    background-color: #4A4A4A;
    padding: 5px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.news-container {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
    background-color: #24333A;
    border-bottom: 2px solid #FFFFFF;
}

.news-icon svg,
.news-arrow svg {
    fill: #FFF;
    width: 20px;
    height: 20px;
}

.news-link {
    font-family: "Roboto", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    color: #FFF;
    text-decoration: none;
}

.news-link:hover {
    text-decoration: underline;
}

/* Слайдер */
.slider-image img {
    width: 100%;
    height: auto;
    max-height: 478px;
    object-fit: cover;
}

/* FAQ */
.faq-section {
    background-color: #FFF;
    padding: 10px 0;
}

.faq-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.faq-title {
    font-family: "Roboto", Sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    color: #050505;
    text-align: center;
    margin: 1.5em 0 0.5em;
}

.faq-accordion {
    width: 100%;
    font-family: "Roboto", Sans-serif;
}

.faq-item {
    border: 1px solid #d5d8dc;
}

.faq-item + .faq-item {
    border-top: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background-color: #063F9C;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question.active .faq-icon-closed {
    display: none;
}

.faq-question.active .faq-icon-opened {
    display: block;
}

.faq-icon {
    display: inline-block;
    width: 1.5em;
    text-align: right;
}

.faq-icon svg {
    fill: #FFF;
    width: 1em;
    height: 1em;
}

.faq-icon-closed {
    display: block;
}

.faq-icon-opened {
    display: none;
}

.faq-answer {
    display: none;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    border-top: 1px solid #d5d8dc;
}

.faq-answer.active {
    display: block;
}

/* Контент */
.content-section {
    padding: 20px 0;
    background-color: #FFF;
}

.content-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 10px;
}

.content-title {
    font-family: "Roboto", Sans-serif;
    font-size: 29px;
    font-weight: 700;
    line-height: 1.5;
    color: #050505;
    text-align: center;
    margin: 1.5em 0 0.5em;
}

.content-container p {
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    margin: 0 0 1em;
}

.cta-container {
    text-align: center;
    margin: 20px 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background-color: #DF3835;
    color: #FFF;
    font-family: "Roboto", Sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 126px;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-button:hover,
.cta-button:focus,
.cta-button:visited {
    color: #FFF;
}

.cta-button-content {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cta-button-text {
    display: inline-block;
}

.icon {
    font-family: 'elementskit', sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-whatsapp-1::before {
    content: "\eb46";
}

/* Футер */
.footer-width-fixer {
    width: 100%;
}

footer {
    background-color: #FBFDFF;
    padding: 30px 10px 60px; /* Увеличил padding-bottom, чтобы учесть фиксированный футер */
    font-family: "Roboto", Sans-serif;
}

.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    border: 1px double #00000066;
    border-radius: 8px;
    padding: 10px;
}

.footer-powered {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-powered .powered-text {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
}

.footer-powered img {
    max-width: 107px;
    height: auto;
}

.footer-logo img {
    max-width: 467px;
    height: auto;
}

.footer-info p {
    font-size: 11px;
    font-weight: 400;
    color: #000;
    margin: 0;
}

.footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    padding: 0 10px;
}

.footer-browser p {
    font-size: 11px;
    font-weight: 400;
    color: #000;
    text-align: center;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.footer-links h2 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-decoration: underline;
    margin: 0;
}

.footer-links h2 a {
    color: inherit;
    text-decoration: inherit;
}

.footer-divider {
    border: 0;
    border-top: 1px solid #00000040;
    margin: 0 auto;
    width: 100%;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

.footer-app img {
    max-width: 300px;
    height: auto;
}

.footer-dmca img {
    max-width: 120px;
    height: auto;
}

.footer-fixed {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, #063F9C, #D3D3D3);
    padding: 10px 0;
    display: none;
}

.footer-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer-icon {
    background-color: #69727d;
    color: #fff;
    padding: 0.5em;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-icon svg {
    fill: #fff;
    width: 24px;
    height: 24px;
}

.footer-sport-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
}

.footer-sport-icons img {
    max-width: 48px;
    height: auto;
}

.footer-sport-icons a {
    font-size: 14px;
    color: #000;
    text-decoration: none;
}

.footer-sport-icons a:hover {
    text-decoration: underline;
}

/* Адаптивность */
@media (max-width: 1024px) {
    /* Хедер */
    .header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
    }

    .logo img {
        max-width: 120px;
    }

    .login-form__icon,
    .login-form__input,
    .login-form__button {
        display: none;
    }

    .nav__burger {
        display: block;
    }

    .nav__menu {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-image: linear-gradient(50deg, #063F9C 65%, #D3D3D3 100%);
        padding: 20px;
        z-index: 1000;
    }

    #nav-toggle:checked ~ .nav__menu {
        display: flex;
    }

    .nav {
        width: 100%;
        position: relative;
    }

    /* FAQ */
    .faq-container {
        max-width: 1024px;
    }

    /* Контент */
    .content-container {
        max-width: 1024px;
    }

    /* Футер */
    .footer-container {
        max-width: 1024px;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-middle {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-logo img {
        max-width: 300px;
    }
}

@media (max-width: 767px) {
    /* Хедер */
    .header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 8px;
    }

    .logo img {
        max-width: 100px;
    }

    .nav__burger {
        font-size: 20px;
    }

    .nav__menu {
        padding: 15px;
    }

    .nav__link {
        font-size: 12px;
        padding: 8px 12px;
    }

    /* Секция новостей */
    .news-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .slider-image img {
        max-height: 200px;
    }

    /* FAQ */
    .faq-container {
        max-width: 767px;
    }

    .faq-question {
        padding: 12px 15px;
    }

    .faq-icon {
        width: 1.2em;
    }

    .faq-answer {
        padding: 7px 15px;
    }

    /* Контент */
    .content-container {
        max-width: 767px;
    }

    .content-title {
        font-size: 20px;
    }

    .content-container p {
        font-size: 14px;
    }

    .cta-button {
        font-size: 14px;
        padding: 10px 20px;
    }

/* Футер */
.footer-container {
    max-width: 767px;
    margin: 0 auto; 
}

.footer-fixed {
    display: flex;
    flex-direction: column; 
    position: relative; 
    padding-bottom: 20px; 
}

.footer-top {
    flex-direction: column;
    gap: 10px;
}

.footer-middle {
    flex-direction: column;
    gap: 8px;
}

.footer-links {
    gap: 5px;
}

.footer-sport-icons {
    display: flex;
    flex-direction: row; 
    flex-wrap: wrap; 
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 10px 0; 
    max-width: 100%; 
    overflow-x: auto; 
}

.footer-sport-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-sport-icons img {
    width: 24px;
    height: 24px;
    object-fit: contain; 
}

.footer-logo img {
    max-width: 200px;
}

.footer-app img {
    max-width: 200px;
}

.footer-dmca img {
    max-width: 100px;
}


main {
    padding-bottom: 100px;
}


@media (max-width: 767px) {
    .footer-container {
        padding: 0 10px;
    }

    .footer-sport-icons {
        flex-direction: row;
        gap: 12px; 
    }

    .footer-sport-icons img {
        width: 20px; 
        height: 20px;
    }

    .footer-sport-icons a {
        font-size: 14px; 
    }
}

@media (min-width: 768px) {
    .news-section {
        width: 80%;
        margin: 0 auto;
    }

    .faq-container {
        width: 80%;
    }

    .footer-sport-icons {
        flex-direction: row; 
        gap: 16px; 
    }

    .footer-sport-icons img {
        width: 32px;
        height: 32px;
    }
}
        