* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #090909;
    background-image: url('../image/heroes.webp');
    background-size: 100%;
    background-position: center top;
    background-repeat: no-repeat;
    font-family: 'Inter', sans-serif;
    color: rgba(240, 240, 240, 0.82);
    line-height: 1.7;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    flex-wrap: wrap;
    position: relative;
}

.header__logo-link {
    display: flex;
    align-items: center;
}

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

.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__menu {
    display: flex;
    gap: 28px;
    list-style: none;
    font-weight: 400;
    font-size: 16px;
}

.header__menu a {
    color: #F2F0EA;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: 0.2s;
}

.header__menu a:hover {
    color: #0ed7f2;
}

.header__btn {
    background: linear-gradient(90deg, rgba(110, 14, 208, 1) 0%, rgba(14, 215, 242, 1) 100%);
    color: #FFF;
    font-family: 'Days One', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
}

.header__btn:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #F2F0EA;
    border-radius: 4px;
    transition: 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #111214;
    border-right: 1px solid rgba(177, 138, 85, 0.18);
    padding: 40px 24px;
    transition: 0.3s;
    z-index: 999;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu__close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 32px;
    color: #F2F0EA;
    cursor: pointer;
}

.mobile-menu__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.mobile-menu__list a {
    color: #F2F0EA;
    text-decoration: none;
    font-size: 22px;
    font-family: 'Days One', sans-serif;
    letter-spacing: 1px;
}

.mobile-menu__list a:hover {
    color: #0ed7f2;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    display: none;
}

.mobile-overlay.active {
    display: block;
}

.hero {
    display: flex;
    align-items: center;
    min-height: 70vh;
    padding: 40px 0 60px;
}

.hero__content {
    max-width: 640px;
}

.hero__subtitle {
    font-family: 'Days One', sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    color: #6e0ed0;
    margin-bottom: 12px;
}

.hero__title {
    font-family: 'Days One', sans-serif;
    font-size: 78px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: 1px;
    color: #F2F0EA;
    margin-bottom: 20px;
}

.hero__title span {
    color: #0ed7f2;
}

.hero__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(240, 240, 240, 0.82);
    margin-bottom: 32px;
}

.hero__btn {
    background: linear-gradient(90deg, rgba(110, 14, 208, 1) 0%, rgba(14, 215, 242, 1) 100%);
    color: #FFF;
    font-family: 'Days One', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px 44px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
}

.section-title {
    font-family: 'Days One', sans-serif;
    font-size: 58px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: 1px;
    color: #F2F0EA;
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: 'Days One', sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    color: #6e0ed0;
    margin-bottom: 12px;
}

.advantages {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 60px 0;
}

.advantage-block {
    background: #111214;
    border: 1px solid rgb(107 20 209 / 39%);
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 45px rgba(0, 0, 0, 0.45);
    padding: 28px 16px;
    text-align: center;
    transition: 0.2s;
}

.advantage-block__icon {
    height: 70px;
    margin-bottom: 14px;
}

.advantage-block__title {
    font-family: 'Days One', sans-serif;
    font-size: 20px;
    color: #F2F0EA;
    margin-bottom: 6px;
}

.advantage-block__desc {
    font-size: 15px;
    opacity: 0.8;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 40px 0 60px;
}

.game-card {
    background: #111214;
    border: 1px solid rgb(107 20 209 / 39%);
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 45px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    transition: 0.25s;
    position: relative;
    display: flex;
    flex-direction: column;
}



