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

body {
    font-family: 'Arial', sans-serif;
    background-color: #0e1147;
    color: #ffffff;
    line-height: 1.6;
}

.header {
    background-color: #0b0833;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo-img {
    height: 32px;
    width: auto;
}

.header__nav {
    display: flex;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav__link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav__link:hover,
.nav__link:focus {
    color: #ffd700;
    outline: none;
}

.cta-button {
    background-color: #ffd700;
    color: #0b0833;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover,
.cta-button:focus {
    background-color: #ffed4e;
    transform: translateY(-2px);
    outline: none;
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.header__burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.burger__line {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.hero {
    background-image: url('img/frumzi-bg.webp');
    background-size: cover;
    background-position: 80% center;
    background-repeat: no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 8, 51, 0.4);
    z-index: 1;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero__content {
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}

.hero__title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero__button {
    background-color: #ffd700;
    color: #0b0833;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__button:hover,
.hero__button:focus {
    background-color: #ffed4e;
    transform: translateY(-3px);
    outline: none;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.info-section {
    padding: 4rem 0;
    background-color: #0e1147;
}

.info-section__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.info-table {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-table__row {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-table__row:last-child {
    border-bottom: none;
}

.info-table__header {
    background-color: rgba(255, 215, 0, 0.1);
}

.info-table__cell {
    flex: 1;
    padding: 1rem 1.5rem;
    color: #ffffff;
}

.info-table__cell--header {
    font-weight: bold;
    font-size: 1.1rem;
    color: #ffd700;
}

.info-table__cell--label {
    background-color: rgba(255, 255, 255, 0.03);
    font-weight: 600;
    min-width: 200px;
    flex: 0 0 35%;
}

.info-section__conclusion {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    max-width: 1000px;
    margin: 0 auto;
}

.registration-section {
    padding: 4rem 0;
    background-color: #0e1147;
}

.registration-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.registration-section__content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.registration-section__text {
    flex: 1;
}

.registration-section__title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #ffd700;
    line-height: 1.2;
}

.registration-section__intro {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #ffffff;
}

.registration-section__steps {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.registration-section__steps li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #ffffff;
}

.registration-section__steps li strong {
    color: #ffd700;
}

.registration-section__note {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
}

.registration-section__image {
    flex: 0 0 400px;
}

.registration-section__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.games-section {
    padding: 4rem 0;
    background-color: #0e1147;
}

.games-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.games-section__hero {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.games-section__text {
    flex: 1;
}

.games-section__title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #ffd700;
    line-height: 1.2;
}

.games-section__intro {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.games-section__image {
    flex: 0 0 400px;
}

.games-section__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.games-subsection {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.games-subsection:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.games-subsection__content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.games-subsection__text {
    flex: 1;
}

.games-subsection__title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #ffd700;
    line-height: 1.2;
}

.games-subsection__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.games-subsection__list {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.games-subsection__list li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #ffffff;
}

.games-subsection__list li strong {
    color: #ffd700;
}

.games-subsection__note {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
}

.games-subsection__image {
    flex: 0 0 350px;
}

.games-subsection__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.bonus-section {
    padding: 4rem 0;
    background-color: #0e1147;
}

.bonus-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus-section__hero {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.bonus-section__text {
    flex: 1;
}

.bonus-section__title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #ffd700;
    line-height: 1.2;
}

.bonus-section__intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
}

.bonus-section__image {
    flex: 0 0 400px;
}

.bonus-section__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.bonus-table {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-table__row {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-table__row:last-child {
    border-bottom: none;
}

.bonus-table__header {
    background-color: rgba(255, 215, 0, 0.1);
}

.bonus-table__cell {
    flex: 1;
    padding: 1rem 1.5rem;
    color: #ffffff;
    font-size: 0.95rem;
}

.bonus-table__cell--header {
    font-weight: bold;
    font-size: 1.1rem;
    color: #ffd700;
}

.bonus-table__cell--label {
    background-color: rgba(255, 255, 255, 0.03);
    font-weight: 600;
    flex: 0 0 25%;
}

.bonus-section__conclusion {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-subsection {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-subsection:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.bonus-subsection__title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #ffd700;
    line-height: 1.2;
}

.bonus-subsection__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.bonus-subsection__list {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.bonus-subsection__list li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #ffffff;
}

.bonus-subsection__list li strong {
    color: #ffd700;
}

.payment-section {
    padding: 4rem 0;
    background-color: #0e1147;
}

.payment-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.payment-section__title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #ffd700;
    line-height: 1.2;
    text-align: center;
}

.payment-section__intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.payment-table {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow-x: auto;
}

.payment-table__row {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 800px;
}

.payment-table__row:last-child {
    border-bottom: none;
}

.payment-table__header {
    background-color: rgba(255, 215, 0, 0.1);
}

.payment-table__cell {
    flex: 1;
    padding: 1rem 1rem;
    color: #ffffff;
    font-size: 0.9rem;
    text-align: center;
}

.payment-table__cell--header {
    font-weight: bold;
    font-size: 1rem;
    color: #ffd700;
}

.payment-table__cell--method {
    background-color: rgba(255, 255, 255, 0.03);
    font-weight: 600;
    flex: 0 0 30%;
    text-align: left;
}

.payment-section__conclusion {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.support-section {
    padding: 4rem 0;
    background-color: #0e1147;
}

.support-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.support-section__title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #ffd700;
    line-height: 1.2;
    text-align: center;
}

.support-section__intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 2rem;
}

.support-section__list {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.support-section__list li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #ffffff;
}

.support-section__list li strong {
    color: #ffd700;
}

.support-section__note {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
}

.pros-cons-section {
    padding: 4rem 0;
    background-color: #0e1147;
}

.pros-cons-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.pros-cons-section__title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #ffd700;
    line-height: 1.2;
    text-align: center;
}

.pros-cons-section__intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pros-cons-table {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pros-cons-table__row {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pros-cons-table__row:last-child {
    border-bottom: none;
}

.pros-cons-table__header {
    background-color: rgba(255, 215, 0, 0.1);
}

.pros-cons-table__cell {
    flex: 1;
    padding: 1rem 1.5rem;
    color: #ffffff;
    font-size: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.pros-cons-table__cell:last-child {
    border-right: none;
}

.pros-cons-table__cell--header {
    font-weight: bold;
    font-size: 1.2rem;
    color: #ffd700;
    text-align: center;
}

.pros-cons-table__cell--pros {
    background-color: rgba(34, 197, 94, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.pros-cons-table__cell--cons {
    background-color: rgba(239, 68, 68, 0.05);
}

.pros-cons-section__conclusion {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.faq-section {
    padding: 4rem 0;
    background-color: #0e1147;
}

.faq-section__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.faq-section__title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    color: #ffd700;
    line-height: 1.2;
    text-align: center;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.faq-item__question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
}

.faq-item__question:hover {
    background-color: rgba(255, 215, 0, 0.1);
}

.faq-item__question:focus {
    outline: 2px solid #ffd700;
    outline-offset: -2px;
}

.faq-item__icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
    transition: transform 0.3s ease;
}

.faq-item__question[aria-expanded="true"] .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item__answer.faq-item__answer--open {
    max-height: 200px;
}

.faq-item__content {
    padding: 0 2rem 1.5rem 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
}

.bonus-page-hero {
    padding: 6rem 0 4rem 0;
    background-color: #0e1147;
}

.bonus-page-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus-page-hero__content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.bonus-page-hero__text {
    flex: 1;
}

.bonus-page-hero__title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #ffd700;
    line-height: 1.2;
}

.bonus-page-hero__intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 2rem;
}

.bonus-page-hero__cta {
    margin-bottom: 2rem;
    text-align: center;
}

.bonus-page-hero__button {
    background-color: #ffd700;
    color: #0b0833;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-page-hero__button:hover,
.bonus-page-hero__button:focus {
    background-color: #ffed4e;
    transform: translateY(-3px);
    outline: none;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.bonus-page-hero__image {
    flex: 0 0 400px;
}

.bonus-page-hero__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.bonus-page-section {
    padding: 4rem 0;
    background-color: #0e1147;
}

.bonus-page-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus-page-section__title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #ffd700;
    line-height: 1.2;
}

.bonus-page-section__content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.bonus-page-section__list {
    margin: 2rem 0;
    padding-left: 2rem;
}

.bonus-page-section__list li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.bonus-page-promos {
    padding: 4rem 0;
    background-color: #0e1147;
}

.bonus-page-promos__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus-page-promos__title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #ffd700;
    line-height: 1.2;
    text-align: center;
}

.bonus-page-promos__intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

.bonus-promos-table {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-promos-table__row {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-promos-table__row:last-child {
    border-bottom: none;
}

.bonus-promos-table__header {
    background-color: rgba(255, 215, 0, 0.1);
}

.bonus-promos-table__cell {
    flex: 1;
    padding: 1rem 1.5rem;
    color: #ffffff;
    font-size: 1rem;
}

.bonus-promos-table__cell--header {
    font-weight: bold;
    font-size: 1.1rem;
    color: #ffd700;
}

.bonus-promos-table__cell--name {
    background-color: rgba(255, 255, 255, 0.03);
    font-weight: 600;
    flex: 0 0 30%;
}

.bonus-page-promos__note {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    text-align: center;
    margin-bottom: 3rem;
}

.bonus-page-subsection {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-page-subsection:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.bonus-page-subsection__content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.bonus-page-subsection__text {
    flex: 1;
}

.bonus-page-subsection__title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #ffd700;
    line-height: 1.2;
}

.bonus-page-subsection__description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.bonus-page-subsection__list {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.bonus-page-subsection__list li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #ffffff;
}

.bonus-page-subsection__list li strong {
    color: #ffd700;
}

.bonus-page-subsection__image {
    flex: 0 0 350px;
}

.bonus-page-subsection__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.bonus-page-vip {
    padding: 4rem 0;
    background-color: #0e1147;
}

.bonus-page-vip__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus-page-vip__title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #ffd700;
    line-height: 1.2;
    text-align: center;
}

.bonus-page-vip__intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

.bonus-page-vip__image-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 3rem;
}

.bonus-page-vip__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.bonus-vip-table {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow-x: auto;
}

.bonus-vip-table__row {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 800px;
}

.bonus-vip-table__row:last-child {
    border-bottom: none;
}

.bonus-vip-table__header {
    background-color: rgba(255, 215, 0, 0.1);
}

.bonus-vip-table__cell {
    flex: 1;
    padding: 1rem 1rem;
    color: #ffffff;
    font-size: 0.95rem;
    text-align: center;
}

.bonus-vip-table__cell--header {
    font-weight: bold;
    font-size: 1rem;
    color: #ffd700;
}

.bonus-vip-table__cell--level {
    background-color: rgba(255, 255, 255, 0.03);
    font-weight: 600;
}

.bonus-page-vip__conclusion {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    text-align: center;
    font-style: italic;
}

.bonus-page-claim {
    padding: 4rem 0;
    background-color: #0e1147;
}

.bonus-page-claim__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus-page-claim__title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    color: #ffd700;
    line-height: 1.2;
    text-align: center;
}

.bonus-page-claim__content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.bonus-page-claim__text {
    flex: 1;
}

.bonus-page-claim__intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 2rem;
}

.bonus-page-claim__steps {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    counter-reset: step-counter;
}

.bonus-page-claim__steps li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
}

.bonus-page-claim__steps li strong {
    color: #ffd700;
}

.bonus-page-claim__conclusion {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
}

.bonus-page-claim__image {
    flex: 0 0 400px;
}

.bonus-page-claim__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.bonus-page-why {
    padding: 4rem 0;
    background-color: #0e1147;
}

.bonus-page-why__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bonus-page-why__title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #ffd700;
    line-height: 1.2;
    text-align: center;
}

.bonus-page-why__content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 3rem;
    text-align: justify;
}

.bonus-page-why__content:last-child {
    margin-bottom: 0;
}

.bonus-page-why__image-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 3rem;
}

.bonus-page-why__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.footer {
    background-color: #0b0833;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.footer__text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
}

.login-page-hero {
    padding: 6rem 0 4rem 0;
    background-color: #0e1147;
}

.login-page-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.login-page-hero__content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.login-page-hero__text {
    flex: 1;
}

.login-page-hero__title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #ffd700;
    line-height: 1.2;
}

.login-page-hero__intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 2rem;
}

.login-page-hero__cta {
    margin-bottom: 2rem;
    text-align: center;
}

.login-page-hero__button {
    background-color: #ffd700;
    color: #0b0833;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-page-hero__button:hover,
.login-page-hero__button:focus {
    background-color: #ffed4e;
    transform: translateY(-3px);
    outline: none;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.login-page-hero__image {
    flex: 0 0 400px;
}

.login-page-hero__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.login-page-registration {
    padding: 4rem 0;
    background-color: #0e1147;
}

.login-page-registration__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.login-page-registration__content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.login-page-registration__text {
    flex: 1;
}

.login-page-registration__title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #ffd700;
    line-height: 1.2;
}

.login-page-registration__intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 2rem;
}

.login-page-registration__steps {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.login-page-registration__steps li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.login-page-registration__steps li strong {
    color: #ffd700;
}

.login-page-registration__note {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
}

.login-page-registration__image {
    flex: 0 0 350px;
}

.login-page-registration__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.login-page-verification {
    padding: 4rem 0;
    background-color: #0e1147;
}

.login-page-verification__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.login-page-verification__title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #ffd700;
    line-height: 1.2;
    text-align: center;
}

.login-page-verification__intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 2rem;
}

