/* Aussie Fantasy Pro - Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #1c0e1b;
}

/* Header Styles */
.header {
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 110px;
    width: 100%;
}

.header__top {
    height: 42px;
    background-color: #ff6445;
    padding: 5px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.header__age-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-icon {
    height: 100%;
    width: auto;
}

.header__main {
    height: 63px;
    padding: 12px 100px;
    background: linear-gradient(to bottom, #98022f 50%, #b70018 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header__logo {
    width: 108px;
}

.logo {
    width: 100%;
    height: auto;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav__link {
    color: white;
    text-decoration: none;
    font-family: 'Boogaloo', cursive;
    font-size: 20px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.nav__link:hover {
    opacity: 0.8;
}

.burger-menu {
    display: none;
}

.nav__link.active {
    position: relative;
}

.nav__link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: white;
}

/* Main Section Styles */
.main {
    margin-top: 40px;
    width: 100%;
    background-image: url('img/bk-main.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px;
    height: 568px;
}

.main__container {
    width: 50%;
    height: 100%;
}

.main__content {
    padding: 20px 30px 20px 0;
    display: flex;
    flex-direction: column;
}

.main__title {
    font-family: 'Boogaloo', cursive;
    font-size: 48px;
    font-weight: 400;
    color: white;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.main__description {
    font-family: 'Poor Richard', cursive;
    font-size: 20px;
    font-weight: 400;
    color: white;
    margin: 0;
    line-height: 20px;
}

/* Game Section Styles */
.game {
    padding: 50px 150px;
}

.game__container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.game__content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.game__image {
    width: 100%;
    max-width: 312px;
    height: auto;
    border-radius: 0;
}

.game__button {
    font-family: 'Boogaloo', cursive;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    color: white;
    background-color: #ff6445;
    padding: 12px 75px;
    border: none;
    text-decoration: none;
    border-radius: 0;
    text-align: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
    width: 100%;
}

.game__button:hover {
    opacity: 0.8;
}

/* Why Choose Us Section Styles */
.why-choose, .disclaimer__container {
    margin-bottom: 50px;
    padding: 50px 150px;
}

.why-choose__container {
    display: flex;
    flex-direction: column;
}

.why-choose__header {
    margin-bottom: 20px;
}

.why-choose__title {
    font-family: 'Boogaloo', cursive;
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    color: white;
    margin: 0;
}

.why-choose__cards {
    display: flex;
    gap: 45px;
}

.why-choose__card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    background: linear-gradient(to bottom, #98022f 50%, #b70018 100%);
}

.card__icon {
    width: 168px;
    height: 168px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card__icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card__title, .disclaimer__title {
    font-family: 'Boogaloo', cursive;
    font-size: 32px;
    font-weight: 400;
    color: white;
    margin: 0 0 20px 0;
    text-align: center;
    line-height: 25px;
}

.card__description, .disclaimer__text {
    font-family: 'Poor Richard', cursive;
    font-size: 20px;
    font-weight: 400;
    color: white;
    margin: 0;
    line-height: 18px;
    text-align: center;
}

/* About Platform Section Styles */
.about-platform {
    margin-bottom: 50px;
    padding: 50px 150px;
}

.about-platform__container {
    display: flex;
    flex-direction: column;
}

.about-platform__header {
    margin-bottom: 20px;
}

.about-platform__title {
    font-family: 'Boogaloo', cursive;
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    color: white;
    margin: 0;
}

.about-platform__cards {
    display: flex;
    gap: 37px;
}

.about-platform__card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-height: 307px;
}

.about-platform__card--first {
    background-color: #5e252d;
    padding: 61px 40px;
}

.about-platform__card--second {
    background-image: url('img/bk-about.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Games Section Styles */
.games {
    margin-bottom: 50px;
    padding: 50px 150px;
}

.games__container {
    display: flex;
    flex-direction: column;
}

.games__header {
    margin-bottom: 20px;
}

.games__title {
    font-family: 'Boogaloo', cursive;
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    color: white;
    margin: 0;
}

.games__cards {
    display: flex;
    gap: 30px;
}

.games__card {
    flex: 1;
    background: linear-gradient(to bottom, #98022f 50%, #b70018 100%);

    display: flex;
    justify-content: center;
    align-items: center;
}

.games__card .game__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.games__card .game__image {
    width: 100%;
    max-width: 312px;
    height: auto;
    border-radius: 0;
}

.games__card .game__button {
    font-family: 'Boogaloo', cursive;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    color: white;
    background-color: #ff6445;
    padding: 12px 75px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: opacity 0.3s ease;
    width: 100%;
}

.games__card .game__button:hover {
    opacity: 0.8;
}

/* FAQ Section Styles */
.faq-section {
    background-color: #1c0e1b;
    padding: 70px 150px;
}

.faq-container {
    display: flex;
    flex-direction: column;
}

.faq-title {
    font-family: 'Boogaloo', cursive;
    font-size: 32px;
    font-weight: 400;
    color: white;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #5e252d;
    border-radius: 0;
    overflow: hidden;
    border: none;
}

.faq-item:hover {
    background: #5e252d;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: transparent;
    color: white;
    font-family: 'Poor Richard', cursive;
    font-size: 24px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-height: 92px;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.faq-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: transparent;
    border: none;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0px 24px 20px;
    background: transparent;
    border: none;
}

.faq-answer p {
    color: #c1c1c1;
    font-family: 'Poor Richard', cursive;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

/* Mobile FAQ Section */
@media (max-width: 800px) {
    .faq-section {
        padding: 50px 24px;
    }

    .faq-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 14px;
    }

    .faq-answer {
        max-height: 0;
        padding: 0 20px;
        margin-top: -10px;
        overflow: hidden;
    }

    .faq-item.active .faq-answer {
        max-height: 300px;
        padding: 16px 20px;
        margin-top: 0;
        background: transparent;
        border: none;
    }

    .faq-answer p {
        font-size: 13px;
    }
}

/* Reviews Section Styles */
.reviews {
    margin-bottom: 50px;
    padding: 50px 150px;
}

.reviews__container {
    display: flex;
    flex-direction: column;
}

.reviews__header {
    margin-bottom: 20px;
}

.reviews__title {
    font-family: 'Boogaloo', cursive;
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    color: white;
    margin: 0;
}

.reviews__cards {
    display: flex;
    gap: 54px;
}

.reviews__card {
    flex: 1;
    background: #ff6445;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reviews__card .review__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 38px 48px;
}

.review__avatar {
    width: 71px;
    height: 71px;
    margin-bottom: 10px;
}

.review__name {
    font-family: 'Boogaloo', cursive;
    font-size: 14px;
    font-weight: 400;
    color: #ffc300;
    margin: 0 0 10px 0;
}

.review__stars {
    width: 100px;
    height: 20px;
    margin-bottom: 10px;
}

.review__text {
    font-family: 'Poor Richard', cursive;
    font-size: 14px;
    font-weight: 400;
    color: white;
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

/* Contact us Section Styles */
.contact-us {
    margin-bottom: 50px;
    padding: 50px 150px;
}

/* Privacy Policy Section */
.privacy-policy {
    padding: 50px 150px;
}

.privacy-policy__container {
    max-width: 1200px;
    margin: 0 auto;
}

.privacy-policy__header {
    background: #000000;
    padding: 20px 30px;
    margin-bottom: 0;
}

.privacy-policy__title {
    font-family: 'Boogaloo', cursive;
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}

.privacy-policy__content {
    background: linear-gradient(to bottom, #98022f 50%, #b70018 100%);
    padding: 40px;
    color: #ffffff;
}

.privacy-policy__intro {
    font-family: 'Poor Richard', serif;
    font-size: 20px;
    line-height: 1.4;
    margin: 0 0 30px 0;
}

.privacy-policy__section {
    margin-bottom: 30px;
}

.privacy-policy__section-title {
    font-family: 'Poor Richard', serif;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 15px 0;
}

.privacy-policy__text {
    font-family: 'Poor Richard', serif;
    font-size: 20px;
    line-height: 1.4;
    margin: 0 0 15px 0;
}

.privacy-policy__list {
    margin: 0 0 20px 0;
    padding-left: 20px;
}

.privacy-policy__list-item {
    font-family: 'Poor Richard', serif;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #ffffff;
}

.privacy-policy__closing {
    font-family: 'Poor Richard', serif;
    font-size: 20px;
    line-height: 1.4;
    margin: 30px 0 0 0;
    font-style: italic;
}

/* Terms of Use Section */
.terms-of-use {
    padding: 50px 150px;
}

.terms-of-use__container {
    max-width: 1200px;
    margin: 0 auto;
}

.terms-of-use__header {
    background: #000000;
    padding: 20px 30px;
    margin-bottom: 0;
}

.terms-of-use__title {
    font-family: 'Boogaloo', cursive;
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}

.terms-of-use__content {
    background: linear-gradient(to bottom, #98022f 50%, #b70018 100%);
    padding: 40px;
    color: #ffffff;
}

.terms-of-use__intro {
    font-family: 'Poor Richard', serif;
    font-size: 20px;
    line-height: 1.4;
    margin: 0 0 30px 0;
}

.terms-of-use__section {
    margin-bottom: 30px;
}

.terms-of-use__section-title {
    font-family: 'Poor Richard', serif;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 15px 0;
}

.terms-of-use__text {
    font-family: 'Poor Richard', serif;
    font-size: 20px;
    line-height: 1.4;
    margin: 0 0 15px 0;
}

.terms-of-use__list {
    margin: 0 0 20px 0;
    padding-left: 20px;
}

.terms-of-use__list-item {
    font-family: 'Poor Richard', serif;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #ffffff;
}

/* Responsible Gaming Section */
.responsible-gaming {
    padding: 50px 150px;
}

.responsible-gaming__container {
    max-width: 1200px;
    margin: 0 auto;
}

.responsible-gaming__header {
    background: #000000;
    padding: 20px 30px;
    margin-bottom: 0;
}

.responsible-gaming__title {
    font-family: 'Boogaloo', cursive;
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}

.responsible-gaming__content {
    background: linear-gradient(to bottom, #98022f 50%, #b70018 100%);
    padding: 40px;
    color: #ffffff;
}

.responsible-gaming__intro {
    font-family: 'Poor Richard', serif;
    font-size: 20px;
    line-height: 1.4;
    margin: 0 0 30px 0;
}

.responsible-gaming__section {
    margin-bottom: 30px;
}

.responsible-gaming__section-title {
    font-family: 'Poor Richard', serif;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 15px 0;
}

.responsible-gaming__text {
    font-family: 'Poor Richard', serif;
    font-size: 20px;
    line-height: 1.4;
    margin: 0 0 15px 0;
}

.responsible-gaming__closing {
    font-family: 'Poor Richard', serif;
    font-size: 20px;
    line-height: 1.4;
    margin: 30px 0 0 0;
    font-style: italic;
}

.contact-us__container {
    display: flex;
    flex-direction: column;
}

.contact-us__header {
    margin-bottom: 20px;
}

.contact-us__title {
    font-family: 'Boogaloo', cursive;
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    color: white;
    margin: 0;
}

.contact-us__cards {
    display: flex;
    background-image: url('img/bk-contact.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 385px;
}

.contact-us__card {
    flex: 1;
    height: 100%;
}

.contact-us__card--first {
    background: transparent;
    padding: 42px 0 42px 97px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: white;
    padding: 42px 34px;
    height: 100%;
    width: 50%;
    box-sizing: border-box;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
}

.contact-form__input {
    background: transparent;
    border: none;
    border-bottom: 2px solid #ff6445;
    padding: 8px 0;
    font-family: 'Poor Richard', cursive;
    font-size: 16px;
    color: #333;
    outline: none;
}

.contact-form__input::placeholder {
    color: #999;
}

.contact-form__input:focus {
    border-bottom-color: #ffc300;
}

.contact-form__button {
    background: #ff6445;
    border: none;
    padding: 12px 24px;
    font-family: 'Boogaloo', cursive;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.3s ease;
    margin-top: 10px;
}

.contact-form__button:hover {
    opacity: 0.8;
}

.contact-form__icon {
    width: 16px;
    height: 16px;
}

/* Success notification */
.contact-form__success {
    display: none;
    background: #4caf50;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    font-family: 'Poor Richard', serif;
    font-size: 18px;
    animation: slideIn 0.3s ease-out;
}

.contact-form__success.show {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form__button:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Popup Styles */
.popup-age,
.popup-cookie {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.popup-age.disabled,
.popup-cookie.disabled {
    display: none;
}

.popup-age__content,
.popup-cookie__content {
    background: linear-gradient(to bottom, #98022f 50%, #b70018 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup-age__icon {
    margin-bottom: 20px;
}

.popup-age__icon .age-icon {
    width: 60px;
    height: 60px;
}

.popup-age__title,
.popup-cookie__title {
    font-family: 'Boogaloo', cursive;
    font-size: 28px;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.popup-age__text,
.popup-cookie__text {
    font-family: 'Poor Richard', serif;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.5;
    margin: 0 0 30px 0;
}

.popup-age__buttons,
.popup-cookie__buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.popup-age__button,
.popup-cookie__button {
    font-family: 'Boogaloo', cursive;
    font-size: 18px;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.popup-age__button--confirm,
.popup-cookie__button--accept {
    background: #4caf50;
    color: white;
}

.popup-age__button--confirm:hover,
.popup-cookie__button--accept:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.popup-age__button--deny,
.popup-cookie__button--decline {
    background: #f44336;
    color: white;
}

.popup-age__button--deny:hover,
.popup-cookie__button--decline:hover {
    background: #da190b;
    transform: translateY(-2px);
}

/* Responsive popups */
@media (max-width: 600px) {
    .popup-age__content,
    .popup-cookie__content {
        padding: 30px 20px;
        margin: 20px;
    }

    .popup-age__title,
    .popup-cookie__title {
        font-size: 24px;
    }

    .popup-age__text,
    .popup-cookie__text {
        font-size: 16px;
    }

    .popup-age__buttons,
    .popup-cookie__buttons {
        flex-direction: column;
        align-items: center;
    }

    .popup-age__button,
    .popup-cookie__button {
        width: 100%;
        max-width: 200px;
    }
}

/* Footer Styles */
.footer {
    width: 100%;
    padding: 40px 150px;
    background: linear-gradient(to bottom, #98022f 50%, #b70018 100%);
}

.footer__container {
    display: flex;
    flex-direction: column;
}

.footer__content {
    display: flex;
    flex-direction: column;
}

.footer__section {
    margin-bottom: 20px;
}

.footer__section:last-child {
    margin-bottom: 0;
}

.footer__title {
    font-family: 'Poor Richard', cursive;
    font-size: 24px;
    font-weight: 400;
    color: white;
    margin: 0 0 10px 0;
}

.footer__description {
    font-family: 'Poor Richard', cursive;
    font-size: 20px;
    font-weight: 400;
    color: white;
    margin: 0 0 20px 0;
    line-height: 20px;
}

.footer__nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    gap: 30px;
}

.footer__nav-link {
    font-family: 'Poor Richard', cursive;
    font-size: 20px;
    font-weight: 400;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer__nav-link:hover {
    opacity: 0.8;
}

.footer__copyright {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__copyright-text {
    font-family: 'Boogaloo', cursive;
    font-size: 24px;
    font-weight: 400;
    color: white;
}

.footer__age-icon {
    width: 29px;
    height: 29px;
    margin-left: 20px;
}

.about-platform__text {
    font-family: 'Poor Richard';
    font-size: 20px;
    font-weight: 400;
    color: white;
    margin: 0;
    line-height: 20px;
    text-align: center;
}

.modal {
  display: none; /* скрыто по умолчанию */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* окно */
.modal__content {
  background: #fff;
  padding: 25px 35px;
  border-radius: 12px;
  text-align: center;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.4s ease;
}

.modal__content p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #2e7d32;
}

.modal__content button {
  background: #2e7d32;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.modal__content button:hover {
  background: #256428;
}

/* анимация появления */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}


/* Responsive Design - 1240px and below */
@media (max-width: 1240px) {
    .main {
        padding: 150px 37px;
    }

    .game {
        padding: 50px 16px;
    }

    .why-choose, .disclaimer__container {
        padding: 50px 16px;
    }

    .about-platform {
        padding: 50px 16px;
    }

    .games {
        padding: 50px 16px;
    }

    .reviews {
        padding: 50px 16px;
    }

    .faq-section {
        padding: 70px 16px;
    }

    .contact-us {
        padding: 50px 16px;
    }

    .footer {
        padding: 40px 16px;
    }
}

/* Responsive Design - 980px and below */
@media (max-width: 980px) {
    .why-choose__cards {
        flex-direction: column;
        gap: 10px;
    }

    .why-choose__card {
        width: 100%;
    }
}

/* Responsive Design - 880px and below */
@media (max-width: 991px) {
    .header__main {
        padding: 0 27px;
    }
}

.reviews__navigation {
        display: none;
    }

    .games__navigation {
        display: none;
    }

/* Responsive Design - 840px and below */
@media (max-width: 991px) {
    .burger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 30px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    .contact-us__card--first {
        padding-left: 0px;
    }

    .burger-line {
        width: 100%;
        height: 3px;
        background-color: white;
        transition: all 0.3s ease;
    }

    .nav__list {
        position: fixed;
        top: 110px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 110px);
        background: linear-gradient(to bottom, #98022f 50%, #b70018 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 20px 0;
        transition: left 0.3s ease;
        z-index: 1000;
    }

    .nav__list.active {
        left: 0;
    }

    .nav__item {
        margin: 10px 0;
    }

    .nav__link {
        font-size: 18px;
        padding: 10px 20px;
    }

    .main {
        padding: 37px 27px;
        height: auto;
    }

    .about-platform__card--first {
        flex: 0 0 60%;
        width: 60%;
    }

    .about-platform__card--second {
        width: 40%;
    }

    .games__cards {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 30px;
        padding: 0 0 20px 0;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .games__cards::-webkit-scrollbar {
        height: 8px;
    }

    .games__cards::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }

    .games__cards::-webkit-scrollbar-thumb {
        background: #ff6445;
        border-radius: 4px;
    }

    .games__card {
        flex: 0 0 280px;
        min-width: 280px;
    }

    .games__navigation {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .games__nav-button {
        background: #ff6445;
        border: none;
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 20px;
        font-weight: bold;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .games__nav-button:hover {
        background: #e55a3a;
        transform: scale(1.1);
    }

    .games__nav-button:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }

    .games__nav-arrow {
        width: 20px;
        height: 20px;
        transition: transform 0.3s ease;
    }

    .games__nav-arrow--left {
        transform: rotate(180deg);
    }

    .games__nav-arrow--right {
        transform: rotate(0deg);
    }

    .reviews__cards {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 54px;
        padding: 0 0 20px 0;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .reviews__cards::-webkit-scrollbar {
        height: 8px;
    }

    .reviews__cards::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }

    .reviews__cards::-webkit-scrollbar-thumb {
        background: #ff6445;
        border-radius: 4px;
    }

    .reviews__card {
        flex: 0 0 300px;
        min-width: 300px;
    }

    .reviews__navigation {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .reviews__nav-button {
        background: #ff6445;
        border: none;
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 20px;
        font-weight: bold;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .reviews__nav-button:hover {
        background: #e55a3a;
        transform: scale(1.1);
    }

    .reviews__nav-button:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }

    .reviews__nav-arrow {
        width: 20px;
        height: 20px;
        transition: transform 0.3s ease;
    }

    .reviews__nav-arrow--left {
        transform: rotate(180deg);
    }

    .reviews__nav-arrow--right {
        transform: rotate(0deg);
    }

    .contact-form {
        width: 70%;
    }

    .contact-us__card--first {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .main__content {
        padding: 0;
    }
}

/* Responsive Design - 1140px and below */
@media (max-width: 1140px) {
    .main__container {
        width: 70%;
    }
}

/* Responsive Design - 700px and below */
@media (max-width: 700px) {
    .about-platform__cards {
        flex-direction: column;
    }

    .about-platform__card--first,
    .about-platform__card--second {
        width: 100%;
        flex: none;
    }
}

/* Responsive Design - 450px and below */
@media (max-width: 450px) {
    .contact-form {
        width: 85%;
    }

    .card__icon-img {
        width: 90px;
        height: 90px;
    }
}

/* Responsive Design - 755px and below */
@media (max-width: 755px) {
    .footer__nav {
        flex-direction: column;
        gap: 15px;
    }
}

/* Responsive Design - 615px and below */
@media (max-width: 615px) {
    .footer__copyright {
        flex-direction: column;
        gap: 10px;
    }

    .footer__age-icon {
        margin-left: 0;
    }
}

/* Responsive Design - 550px and below */
@media (max-width: 550px) {
    .main__content {
        width: 85%;
    }

    .main__title {
        font-size: 24px;
    }

    .main__description {
        font-size: 16px;
    }
}

/* Responsive Design - 1240px and below - Text sections */
@media (max-width: 1240px) {
    .privacy-policy,
    .terms-of-use,
    .responsible-gaming {
        padding: 50px 16px;
    }
}

/* Responsive Design - 840px and below - Text sections */
@media (max-width: 840px) {
    .privacy-policy,
    .terms-of-use,
    .responsible-gaming {
        padding: 37px 27px;
    }

    .privacy-policy__content,
    .terms-of-use__content,
    .responsible-gaming__content {
        padding: 30px;
    }

    .privacy-policy__title,
    .terms-of-use__title,
    .responsible-gaming__title {
        font-size: 20px;
    }

    .privacy-policy__intro,
    .privacy-policy__text,
    .privacy-policy__list-item,
    .privacy-policy__closing,
    .terms-of-use__intro,
    .terms-of-use__text,
    .terms-of-use__list-item,
    .responsible-gaming__intro,
    .responsible-gaming__text,
    .responsible-gaming__closing {
        font-size: 18px;
    }

    .privacy-policy__section-title,
    .terms-of-use__section-title,
    .responsible-gaming__section-title {
        font-size: 18px;
    }
}

/* Responsive Design - 550px and below - Text sections */
@media (max-width: 550px) {
    .privacy-policy__content,
    .terms-of-use__content,
    .responsible-gaming__content {
        padding: 20px;
    }

    .privacy-policy__intro,
    .privacy-policy__text,
    .privacy-policy__list-item,
    .privacy-policy__closing,
    .terms-of-use__intro,
    .terms-of-use__text,
    .terms-of-use__list-item,
    .responsible-gaming__intro,
    .responsible-gaming__text,
    .responsible-gaming__closing {
        font-size: 16px;
    }

    .privacy-policy__section-title,
    .terms-of-use__section-title,
    .responsible-gaming__section-title {
        font-size: 16px;
    }
}

/* Responsive Design - 360px and below */
@media (max-width: 360px) {
    .contact-form {
        padding: 14px;
        width: 95%;
    }

    .contact-form__button {
        padding: 8px 16px;
        font-size: 20px;
    }

    .privacy-policy,
    .terms-of-use,
    .responsible-gaming {
        padding: 20px 16px;
    }

    .privacy-policy__content,
    .terms-of-use__content,
    .responsible-gaming__content {
        padding: 15px;
    }

    .privacy-policy__intro,
    .privacy-policy__text,
    .privacy-policy__list-item,
    .privacy-policy__closing,
    .terms-of-use__intro,
    .terms-of-use__text,
    .terms-of-use__list-item,
    .responsible-gaming__intro,
    .responsible-gaming__text,
    .responsible-gaming__closing {
        font-size: 14px;
    }

    .privacy-policy__section-title,
    .terms-of-use__section-title,
    .responsible-gaming__section-title {
        font-size: 14px;
    }
}