.game-card__img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.game-card__body {
    padding: 18px 16px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.game-card__name {
    font-family: 'Days One', sans-serif;
    font-size: 22px;
    color: #F2F0EA;
}

.game-card__rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.game-card__stars {
    display: flex;
    gap: 3px;
}

.game-card__stars img {
    width: 18px;
    height: 18px;
}

.game-card__score {
    font-weight: 400;
    color: #F2F0EA;
    font-size: 16px;
}

.game-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(9, 9, 9, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.25s;
    border-radius: 16px;
}

.game-card:hover .game-card__overlay {
    opacity: 1;
}

.game-card__overlay-btn {
    background: linear-gradient(90deg, rgba(110, 14, 208, 1) 0%, rgba(14, 215, 242, 1) 100%);
    color: #FFF;
    font-family: 'Days One', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
}

.about {
    display: flex;
    gap: 50px;
    align-items: center;
    margin: 60px 0;
}

.about__content {
    flex: 1;
}

.about__text {
    margin: 16px 0 24px;
    font-size: 18px;
}

.about__btn {
    background: linear-gradient(90deg, rgba(110, 14, 208, 1) 0%, rgba(14, 215, 242, 1) 100%);
    color: #FFF;
    font-family: 'Days One', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 12px 38px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
}

.about__image {
    line-height: 0;
    flex: 1;
    border: 1px solid rgb(107 20 209 / 39%);
    border-radius: 15px;
}

.about__image img {
    max-width: 100%;
    border-radius: 16px;
}

.cta {
    background-image: url('../image/cta.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 20px;
    text-align: center;
    border-radius: 24px;
    margin: 50px 0;
    position: relative;
}

.cta__content {
    max-width: 700px;
    margin: 0 auto;
}

.cta .section-subtitle {
    font-family: 'Days One', sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    color: #6e0ed0;
    margin-bottom: 12px;
}

.cta .section-title {
    color: #F2F0EA;
}

.cta__text {
    font-size: 18px;
    margin: 16px 0 28px;
}

.cta__btn {
    background: linear-gradient(90deg, rgba(110, 14, 208, 1) 0%, rgba(14, 215, 242, 1) 100%);
    color: #FFF;
    font-family: 'Days One', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 14px 38px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
}

.footer {
    background: #111214;
    border-top: 1px solid rgba(177, 138, 85, 0.18);
    padding: 48px 0 24px;
    margin-top: 30px;
}

.footer__columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer__col h4 {
    font-family: 'Days One', sans-serif;
    font-size: 18px;
    color: #F2F0EA;
    margin-bottom: 6px;
    font-weight: 400;
}

.footer__col {
    flex: 1 1 180px;
}

.footer__logo {
    max-height: 15px;
    margin-bottom: 12px;
    margin-top: 5px;
}

.footer__text {
    font-size: 14px;
    opacity: 0.8;
    max-width: 240px;
}

.footer__menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__menu a {
    color: rgba(240, 240, 240, 0.8);
    text-decoration: none;
    font-size: 14px;
}

.footer__menu a:hover {
    color: #0ed7f2;
}

.footer__legal {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer__legal a {
    color: rgba(240, 240, 240, 0.7);
    text-decoration: none;
    font-size: 14px;
}

.footer__contact-title {
    font-family: 'Days One', sans-serif;
    font-size: 18px;
    color: #F2F0EA;
    margin-bottom: 6px;
}

.footer__contact-email {
    color: rgba(240, 240, 240, 0.8);
    font-size: 16px;
}

.footer__important {
    margin: 30px 0 18px;
    padding-top: 20px;
    border-top: 1px solid rgba(177, 138, 85, 0.12);
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.6;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    opacity: 0.6;
    flex-wrap: wrap;
    gap: 10px;
}



.contact-section {
    background: #111214;

    background-size: 100%;
    background-position: center top;
    background-blend-mode: overlay;
    padding: 60px 0 80px;
    margin: 40px 0 0;
    border-radius: 24px;
    border: 1px solid rgb(107 20 209 / 39%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 18px 45px rgba(0, 0, 0, 0.5);
}

.contact-section__inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
}


.contact-section__head {
    text-align: center;
    margin-bottom: 40px;
}

.contact-section__breadcrumb {
    font-size: 14px;
    color: rgba(240, 240, 240, 0.5);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.contact-section__breadcrumb a {
    color: #0ed7f2;
    text-decoration: none;
}

.contact-section__breadcrumb a:hover {
    text-decoration: underline;
}

.contact-section__title {
    font-family: 'Days One', sans-serif;
    font-size: 52px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #F2F0EA;
    line-height: 1.1;
    margin-bottom: 8px;
}

.contact-section__sub {
    font-size: 18px;
    color: rgba(240, 240, 240, 0.7);
    max-width: 540px;
    margin: 0 auto;
}


.contact-form {
    background: #0d0d0f;
    padding: 40px 36px;
    border-radius: 20px;
    border: 1px solid rgb(107 20 209 / 39%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 18px 45px rgba(0, 0, 0, 0.4);
}

.contact-form__row {
    display: flex;
    gap: 24px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.contact-form__group {
    flex: 1 1 200px;
    margin-bottom: 18px;
}

.contact-form__label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #0ed7f2;
    margin-bottom: 6px;
}

.contact-form__input,
.contact-form__textarea {
    width: 100%;
    background: #090909;
    border: 1px solid rgba(177, 138, 85, 0.18);
    border-radius: 10px;
    padding: 14px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #F2F0EA;
    transition: 0.2s;
    outline: none;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    border-color: #0ed7f2;
    box-shadow: 0 0 0 3px rgba(177, 138, 85, 0.2);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
    color: rgba(240, 240, 240, 0.3);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__btn {
    background: linear-gradient(90deg, rgba(110, 14, 208, 1) 0%, rgba(14, 215, 242, 1) 100%);
    color: #FFF;
    font-family: 'Days One', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
    cursor: pointer;
}

.contact-form__btn:hover {
    transform: scale(1.01);
    opacity: 0.92;
}


.contact-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s;
    padding: 20px;
}

.contact-popup.active {
    opacity: 1;
    visibility: visible;
}

.contact-popup__card {
    background: #111214;
    border: 1px solid rgba(177, 138, 85, 0.25);
    border-radius: 24px;
    padding: 48px 40px 40px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
    transform: scale(0.95);
    transition: 0.25s;
}

.contact-popup.active .contact-popup__card {
    transform: scale(1);
}

.contact-popup__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #B16E2F, #0ed7f2, #8A52E0);
    border-radius: 50%;
    font-size: 38px;
    font-weight: 400;
    color: #FFF;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(138, 82, 224, 0.3);
}

.contact-popup__title {
    font-family: 'Days One', sans-serif;
    font-size: 32px;
    color: #F2F0EA;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.contact-popup__text {
    font-size: 17px;
    color: rgba(240, 240, 240, 0.75);
    margin-bottom: 24px;
    line-height: 1.5;
}

.contact-popup__close {
    background: linear-gradient(135deg, #B16E2F 0%, #0ed7f2 35%, #8A52E0 100%);
    color: #FFF;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 12px 40px;
    border: 1px solid rgba(255, 220, 170, 0.25);
    border-radius: 10px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 10px 30px rgba(138, 82, 224, 0.35);
    cursor: pointer;
    transition: 0.2s;
    background: #0ed7f2;
}

.contact-popup__close:hover {
    transform: scale(1.03);
    opacity: 0.9;
}


@media (max-width: 640px) {
    .contact-section__title {
        font-size: 34px;
    }

    .contact-form {
        padding: 24px 16px;
    }

    .contact-form__row {
        flex-direction: column;
        gap: 0;
    }

    .contact-popup__card {
        padding: 32px 20px;
    }
}



.legal-section {
    background: #111214;

    background-size: 100%;
    background-position: center top;
    background-blend-mode: overlay;
    padding: 50px 0 70px;
    margin: 30px 0 0;
    border-radius: 24px;
    border: 1px solid rgba(177, 138, 85, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 18px 45px rgba(0, 0, 0, 0.5);
}

.legal-section__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-section__head {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(177, 138, 85, 0.12);
}

.legal-section__breadcrumb {
    font-size: 14px;
    color: rgba(240, 240, 240, 0.4);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.legal-section__breadcrumb a {
    color: #0ed7f2;
    text-decoration: none;
}

.legal-section__breadcrumb a:hover {
    text-decoration: underline;
}

.legal-section__title {
    font-family: 'Days One', sans-serif;
    font-size: 52px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #F2F0EA;
    line-height: 1.1;
    margin-bottom: 4px;
}

.legal-section__meta {
    font-size: 15px;
    color: rgba(240, 240, 240, 0.4);
    letter-spacing: 0.3px;
}

.legal-section__content {
    color: rgba(240, 240, 240, 0.82);
    font-size: 17px;
    line-height: 1.8;
}

.legal-section__lead {
    font-size: 19px;
    color: #F2F0EA;
    margin-bottom: 28px;
    padding: 20px 24px;
    background: rgba(177, 138, 85, 0.06);
    border-left: 3px solid #0ed7f2;
    border-radius: 8px;
}

.legal-section__subtitle {
    font-family: 'Days One', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #F2F0EA;
    margin: 32px 0 12px;
    letter-spacing: 0.5px;
}

.legal-section__subtitle:first-of-type {
    margin-top: 0;
}

.legal-section__list {
    list-style: none;
    padding-left: 6px;
    margin: 10px 0 16px;
}

.legal-section__list li {
    padding: 6px 0 6px 28px;
    position: relative;
    border-bottom: 1px solid rgba(177, 138, 85, 0.05);
}

.legal-section__list li::before {
    content: "▸";
    position: absolute;
    left: 2px;
    color: #0ed7f2;
    font-size: 18px;
}

.legal-section__list li:last-child {
    border-bottom: none;
}

.legal-section__list a,
.legal-section__content a {
    color: #0ed7f2;
    text-decoration: none;
    border-bottom: 1px dotted rgba(225, 178, 94, 0.3);
}

.legal-section__list a:hover,
.legal-section__content a:hover {
    color: #F2D18A;
    border-bottom-color: #F2D18A;
}


.legal-section__orgs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 16px 0 20px;
}

.legal-section__org {
    flex: 1 1 200px;
    background: rgba(255, 255, 255, 0.02);
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid rgb(107 20 209 / 39%);
}

.legal-section__org strong {
    display: block;
    font-family: 'Days One', sans-serif;
    font-size: 18px;
    color: #F2F0EA;
    margin-bottom: 4px;
}

.legal-section__org p {
    font-size: 15px;
    margin: 0;
    opacity: 0.85;
}


.legal-section__table-wrap {
    overflow-x: auto;
    margin: 12px 0 20px;
}

.legal-section__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.legal-section__table th {
    background: rgba(177, 138, 85, 0.15);
    color: #F2F0EA;
    font-family: 'Days One', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 16px;
    text-align: left;
    font-size: 13px;
}

.legal-section__table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(177, 138, 85, 0.06);
}

.legal-section__table tr:last-child td {
    border-bottom: none;
}


.legal-section__notice {
    margin-top: 30px;
    padding: 16px 20px;
    background: rgba(177, 138, 85, 0.06);
    border-radius: 10px;
    font-size: 18px;
    font-family: 'Days One', sans-serif;
    color: #F2F0EA;
    text-align: center;
    letter-spacing: 0.3px;
}


@media (max-width: 768px) {
    .legal-section__title {
        font-size: 34px;
    }

    .legal-section__subtitle {
        font-size: 22px;
    }

    .legal-section__lead {
        font-size: 17px;
        padding: 14px 16px;
    }

    .legal-section__orgs {
        flex-direction: column;
    }

    .legal-section__org {
        flex: 1 1 auto;
    }
}

@media (max-width: 480px) {
    .legal-section {
        padding: 30px 0 50px;
    }

    .legal-section__title {
        font-size: 28px;
    }

    .legal-section__table th,
    .legal-section__table td {
        padding: 8px 10px;
        font-size: 13px;
    }
}




.faq-section {
    background: #111214;


    background-size: 100%;
    background-position: center top;
    background-blend-mode: overlay;
    padding: 50px 0 70px;
    margin: 30px 0 0;
    border-radius: 24px;
    border: 1px solid rgba(177, 138, 85, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 18px 45px rgba(0, 0, 0, 0.5);
}

.faq-section__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-section__head {
    text-align: center;
    margin-bottom: 45px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(177, 138, 85, 0.12);
}

.faq-section__breadcrumb {
    font-size: 14px;
    color: rgba(240, 240, 240, 0.4);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.faq-section__breadcrumb a {
    color: #0ed7f2;
    text-decoration: none;
}

.faq-section__breadcrumb a:hover {
    text-decoration: underline;
}

.faq-section__title {
    font-family: 'Days One', sans-serif;
    font-size: 52px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #F2F0EA;
    line-height: 1.1;
    margin-bottom: 8px;
}

.faq-section__sub {
    font-size: 18px;
    color: rgba(240, 240, 240, 0.65);
    max-width: 600px;
    margin: 0 auto;
}


.faq-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 30px;
}


.faq-section__tab {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(177, 138, 85, 0.12);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.25s;
}

.faq-section__tab:hover {
    border-color: rgba(177, 138, 85, 0.25);
}

.faq-section__tab-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Days One', sans-serif;
    font-size: 18px;
    color: #F2F0EA;
    cursor: pointer;
    text-align: left;
    transition: 0.2s;
    letter-spacing: 0.3px;
    position: relative;
}

.faq-section__tab-btn:hover {
    background: rgba(177, 138, 85, 0.05);
}

.faq-section__tab-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.faq-section__tab-arrow {
    margin-left: auto;
    font-size: 14px;
    color: #0ed7f2;
    transition: 0.3s;
    flex-shrink: 0;
}

.faq-section__tab-btn[aria-expanded="true"] .faq-section__tab-arrow {
    transform: rotate(180deg);
}

.faq-section__tab-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 22px;
    color: rgba(240, 240, 240, 0.8);
    font-size: 16px;
    line-height: 1.8;
}

.faq-section__tab-btn[aria-expanded="true"]+.faq-section__tab-content {
    max-height: 1200px;
    padding: 4px 22px 28px;
}

.faq-section__tab-content p {
    margin: 0 0 12px 0;
}

.faq-section__tab-content p:last-child {
    margin-bottom: 0;
}

.faq-section__tab-content strong {
    color: #F2F0EA;
}

.faq-section__list {
    list-style: none;
    padding-left: 4px;
    margin: 8px 0 14px;
}

.faq-section__list li {
    padding: 4px 0 4px 26px;
    position: relative;
}

.faq-section__list li::before {
    content: "•";
    position: absolute;
    left: 4px;
    color: #0ed7f2;
    font-size: 18px;
}

.faq-section__tab-content a {
    color: #0ed7f2;
    text-decoration: none;
    border-bottom: 1px dotted rgba(225, 178, 94, 0.3);
}

.faq-section__tab-content a:hover {
    color: #F2D18A;
    border-bottom-color: #F2D18A;
}


.faq-section__help-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 12px 0 18px;
}

.faq-section__help-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid rgba(177, 138, 85, 0.08);
}

.faq-section__help-item h4 {
    font-family: 'Days One', sans-serif;
    font-size: 16px;
    color: #F2F0EA;
    margin: 0 0 4px 0;
}

.faq-section__help-item p {
    font-size: 14px;
    margin: 0 0 6px 0;
    opacity: 0.85;
}

.faq-section__help-item a {
    font-size: 14px;
    word-break: break-all;
}


.faq-section__footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(177, 138, 85, 0.08);
    font-size: 17px;
    color: rgba(240, 240, 240, 0.6);
}

.faq-section__footer a {
    color: #0ed7f2;
    text-decoration: none;
    font-weight: 500;
}

.faq-section__footer a:hover {
    text-decoration: underline;
}


@media (max-width: 860px) {
    .faq-section__grid {
        grid-template-columns: 1fr;
    }

    .faq-section__title {
        font-size: 38px;
    }

    .faq-section__help-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 30px 0 50px;
    }

    .faq-section__title {
        font-size: 30px;
    }

    .faq-section__tab-btn {
        font-size: 16px;
        padding: 16px 16px;
        flex-wrap: wrap;
    }

    .faq-section__tab-content {
        font-size: 15px;
    }
}


