/* Добавляем шрифт Lato */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;500;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    background: url('../img/back.jpg') no-repeat center center fixed;
    background-size: cover;
}

.page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 40px;
}

.header {
    background: transparent;
    padding: 30px;
    box-shadow: none;
}

.header__logo {
    max-width: 70px;
    height: auto;
}

.header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__info {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.header__licence, .header__legal, .header__payments {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: white;
    padding: 8px 15px;
    background: transparent;
}

.header__icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.header__description {
    color: #ddd;
    text-align: center;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

.bookmaker-card, .bookmaker-item {
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #eee;
}

.bookmaker-card {
    flex: 1;
    background: white;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bookmaker-card__logo {
    width: 120px;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.bookmaker-card__status {
    color: #00b67a;
    font-size: 11px;
    margin-bottom: 5px;
}

.bookmaker-card__rating {
    color: #00b67a;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.rating-stars {
    color: #ffd700;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 3px;
    margin: 5px 0;
}

.bookmaker-card__bonus {
    color: #e31b23;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.bookmaker-card__spins {
    color: #666;
    font-size: 12px;
    margin-bottom: 15px;
}

.bookmaker-card__button {
    background: #00b67a;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 0;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
}

.bookmaker-item {
    background: white;
    padding: 15px 20px;
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: 40px 120px 1fr 80px 140px;
    align-items: center;
    gap: 20px;
    position: relative;
    border: 1px solid #eee;
    padding-bottom: 40px;
}

.bookmaker-item__rank {
    font-size: 20px;
    color: #333;
    text-align: center;
}

.bookmaker-item__logo {
    width: 120px;
    height: auto;
    object-fit: contain;
    display: block;
}

.bookmaker-item__info {
    display: flex;
  /*  flex-direction: column; */
    gap: 12px;
    align-items: center;
    min-height: 120px;
    justify-content: center;
}

.bookmaker-item__bonus-group {
   /*  display: flex;
   flex-direction: column; */
    gap: 6px;
    align-items: flex-start;
    width: 100%;
}

.bookmaker-item__rating-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    width: 100%;
}

.bookmaker-item__bonus {
    color: #e31b23;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bookmaker-item__bonus:before {
    content: '\f3d1'; /* иконка подарка */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.bookmaker-item__spins {
    color: #666;
    font-size: 12px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bookmaker-item__spins:before {
    content: '\f2f1'; /* иконка обновления */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.bookmaker-item__votes {
    color: #666;
    font-size: 16px;
    line-height: 1.2;
    margin: 3px 0;
}

.bookmaker-item__status {
    color: #00b67a;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
}

.bookmaker-item__rating {
    color: #00b67a;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.bookmaker-item__button {
    background: linear-gradient(45deg, #00d68f, #00b67a, #009e68);
    background-size: 200% auto;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 182, 122, 0.2);
    transition: background-position 0.5s ease;
}

.bookmaker-item__button:hover {
    background-position: right center;
    box-shadow: 0 4px 15px rgba(0, 182, 122, 0.4);
}

.bookmaker-item__button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 182, 122, 0.3);
}

.bookmaker-item__badge {
    position: absolute;
    top: -8px;
    left: 10px;
    background: #4a90e2;
    color: white;
    padding: 2px 6px;
    font-size: 10px;
    text-transform: uppercase;
}

.bookmaker-item__warning {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    font-size: 13px;
    color: #e31b23;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
    width: 100%;
}

.bookmaker-item__warning i {
    color: #e31b23;
    margin-right: 8px;
    font-size: 14px;
}

.info-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
  /*  border-radius: 10px;*/
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px 0 20px;
    margin-top: 60px;
}

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

.footer__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer__section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    position: relative;
    padding-bottom: 10px;
}

.footer__title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #00b67a;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: #00b67a;
}

.footer__link i {
    width: 16px;
    color: #00b67a;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__contact-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.footer__contact-link i {
    color: #00b67a;
    width: 16px;
}

.footer__social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer__social-link {
    color: white;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer__social-link:hover {
    color: #00b67a;
}

.footer__security {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer__security-icon {
    height: 40px;
    width: auto;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    line-height: 1.6;
}

.footer__bottom p {
    margin: 0 0 8px;
}

.conditions, .responsible-gaming {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin: 20px 0;
}

.conditions__title, .responsible-gaming__title {
    color: #333;
    font-size: 2em;
    margin-bottom: 30px;
}

.conditions__section, .responsible-gaming__section {
    margin-bottom: 25px;
}

.conditions__subtitle, .responsible-gaming__subtitle {
    color: #444;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.conditions__text, .responsible-gaming__text {
    color: #666;
    line-height: 1.6;
}

.privacy, .regulations {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin: 20px 0;
}

.privacy__title, .regulations__title {
    color: #333;
    font-size: 2em;
    margin-bottom: 30px;
}

.privacy__section, .regulations__section {
    margin-bottom: 25px;
}

.privacy__subtitle, .regulations__subtitle {
    color: #444;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.privacy__text, .regulations__text {
    color: #666;
    line-height: 1.6;
}

.main__title {
    margin-bottom: 50px;
    text-align: center;
    color: white;
    font-size: 32px;
}

.top-bookmakers {
    margin-bottom: 40px;
}

.top-bookmakers__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.bookmaker-item__info {
    display: flex;
  /*  flex-direction: column; 
    align-items: flex-start;*/
    gap: 3px;
}

.bookmaker-item__votes {
    color: #666;
    font-size: 11px;
}

.bookmaker-item__status {
    color: #00b67a;
    font-size: 12px;
    font-weight: normal;
}

.bookmaker-item__badge {
    position: absolute;
    top: -8px;
    left: 10px;
    background: #4a90e2;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    text-transform: uppercase;
}

.bookmaker-card__label {
    position: absolute;
    top: -10px;
    left: 10px;
    background: #4a90e2;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    text-transform: uppercase;
}

.bookmaker-card__info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-sections {
    color: white;
}

.info-section__title {
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

.info-section__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-section__item {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.info-section__item:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00b67a;
}

.bookmaker-item__button {
    background: #00b67a;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
}

.bookmaker-item__rating {
    font-size: 24px;
    font-weight: bold;
    color: #00b67a;
    margin-right: 15px;
}

.info-section__item:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00b67a;
}

.bookmaker-item__button {
    background: #00b67a;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
}

.bookmaker-item__votes {
    color: #666;
    font-size: 11px;
}

.bookmaker-item__status {
    color: #00b67a;
    font-size: 12px;
    font-weight: normal;
}

.rating-stars {
    display: flex;
    gap: 1px;
}

.rating-stars__item {
    color: #ffd700;
    font-size: 12px;
}

.bookmaker-item__badge {
    position: absolute;
    top: -8px;
    left: 10px;
    background: #4a90e2;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    text-transform: uppercase;
}

.bookmaker-card__status {
    color: #00b67a;
    font-size: 14px;
    margin-bottom: 5px;
}

.bookmaker-card__label {
    position: absolute;
    top: -10px;
    left: 10px;
    background: #4a90e2;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    text-transform: uppercase;
}

.bookmaker-card__info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

@media (max-width: 768px) {
    .header {
        padding: 20px;
    }

    .header__top {
        margin-top: 30px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .header__info {
        flex-direction: column;
        gap: 15px;
    }

    .header__description {
        font-size: 13px;
        padding: 0 10px;
    }

    .footer {
        padding: 30px 0 20px;
    }

    .footer__content {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .footer__section {
        text-align: center;
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer__section:last-child {
        border-bottom: none;
    }

    .footer__title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer__title:after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }

    .footer__nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer__link {
        justify-content: center;
        font-size: 14px;
    }

    .footer__contacts {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer__contact-link {
        justify-content: center;
        font-size: 14px;
    }

    .footer__social {
        justify-content: center;
        gap: 20px;
        margin-top: 15px;
    }

    .footer__security {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .footer__security-icon {
        height: 35px;
    }

    .footer__bottom {
        margin-top: 20px;
        padding: 20px 15px 0;
        font-size: 11px;
        line-height: 1.5;
        text-align: center;
    }

    .footer__bottom p {
        margin-bottom: 8px;
    }

    .bookmaker-item {
        padding-bottom: 50px;
    }

    .bookmaker-item__button {
        padding: 10px 20px;
        font-size: 13px;
        max-width: 200px;
    }

    .bookmaker-item__warning {
        position: relative;
        bottom: auto;
        margin-top: 10px;
        order: 2;
    }

    .bookmaker-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .bookmaker-item__logo {
        width: 100px;
        margin: 0 auto;
    }

    .bookmaker-item__info {
        min-height: auto;
        padding: 10px 0;
    }

    .bookmaker-item__bonus {
        font-size: 18px;
    }

    .bookmaker-item__spins {
        font-size: 11px;
    }

    .bookmaker-item__rating {
        font-size: 20px;
    }

    .bookmaker-item__rank {
        font-size: 16px;
    }

    .bookmaker-item__votes {
        font-size: 16px;
    }

    .bookmaker-item__status {
        font-size: 13px;
    }

    .bookmaker-item__warning {
        font-size: 12px;
    }

    .bookmaker-item__bonus-group,
    .bookmaker-item__rating-group {
        gap: 4px;
    }

    .bookmaker-item__info,
    .bookmaker-item__bonus-group,
    .bookmaker-item__rating-group {
        align-items: center;
        text-align: center;
    }

    .top-bookmakers__cards {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .bookmaker-item {
        display: grid;
        grid-template-columns: 30px 1fr auto;
        grid-template-areas: 
            "rank logo rating"
            "info info info"
            "button button button"
            "warning warning warning";
        padding: 10px;
        gap: 8px;
    }

    .bookmaker-item__rank {
        grid-area: rank;
        font-size: 14px;
    }

    .bookmaker-item__logo {
        grid-area: logo;
        width: 80px;
        margin: 0 auto;
    }

    .bookmaker-item__rating {
        grid-area: rating;
        font-size: 18px;
    }

    .bookmaker-item__info {
        grid-area: info;
        flex-direction: row;
        justify-content: space-around;
        padding: 5px 0;
    }

    .bookmaker-item__button {
        grid-area: button;
        margin: 5px auto;
    }

    .bookmaker-item__warning {
        grid-area: warning;
        position: relative;
        margin-top: 5px;
    }

    .bookmaker-card {
        padding: 10px 8px;
        display: grid;
        grid-template-columns: 70px 1fr auto;
        grid-template-areas: 
            "logo status rating"
            "button button button";
        text-align: left;
        align-items: center;
        gap: 10px;
    }

    .bookmaker-card__logo {
        grid-area: logo;
        width: 60px;
        margin: 0;
    }

    .bookmaker-card__info {
        grid-area: info;
        align-items: flex-start;
    }

    .bookmaker-card__rating {
        grid-area: rating;
        font-size: 18px;
        margin: 0;
    }

    .bookmaker-card__button {
        grid-area: button;
        margin-top: 5px;
    }

    .bookmaker-card__bonus,
    .bookmaker-card__spins {
        display: none;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .footer__section {
        padding: 12px;
    }

    .footer__title {
        font-size: 15px;
    }

    .footer__link,
    .footer__contact-link {
        font-size: 13px;
    }

    .footer__security-icon {
        height: 30px;
    }

    .top-bookmakers__cards {
        gap: 6px;
    }

    .bookmaker-card {
        padding: 8px 6px;
        gap: 8px;
    }

    .bookmaker-card__logo {
        width: 50px;
    }

    .bookmaker-item {
        padding: 8px;
    }

    .bookmaker-item__logo {
        width: 70px;
    }

    .header__top {
        margin-top: 25px;
        gap: 10px;
    }
}

.warning-bar {
    background: #ffd700;
    color: #000;
    padding: 8px 0;
    font-size: 13px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.warning-bar__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.section-light {
    background: #f8f9fa;
    padding: 60px 0;
    margin: 40px 0;
}

.section-dark {
    background: #2a2a2a;
    padding: 60px 0;
    margin: 40px 0;
    color: white;
}

.section-gradient {
    background: linear-gradient(45deg, #1a1a1a, #333);
    padding: 60px 0;
    margin: 40px 0;
    color: white;
}

.about-section {
    background: #f5f5dc;
    padding: 40px 0;
    margin: 40px -50vw;
    position: relative;
    left: 50%;
    right: 50%;
    width: 100vw;
}

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

.about-section__title {
    color: #333;
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.about-section__content {
    color: #444;
    line-height: 1.8;
    font-size: 16px;
}

.about-section__content p {
    margin-bottom: 20px;
}

.about-section__content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.about-section__content li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.about-section__content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00b67a;
}

.footer {
    background: transparent;
    position: relative;
    z-index: 1;
}

.footer__title,
.footer__link,
.footer__bottom {
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer__link:hover {
    color: #00b67a;
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 20px;
    }

    .about-section__title {
        font-size: 24px;
    }

    .about-section__content {
        font-size: 15px;
    }
}

/* Обновленные стили для футера */
.footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

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

.footer__icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.footer__payment-methods {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer__payment-icon {
    width: 40px;
    height: 25px;
    object-fit: contain;
}

.footer__social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer__social-icon {
    width: 30px;
    height: 30px;
}

/* Добавляем иконки */
.bookmaker-card__bonus:before,
.bookmaker-item__bonus:before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url('../img/icons/bonus.png') no-repeat center/contain;
    margin-right: 5px;
    vertical-align: middle;
}

.bookmaker-card__spins:before,
.bookmaker-item__spins:before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url('../img/icons/spins.png') no-repeat center/contain;
    margin-right: 5px;
    vertical-align: middle;
}

/*
.bookmaker-item__votes:before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url('../img/icons/users.png') no-repeat center/contain;
    margin-right: 5px;
    vertical-align: middle;
}*/

.header__logo-link {
    display: block;
    transition: transform 0.3s ease;
}

.header__logo-link:hover {
    transform: scale(1.05);
}

.info-section__icon {
    margin-right: 10px;
    vertical-align: middle;
}

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

.info-section__item:before {
    content: '';
    width: 20px;
    height: 20px;
    background: url('../img/icons/check.png') no-repeat center/contain;
    flex-shrink: 0;
}

/* Добавляем hover эффекты */
.bookmaker-card:hover,
.bookmaker-item:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Центральная карточка (больше остальных) */
.bookmaker-card--featured {
    flex: 1.2;
    border-width: 2px;
    padding: 20px 15px;
    position: relative;
    top: -10px;
    margin-bottom: -20px;
}

/* Стили для модального окна подтверждения возраста */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-modal__content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.age-modal__title {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.age-modal__icon {
    color: #e31b23;
    font-size: 48px;
    margin-bottom: 20px;
}

.age-modal__text {
    color: #444;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.age-modal__buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.age-modal__button {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-modal__button--confirm {
    background: linear-gradient(45deg, #00d68f, #00b67a);
    color: white;
}

.age-modal__button--confirm:hover {
    background: linear-gradient(45deg, #00b67a, #009e68);
}

.age-modal__button--decline {
    background: #f5f5f5;
    color: #e31b23;
}

.age-modal__button--decline:hover {
    background: #e31b23;
    color: white;
}

.age-modal__warning {
    color: #666;
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .age-modal__content {
        padding: 20px;
    }

    .age-modal__title {
        font-size: 20px;
    }

    .age-modal__text {
        font-size: 14px;
    }

    .age-modal__buttons {
        flex-direction: column;
    }

    .age-modal__button {
        width: 100%;
    }
}

/* Медиа запрос для мобильных устройств */
@media (max-width: 768px) {
    .page {
        padding: 15px;
        margin-top: 30px;
    }

    .warning-bar__container,
    .about-section__container,
    .footer__container {
        padding: 0 15px;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .page {
        padding: 10px;
        margin-top: 20px;
    }

    .warning-bar__container,
    .about-section__container,
    .footer__container {
        padding: 0 10px;
    }
} 