.login-page-verification__list {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.login-page-verification__list li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #ffffff;
}

.login-page-verification__conclusion {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
}

.login-page-connection {
    padding: 4rem 0;
    background-color: #0e1147;
}

.login-page-connection__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.login-page-connection__content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.login-page-connection__text {
    flex: 1;
}

.login-page-connection__title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #ffd700;
    line-height: 1.2;
}

.login-page-connection__intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 2rem;
}

.login-page-connection__steps {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.login-page-connection__steps li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.login-page-connection__steps li strong {
    color: #ffd700;
}

.login-page-connection__note {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
}

.login-page-connection__image {
    flex: 0 0 350px;
}

.login-page-connection__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.login-page-security {
    padding: 4rem 0;
    background-color: #0e1147;
}

.login-page-security__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.login-page-security__title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #ffd700;
    line-height: 1.2;
    text-align: center;
}

.login-page-security__intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 2rem;
}

.login-page-security__list {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.login-page-security__list li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #ffffff;
}

.login-page-security__conclusion {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
}

.login-page-recovery {
    padding: 4rem 0;
    background-color: #0e1147;
}

.login-page-recovery__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.login-page-recovery__title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #ffd700;
    line-height: 1.2;
    text-align: center;
}

.login-page-recovery__intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 2rem;
}