.who-section {
    background: #111214;

    background-size: 100%;
    background-position: center top;
    background-blend-mode: overlay;
    padding: 50px 0 70px;
    margin: 30px 0 0;
    border-radius: 24px;
    border: 1px solid rgba(177, 138, 85, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 18px 45px rgba(0, 0, 0, 0.5);
}

.who-section__inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

.who-section__head {
    text-align: center;
    margin-bottom: 45px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(177, 138, 85, 0.12);
}

.who-section__breadcrumb {
    font-size: 14px;
    color: rgba(240, 240, 240, 0.4);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.who-section__breadcrumb a {
    color: #0ed7f2;
    text-decoration: none;
}

.who-section__breadcrumb a:hover {
    text-decoration: underline;
}

.who-section__title {
    font-family: 'Days One', sans-serif;
    font-size: 52px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #F2F0EA;
    line-height: 1.1;
    margin-bottom: 8px;
}

.who-section__sub {
    font-size: 18px;
    color: rgba(240, 240, 240, 0.65);
    max-width: 600px;
    margin: 0 auto;
}


.who-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}


.who-section__left {
    padding-right: 10px;
}

.who-section__subtitle {
    font-family: 'Days One', sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #0ed7f2;
    margin-bottom: 8px;
}

.who-section__heading {
    font-family: 'Days One', sans-serif;
    font-size: 38px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 1px;
    color: #F2F0EA;
    margin-bottom: 20px;
}

.who-section__text {
    color: rgba(240, 240, 240, 0.82);
    font-size: 17px;
    line-height: 1.9;
}

.who-section__text p {
    margin: 0 0 18px 0;
}

.who-section__text p:last-child {
    margin-bottom: 0;
}


.who-section__right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.who-section__card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgb(107 20 209 / 39%);
    border-radius: 16px;
    padding: 24px 20px 22px;
    transition: 0.25s;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 8px 20px rgba(0, 0, 0, 0.2);
}

