/* Стили для футера */
.footer {
    background-color: rgb(10 15 8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 0;
    margin-top: 60px;
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer__logo-img {
    max-height: 40px;
    margin-bottom: 20px;
}

.footer__nav {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.footer__nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    padding: 8px 15px;
    border-radius: 0;
    transition: background-color 0.3s;
    font-weight: bold;
    text-transform: uppercase;
}

.footer__nav-link--active {
    background-color: var(--primary-color);
}

.footer__nav-link:hover {
    background-color: rgba(255, 0, 0, 0.8);
    color: #ffffff;
}

.footer__text {
    color: #ffffff;
    text-align: center;
    font-size: 11px;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.footer__text p {
    margin-bottom: 15px;
}

.footer__licenses {
    padding: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.footer__license-img {
    height: 55px;
    object-fit: contain;
}

/* Полезные ссылки в футере */
.footer__useful-links {
    text-align: left;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.footer__title {
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

.footer__links-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer__link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.footer__link:hover {
    color: #fff;
    transform: translateX(10px);
}

/* Иконки для ссылок в футере */
.footer__nav-link::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
}

.footer__nav-link[href="/"],
.footer__nav-link[href="index.html"]::before {
    content: "\f015";
}

.footer__nav-link[href="conditions.html"]::before {
    content: "\f02d";
}

.footer__nav-link[href="jeu-responsable.html"]::before {
    content: "\f024";
}

.footer__nav-link[href="donnees-personnelles.html"]::before {
    content: "\f023";
}

.footer__nav-link[href="anj-reglementations.html"]::before {
    content: "\f0e3";
}

@media (max-width: 768px) {
    .footer__nav {
        flex-direction: column;
        gap: 15px;
    }

    .footer__nav-link {
        display: block;
        text-align: center;
        padding: 10px;
    }

    .footer__text {
        font-size: 12px;
        padding: 0 15px;
    }

    .footer__licenses {
        flex-wrap: wrap;
        padding: 15px;
    }

    .footer__license-img {
        height: 40px;
    }

    .footer__useful-links {
        text-align: center;
        margin: 30px auto;
        padding: 0 15px;
    }

    .footer__title {
        font-size: 20px;
    }

    .footer__links-list {
        align-items: center;
    }
}

@media (max-width: 375px) {
    .footer__license-img {
        height: 35px;
    }
} 