.login-page-recovery__steps {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.login-page-recovery__steps li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.login-page-recovery__steps li strong {
    color: #ffd700;
}

.login-page-recovery__conclusion {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
}

.login-page-support {
    padding: 4rem 0;
    background-color: #0e1147;
}

.login-page-support__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.login-page-support__title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #ffd700;
    line-height: 1.2;
    text-align: center;
}

.login-page-support__intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 2rem;
}

.login-page-support__conclusion {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    margin-top: 2rem;
}

.login-support-table {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.login-support-table__row {
    display: flex;
    min-height: 60px;
}

.login-support-table__row--header {
    background-color: #ffd700;
}

.login-support-table__row:not(.login-support-table__row--header) {
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.login-support-table__row:not(.login-support-table__row--header):last-child {
    border-bottom: none;
}

.login-support-table__cell {
    flex: 1;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.login-support-table__cell--header {
    color: #0b0833;
    font-weight: bold;
    font-size: 1.1rem;
}

.login-support-table__cell--label {
    color: #ffd700;
    font-weight: bold;
    font-size: 1rem;
    flex: 0 0 200px;
}

.login-support-table__cell:not(.login-support-table__cell--header):not(.login-support-table__cell--label) {
    color: #ffffff;
    font-size: 1rem;
}

.text-link {
    color: #ffd700;
    text-decoration: underline;
    text-decoration-color: rgba(255, 215, 0, 0.6);
    text-underline-offset: 3px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.text-link:hover,
.text-link:focus {
    color: #ffed4e;
    text-decoration-color: #ffed4e;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
    outline: none;
}

@media (max-width: 768px) {
    .header__nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: #0b0833;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
    }

    .hero::before {

        background: rgba(11, 8, 51, 0.8);
    }

    .header__nav.nav--open {
        left: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .nav__link {
        font-size: 1.5rem;
    }

    .header__burger {
        display: flex;
    }

    .header__burger.burger--active .burger__line:nth-child(1) {
        transform: translateY(9px) rotate(-45deg);
    }

    .header__burger.burger--active .burger__line:nth-child(2) {
        opacity: 0;
    }

    .header__burger.burger--active .burger__line:nth-child(3) {
        transform: translateY(-9px) rotate(45deg);
    }

    .header__cta {
        z-index: 1001;
    }

    .hero {
        background-image: url('img/frumzi-mbg.webp');
        min-height: 80vh;
    }

    .hero__container {
        padding: 2rem 1rem;
    }

    .hero__title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero__description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero__button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .info-section {
        padding: 3rem 0;
    }

    .info-table__row {
        flex-direction: column;
    }

    .info-table__cell--label {
        flex: none;
        background-color: rgba(255, 215, 0, 0.1);
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }

    .info-table__cell {
        padding: 0.8rem 1rem;
    }

    .info-section__conclusion {
        font-size: 1rem;
    }

    .registration-section {
        padding: 3rem 0;
    }

    .registration-section__content {
        flex-direction: column;
        gap: 2rem;
    }

    .registration-section__title {
        font-size: 2rem;
    }

    .registration-section__image {
        flex: none;
        order: -1;
        max-width: 300px;
        align-self: center;
    }

    .games-section {
        padding: 3rem 0;
    }

    .games-section__hero {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .games-section__title {
        font-size: 2rem;
    }

    .games-section__image {
        flex: none;
        order: -1;
        max-width: 350px;
        align-self: center;
    }

    .games-subsection {
        margin-bottom: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .games-subsection__content {
        flex-direction: column;
        gap: 2rem;
    }

    .games-subsection__title {
        font-size: 1.8rem;
    }

    .games-subsection__image {
        flex: none;
        max-width: 300px;
        align-self: center;
    }

    .bonus-section {
        padding: 3rem 0;
    }

    .bonus-section__hero {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .bonus-section__title {
        font-size: 2rem;
    }

    .bonus-section__image {
        flex: none;
        order: -1;
        max-width: 350px;
        align-self: center;
    }

    .bonus-table__row {
        flex-direction: column;
    }

    .bonus-table__cell--label {
        flex: none;
        background-color: rgba(255, 215, 0, 0.1);
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }

    .bonus-table__cell {
        padding: 0.8rem 1rem;
    }

    .bonus-section__conclusion {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .bonus-subsection {
        margin-bottom: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .bonus-subsection__title {
        font-size: 1.8rem;
    }

    .payment-section {
        padding: 3rem 0;
    }

    .payment-section__title {
        font-size: 2rem;
    }

    .payment-section__intro {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .payment-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .payment-table__row {
        min-width: 700px;
    }

    .payment-table__cell {
        padding: 0.8rem 0.6rem;
        font-size: 0.85rem;
    }

    .payment-table__cell--header {
        font-size: 0.9rem;
    }

    .payment-table__cell--method {
        flex: 0 0 35%;
    }

    .payment-section__conclusion {
        font-size: 1rem;
    }

    .support-section {
        padding: 3rem 0;
    }

    .support-section__title {
        font-size: 2rem;
    }

    .support-section__intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .support-section__list li {
        font-size: 1rem;
    }

    .support-section__note {
        font-size: 1rem;
    }

    .pros-cons-section {
        padding: 3rem 0;
    }

    .pros-cons-section__title {
        font-size: 2rem;
    }

    .pros-cons-section__intro {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .pros-cons-table__row {
        flex-direction: column;
    }

    .pros-cons-table__cell {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1rem;
        font-size: 0.95rem;
    }

    .pros-cons-table__cell:last-child {
        border-bottom: none;
    }

    .pros-cons-table__cell--header {
        font-size: 1.1rem;
    }

    .pros-cons-section__conclusion {
        font-size: 1rem;
    }

    .faq-section {
        padding: 3rem 0;
    }

    .faq-section__title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .faq-item__question {
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
    }

    .faq-item__icon {
        font-size: 1.3rem;
    }

    .faq-item__content {
        padding: 0 1.5rem 1.2rem 1.5rem;
        font-size: 1rem;
    }

    .bonus-page-hero {
        padding: 5rem 0 3rem 0;
    }

    .bonus-page-hero__content {
        flex-direction: column;
        gap: 2rem;
    }

    .bonus-page-hero__title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .bonus-page-hero__intro {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .bonus-page-hero__button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .bonus-page-hero__image {
        flex: none;
        order: -1;
        max-width: 350px;
        align-self: center;
    }

    .bonus-page-section {
        padding: 3rem 0;
    }

    .bonus-page-section__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .bonus-page-section__content {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .bonus-page-section__list li {
        font-size: 1rem;
    }

    .bonus-page-promos {
        padding: 3rem 0;
    }

    .bonus-page-promos__title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .bonus-page-promos__intro {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .bonus-promos-table__row {
        flex-direction: column;
    }

    .bonus-promos-table__cell--name {
        flex: none;
        background-color: rgba(255, 215, 0, 0.1);
        font-size: 0.9rem;
    }

    .bonus-promos-table__cell {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }

    .bonus-page-promos__note {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }

    .bonus-page-subsection {
        margin-bottom: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .bonus-page-subsection__content {
        flex-direction: column;
        gap: 2rem;
    }

    .bonus-page-subsection__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .bonus-page-subsection__description {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .bonus-page-subsection__list li {
        font-size: 0.95rem;
    }

    .bonus-page-subsection__image {
        flex: none;
        max-width: 300px;
        align-self: center;
    }

    .bonus-page-vip {
        padding: 3rem 0;
    }

    .bonus-page-vip__title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .bonus-page-vip__intro {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .bonus-page-vip__image-container {
        margin-bottom: 2.5rem;
    }

    .bonus-vip-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .bonus-vip-table__row {
        min-width: 700px;
    }

    .bonus-vip-table__cell {
        padding: 0.8rem 0.6rem;
        font-size: 0.85rem;
    }

    .bonus-vip-table__cell--header {
        font-size: 0.9rem;
    }

    .bonus-page-vip__conclusion {
        font-size: 1rem;
    }

    .bonus-page-claim {
        padding: 3rem 0;
    }

    .bonus-page-claim__title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .bonus-page-claim__content {
        flex-direction: column;
        gap: 2rem;
    }

    .bonus-page-claim__intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .bonus-page-claim__steps li {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .bonus-page-claim__conclusion {
        font-size: 1rem;
    }

    .bonus-page-claim__image {
        flex: none;
        order: -1;
        max-width: 350px;
        align-self: center;
    }

    .bonus-page-why {
        padding: 3rem 0;
    }

    .bonus-page-why__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .bonus-page-why__content {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        text-align: left;
    }

    .bonus-page-why__image-container {
        margin-bottom: 2.5rem;
    }

    .footer {
        padding: 1.5rem 0;
    }

    .footer__text {
        font-size: 0.85rem;
    }

    .login-page-hero {
        padding: 5rem 0 3rem 0;
    }

    .login-page-hero__content {
        flex-direction: column;
        gap: 2rem;
    }

    .login-page-hero__title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .login-page-hero__intro {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .login-page-hero__button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .login-page-hero__image {
        flex: none;
        order: -1;
        max-width: 350px;
        align-self: center;
    }

    .login-page-registration {
        padding: 3rem 0;
    }

    .login-page-registration__content {
        flex-direction: column;
        gap: 2rem;
    }

    .login-page-registration__title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .login-page-registration__intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .login-page-registration__steps li {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .login-page-registration__note {
        font-size: 1rem;
    }

    .login-page-registration__image {
        flex: none;
        max-width: 300px;
        align-self: center;
    }

    .login-page-verification {
        padding: 3rem 0;
    }

    .login-page-verification__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .login-page-verification__intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .login-page-verification__list li {
        font-size: 0.95rem;
    }

    .login-page-verification__conclusion {
        font-size: 1rem;
    }

    .login-page-connection {
        padding: 3rem 0;
    }

    .login-page-connection__content {
        flex-direction: column;
        gap: 2rem;
    }

    .login-page-connection__title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .login-page-connection__intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .login-page-connection__steps li {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .login-page-connection__note {
        font-size: 1rem;
    }

    .login-page-connection__image {
        flex: none;
        max-width: 300px;
        align-self: center;
    }

    .login-page-security {
        padding: 3rem 0;
    }

    .login-page-security__title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .login-page-security__intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .login-page-security__list li {
        font-size: 0.95rem;
    }

    .login-page-security__conclusion {
        font-size: 1rem;
    }

    .login-page-recovery {
        padding: 3rem 0;
    }

    .login-page-recovery__title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .login-page-recovery__intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .login-page-recovery__steps li {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .login-page-recovery__conclusion {
        font-size: 1rem;
    }

    .login-page-support {
        padding: 3rem 0;
    }

    .login-page-support__title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .login-page-support__intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .login-page-support__conclusion {
        font-size: 1rem;
        margin-top: 1.5rem;
    }

    .login-support-table__cell {
        padding: 1rem 1.2rem;
    }

    .login-support-table__cell--header {
        font-size: 1rem;
    }

    .login-support-table__cell--label {
        font-size: 0.95rem;
        flex: 0 0 150px;
    }

    .login-support-table__cell:not(.login-support-table__cell--header):not(.login-support-table__cell--label) {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .header__container {
        padding: 0 0.5rem;
    }

    .header__logo-img {
        height: 28px;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero__container {
        padding: 1.5rem 0.5rem;
    }

    .hero__title {
        font-size: 1.8rem;
    }

    .hero__description {
        font-size: 0.9rem;
    }

    .hero__button {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    .info-section {
        padding: 2rem 0;
    }

    .info-section__container {
        padding: 0 0.5rem;
    }

    .info-table__cell {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }

    .info-table__cell--header {
        font-size: 1rem;
    }

    .info-section__conclusion {
        font-size: 0.95rem;
    }

    .registration-section {
        padding: 2rem 0;
    }

    .registration-section__container {
        padding: 0 0.5rem;
    }

    .registration-section__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .registration-section__intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .registration-section__steps li {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .registration-section__note {
        font-size: 0.9rem;
    }

    .games-section {
        padding: 2rem 0;
    }

    .games-section__container {
        padding: 0 0.5rem;
    }

    .games-section__hero {
        margin-bottom: 2rem;
    }

    .games-section__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .games-section__intro {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .games-section__image {
        max-width: 280px;
    }

    .games-subsection {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .games-subsection__title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .games-subsection__description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .games-subsection__list li {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .games-subsection__note {
        font-size: 0.9rem;
    }

    .games-subsection__image {
        max-width: 250px;
    }

    .bonus-section {
        padding: 2rem 0;
    }

    .bonus-section__container {
        padding: 0 0.5rem;
    }

    .bonus-section__hero {
        margin-bottom: 2rem;
    }

    .bonus-section__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .bonus-section__intro {
        font-size: 1rem;
    }

    .bonus-section__image {
        max-width: 280px;
    }

    .bonus-table__cell {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }

    .bonus-table__cell--header {
        font-size: 1rem;
    }

    .bonus-section__conclusion {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .bonus-subsection {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .bonus-subsection__title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .bonus-subsection__description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .bonus-subsection__list li {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .payment-section {
        padding: 2rem 0;
    }

    .payment-section__container {
        padding: 0 0.5rem;
    }

    .payment-section__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .payment-section__intro {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .payment-table__row {
        min-width: 600px;
    }

    .payment-table__cell {
        padding: 0.7rem 0.4rem;
        font-size: 0.8rem;
    }

    .payment-table__cell--header {
        font-size: 0.85rem;
    }

    .payment-table__cell--method {
        flex: 0 0 40%;
        font-size: 0.75rem;
    }

    .payment-section__conclusion {
        font-size: 0.95rem;
    }

    .support-section {
        padding: 2rem 0;
    }

    .support-section__container {
        padding: 0 0.5rem;
    }

    .support-section__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .support-section__intro {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .support-section__list li {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    .support-section__note {
        font-size: 0.95rem;
    }

    .pros-cons-section {
        padding: 2rem 0;
    }

    .pros-cons-section__container {
        padding: 0 0.5rem;
    }

    .pros-cons-section__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .pros-cons-section__intro {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .pros-cons-table__cell {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .pros-cons-table__cell--header {
        font-size: 1rem;
    }

    .pros-cons-section__conclusion {
        font-size: 0.95rem;
    }

    .faq-section {
        padding: 2rem 0;
    }

    .faq-section__container {
        padding: 0 0.5rem;
    }

    .faq-section__title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .faq-item {
        margin-bottom: 0.8rem;
    }

    .faq-item__question {
        padding: 1rem 1rem;
        font-size: 1rem;
    }

    .faq-item__icon {
        font-size: 1.2rem;
    }

    .faq-item__content {
        padding: 0 1rem 1rem 1rem;
        font-size: 0.95rem;
    }

    .bonus-page-hero {
        padding: 4rem 0 2rem 0;
    }

    .bonus-page-hero__container {
        padding: 0 0.5rem;
    }

    .bonus-page-hero__title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .bonus-page-hero__intro {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .bonus-page-hero__button {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    .bonus-page-hero__image {
        max-width: 280px;
    }

    .bonus-page-section {
        padding: 2rem 0;
    }

    .bonus-page-section__container {
        padding: 0 0.5rem;
    }

    .bonus-page-section__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .bonus-page-section__content {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .bonus-page-section__list {
        padding-left: 1.5rem;
        margin: 1.5rem 0;
    }

    .bonus-page-section__list li {
        font-size: 0.95rem;
    }

    .bonus-page-promos {
        padding: 2rem 0;
    }

    .bonus-page-promos__container {
        padding: 0 0.5rem;
    }

    .bonus-page-promos__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .bonus-page-promos__intro {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .bonus-promos-table__cell {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }

    .bonus-promos-table__cell--header {
        font-size: 1rem;
    }

    .bonus-page-promos__note {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .bonus-page-subsection {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .bonus-page-subsection__title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .bonus-page-subsection__description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .bonus-page-subsection__list {
        padding-left: 1rem;
        margin-bottom: 1rem;
    }

    .bonus-page-subsection__list li {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .bonus-page-subsection__image {
        max-width: 250px;
    }

    .bonus-page-vip {
        padding: 2rem 0;
    }

    .bonus-page-vip__container {
        padding: 0 0.5rem;
    }

    .bonus-page-vip__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .bonus-page-vip__intro {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .bonus-page-vip__image-container {
        margin-bottom: 2rem;
    }

    .bonus-vip-table__row {
        min-width: 600px;
    }

    .bonus-vip-table__cell {
        padding: 0.7rem 0.4rem;
        font-size: 0.8rem;
    }

    .bonus-vip-table__cell--header {
        font-size: 0.85rem;
    }

    .bonus-page-vip__conclusion {
        font-size: 0.95rem;
    }

    .bonus-page-claim {
        padding: 2rem 0;
    }

    .bonus-page-claim__container {
        padding: 0 0.5rem;
    }

    .bonus-page-claim__title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .bonus-page-claim__intro {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .bonus-page-claim__steps {
        padding-left: 1rem;
        margin-bottom: 1.5rem;
    }

    .bonus-page-claim__steps li {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .bonus-page-claim__conclusion {
        font-size: 0.95rem;
    }

    .bonus-page-claim__image {
        max-width: 280px;
    }

    .bonus-page-why {
        padding: 2rem 0;
    }

    .bonus-page-why__container {
        padding: 0 0.5rem;
    }

    .bonus-page-why__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .bonus-page-why__content {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .bonus-page-why__image-container {
        margin-bottom: 2rem;
    }

    .footer {
        padding: 1rem 0;
    }

    .footer__container {
        padding: 0 0.5rem;
    }

    .footer__text {
        font-size: 0.8rem;
    }

    .login-page-hero {
        padding: 4rem 0 2rem 0;
    }

    .login-page-hero__container {
        padding: 0 0.5rem;
    }

    .login-page-hero__title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .login-page-hero__intro {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .login-page-hero__button {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    .login-page-hero__image {
        max-width: 280px;
    }

    .login-page-registration {
        padding: 2rem 0;
    }

    .login-page-registration__container {
        padding: 0 0.5rem;
    }

    .login-page-registration__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .login-page-registration__intro {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .login-page-registration__steps {
        padding-left: 1rem;
        margin-bottom: 1.5rem;
    }

    .login-page-registration__steps li {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .login-page-registration__note {
        font-size: 0.95rem;
    }

    .login-page-registration__image {
        max-width: 250px;
    }

    .login-page-verification {
        padding: 2rem 0;
    }

    .login-page-verification__container {
        padding: 0 0.5rem;
    }

    .login-page-verification__title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .login-page-verification__intro {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .login-page-verification__list {
        padding-left: 1rem;
        margin-bottom: 1.5rem;
    }

    .login-page-verification__list li {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .login-page-verification__conclusion {
        font-size: 0.95rem;
    }

    .login-page-connection {
        padding: 2rem 0;
    }

    .login-page-connection__container {
        padding: 0 0.5rem;
    }

    .login-page-connection__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .login-page-connection__intro {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .login-page-connection__steps {
        padding-left: 1rem;
        margin-bottom: 1.5rem;
    }

    .login-page-connection__steps li {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .login-page-connection__note {
        font-size: 0.95rem;
    }

    .login-page-connection__image {
        max-width: 250px;
    }

    .login-page-security {
        padding: 2rem 0;
    }

    .login-page-security__container {
        padding: 0 0.5rem;
    }

    .login-page-security__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .login-page-security__intro {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .login-page-security__list {
        padding-left: 1rem;
        margin-bottom: 1.5rem;
    }

    .login-page-security__list li {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .login-page-security__conclusion {
        font-size: 0.95rem;
    }

    .login-page-recovery {
        padding: 2rem 0;
    }

    .login-page-recovery__container {
        padding: 0 0.5rem;
    }

    .login-page-recovery__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .login-page-recovery__intro {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .login-page-recovery__steps {
        padding-left: 1rem;
        margin-bottom: 1.5rem;
    }

    .login-page-recovery__steps li {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .login-page-recovery__conclusion {
        font-size: 0.95rem;
    }

    .login-page-support {
        padding: 2rem 0;
    }

    .login-page-support__container {
        padding: 0 0.5rem;
    }

    .login-page-support__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .login-page-support__intro {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .login-page-support__conclusion {
        font-size: 0.95rem;
        margin-top: 1rem;
    }

    .login-support-table {
        margin-bottom: 1rem;
        overflow-x: auto;
    }

    .login-support-table__row {
        min-width: 400px;
    }

    .login-support-table__cell {
        padding: 0.8rem 1rem;
    }

    .login-support-table__cell--header {
        font-size: 0.95rem;
    }

    .login-support-table__cell--label {
        font-size: 0.9rem;
        flex: 0 0 120px;
    }

    .login-support-table__cell:not(.login-support-table__cell--header):not(.login-support-table__cell--label) {
        font-size: 0.9rem;
    }
} 