.who-section__card:hover {
    border-color: rgba(177, 138, 85, 0.30);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.who-section__card-icon {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

.who-section__card-title {
    font-family: 'Days One', sans-serif;
    font-size: 20px;
    color: #F2F0EA;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 6px 0;
    letter-spacing: 0.3px;
}

.who-section__card-text {
    font-size: 15px;
    color: rgba(240, 240, 240, 0.75);
    line-height: 1.7;
    margin: 0;
}


@media (max-width: 992px) {
    .who-section__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .who-section__left {
        padding-right: 0;
    }

    .who-section__heading {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .who-section__title {
        font-size: 38px;
    }

    .who-section__heading {
        font-size: 32px;
    }

    .who-section__right {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .who-section__card {
        padding: 18px 16px;
    }

    .who-section__card-title {
        font-size: 17px;
    }

    .who-section__card-text {
        font-size: 14px;
    }
}

@media (max-width: 500px) {
    .who-section {
        padding: 30px 0 50px;
    }

    .who-section__title {
        font-size: 30px;
    }

    .who-section__heading {
        font-size: 26px;
    }

    .who-section__right {
        grid-template-columns: 1fr;
    }

    .who-section__subtitle {
        font-size: 16px;
        letter-spacing: 3px;
    }
}



.select-section {
    background: #111214;

    background-size: 100%;
    background-position: center top;
    background-blend-mode: overlay;
    padding: 50px 0 70px;
    margin: 30px 0 0;
    border-radius: 24px;
    border: 1px solid rgba(177, 138, 85, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 18px 45px rgba(0, 0, 0, 0.5);
}

.select-section__inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

.select-section__head {
    text-align: center;
    margin-bottom: 45px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(177, 138, 85, 0.12);
}

.select-section__breadcrumb {
    font-size: 14px;
    color: rgba(240, 240, 240, 0.4);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.select-section__breadcrumb a {
    color: #0ed7f2;
    text-decoration: none;
}

.select-section__breadcrumb a:hover {
    text-decoration: underline;
}

.select-section__title {
    font-family: 'Days One', sans-serif;
    font-size: 52px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #F2F0EA;
    line-height: 1.1;
    margin-bottom: 8px;
}

.select-section__sub {
    font-size: 18px;
    color: rgba(240, 240, 240, 0.65);
    max-width: 640px;
    margin: 0 auto;
}


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


.select-section__block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgb(107 20 209 / 39%);
    border-radius: 16px;
    padding: 30px 24px 28px;
    text-align: center;
    transition: 0.3s;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 8px 20px rgba(0, 0, 0, 0.2);
}

.select-section__block:hover {
    border-color: rgba(177, 138, 85, 0.30);
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
}

.select-section__block-icon {
    font-size: 44px;
    margin-bottom: 14px;
    display: block;
    line-height: 1;
}

.select-section__block-title {
    font-family: 'Days One', sans-serif;
    font-size: 22px;
    color: #F2F0EA;
    margin: 0 0 10px 0;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.select-section__block-text {
    font-size: 15px;
    color: rgba(240, 240, 240, 0.78);
    line-height: 1.7;
    margin: 0;
}


.select-section__footer {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(177, 138, 85, 0.08);
}

.select-section__footer p {
    font-size: 18px;
    color: rgba(240, 240, 240, 0.7);
    margin-bottom: 18px;
}

.select-section__btn {
    background: linear-gradient(135deg, #B16E2F 0%, #0ed7f2 35%, #8A52E0 100%);
    color: #FFF;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 14px 44px;
    border: 1px solid rgba(255, 220, 170, 0.25);
    border-radius: 10px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 10px 30px rgba(138, 82, 224, 0.35);
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
}

.select-section__btn:hover {
    transform: scale(1.02);
    opacity: 0.92;
}


@media (max-width: 992px) {
    .select-section__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .select-section__title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .select-section {
        padding: 35px 0 50px;
    }

    .select-section__title {
        font-size: 34px;
    }

    .select-section__sub {
        font-size: 16px;
    }

    .select-section__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .select-section__block {
        padding: 22px 16px 20px;
    }

    .select-section__block-title {
        font-size: 18px;
    }

    .select-section__block-text {
        font-size: 14px;
    }

    .select-section__block-icon {
        font-size: 36px;
    }
}

@media (max-width: 500px) {
    .select-section__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .select-section__title {
        font-size: 28px;
    }

    .select-section__block {
        padding: 20px 16px;
    }

    .select-section__btn {
        font-size: 20px;
        padding: 12px 30px;
    }
}








































@media (max-width: 992px) {
    .header__nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .advantages {
        grid-template-columns: repeat(3, 1fr);
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about {
        flex-direction: column;
    }

    .hero__title {
        font-size: 56px;
    }
}

@media (max-width: 640px) {
    .advantages {
        grid-template-columns: 1fr 1fr;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .hero__title {
        font-size: 38px;
    }

    .section-title {
        font-size: 38px;
    }

    .footer__columns {
        flex-direction: column;
    }
    .footer__col{
        flex: auto;
    }
    body{
        background-size: 1000px;
    }
    .contact-form__group{
        flex: auto;
    }
}