.footer {
    background: linear-gradient(135deg, #1A365D 0%, #2C5282 100%);
    padding: 60px 20px 20px;
    color: #fff;
}

.footer__flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-right: 250px;
    padding-left: 120px;
    margin-bottom: 40px;
}

.footer__item {
    display: flex;
    flex-direction: column;
}

.footer__title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FFC107;
    text-transform: uppercase;
}

.footer__item a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer__item a:hover {
    color: #FF9800;
}

.border__block {
    background: #FFC107;
    color: #1A365D !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}

.footer__bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
    padding-right: 250px;
    padding-left: 120px;
    margin: 40px 0 20px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.bottom__item img {
    height: 40px;
    filter: brightness(0.8);
    transition: filter 0.3s;
}

.bottom__item img:hover {
    filter: brightness(1);
}

.payment__methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.payment__item {
    background: #2a3441;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
}

.footer__copyright {
    text-align: center;
    color: #ccc;
    font-family: MontserratMedium;
    font-weight: 400;
    font-size: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.age__restriction {
    background: #ff4444;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin: 20px auto;
    text-align: center;
}

.social__links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
}

.social__link {
    background: #FFC107;
    color: #1A365D;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s;
}

.social__link:hover {
    transform: scale(1.1);
}

@media (max-width: 991px) {

    .footer__flex {
        padding: 0;
        padding-top: 20px;
        padding-bottom: 20px;
        align-items: center;
        gap: 20px;
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    
    .footer__bottom {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .bottom__item img {
        height: 30px;
    }
}
