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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #0b0833;
    color: #ffffff;
}

.header {
    background-color: #0b0833;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.header__logo {
    flex-shrink: 0;
}

.header__logo-link {
    display: block;
    line-height: 0;
}

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

.header__nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

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

.header__nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.header__nav-link:hover {
    color: #ffd700;
}

.header__burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1001;
}

.header__burger-line {
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform-origin: center center;
    transform: translateX(-50%);
}

.header__burger-line:nth-child(1) {
    top: calc(50% - 6px);
}

.header__burger-line:nth-child(2) {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.header__burger-line:nth-child(3) {
    top: calc(50% + 4px);
}

.header__burger.active .header__burger-line:nth-child(1) {
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

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

.header__burger.active .header__burger-line:nth-child(3) {
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.header__buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.header__btn {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.header__btn--play {
    background-color: #ffd700;
    color: #0b0833;
}

.header__btn--play:hover {
    background-color: #ffed4a;
    transform: translateY(-1px);
}

.header__btn--register {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.header__btn--register:hover {
    background-color: #ffffff;
    color: #0b0833;
}

.header__mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #0b0833;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 80px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    height: 100vh;
}

.header__mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.header__mobile-nav-list {
    list-style: none;
    padding: 2rem;
}

.header__mobile-nav-item {
    margin-bottom: 1.5rem;
}

.header__mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.header__mobile-nav-link:hover {
    color: #ffd700;
}

.main {
    margin-top: 80px;
}

.hero {
    background-image: url('assets/frumzich-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    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.85);
    z-index: 1;
}

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

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

.hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.hero__description {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 3rem;
    line-height: 1.6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background: rgba(11, 8, 51, 0.6);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.hero__cta {
    display: inline-block;
    background-color: #ffd700;
    color: #0b0833;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.hero__cta:hover {
    background-color: #ffed4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

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

.info__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.info__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.info__table-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info__table {
    width: 100%;
    border-collapse: collapse;
}

.info__row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.info__label {
    padding: 1rem 0;
    font-weight: 600;
    color: #ffd700;
    width: 40%;
    font-size: 0.95rem;
    vertical-align: top;
}

.info__value {
    padding: 1rem 0;
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.4;
    vertical-align: top;
}

.info__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

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

.registration__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.registration__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

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

.registration__description:last-child {
    margin-bottom: 0;
}

.registration__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

.games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.games__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.games__intro {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.games__category {
    margin-bottom: 3rem;
}

.games__category:last-of-type {
    margin-bottom: 2rem;
}

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

.games__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.games__description:last-child {
    margin-bottom: 0;
}

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

.games__list-item {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.games__list-item::before {
    content: '🎰';
    position: absolute;
    left: 0;
    top: 0;
}

.games__list-item:last-child {
    margin-bottom: 0;
}

.games__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.games__image-full {
    margin-top: 2rem;
}

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

.games__cta-wrapper {
    text-align: center;
    margin-top: 2rem;
}

.games__cta {
    display: inline-block;
    background-color: #ffd700;
    color: #0b0833;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.games__cta:hover {
    background-color: #ffed4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

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

.payment__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.payment__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.payment__intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

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

.payment__methods-title {
    font-size: 1.1rem;
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.payment__method-item {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.payment__method-item::before {
    content: '💳';
    position: absolute;
    left: 0;
    top: 0;
}

.payment__method-item:last-child {
    margin-bottom: 0;
}

.payment__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.payment__category {
    margin-bottom: 3rem;
}

.payment__category:last-child {
    margin-bottom: 0;
}

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

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

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

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

.support__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.support__list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.support__list-item {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.support__list-item::before {
    content: '📞';
    position: absolute;
    left: 0;
    top: 0;
}

.support__list-item:last-child {
    margin-bottom: 0;
}

.support__list-item strong {
    color: #ffd700;
    font-weight: 600;
}

.support__summary {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    font-style: italic;
}

.support__image-full {
    margin-bottom: 3rem;
}

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

.support__category {
    margin-bottom: 2rem;
}

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

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

.support__cta-wrapper {
    text-align: center;
    margin-top: 2rem;
}

.support__cta {
    display: inline-block;
    background-color: #ffd700;
    color: #0b0833;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.support__cta:hover {
    background-color: #ffed4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

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

.faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

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

.faq__question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq__question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq__question-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-align: left;
    line-height: 1.3;
}

.faq__icon {
    font-size: 1.5rem;
    color: #ffd700;
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq__question[aria-expanded="true"] .faq__icon {
    transform: rotate(45deg);
}

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

.faq__answer.active {
    max-height: 500px;
}

.faq__answer-content {
    padding: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq__answer-content p {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

/* Login Page Styles */
.login-hero {
    background-color: #0b0833;
    padding: 6rem 0 4rem;
    text-align: center;
}

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

.login-hero__title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.login-hero__cta-wrapper {
    margin-top: 2rem;
}

.login-hero__cta {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #0b0833;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.login-hero__cta:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.login-intro {
    background-color: #0b0833;
    padding: 4rem 0;
}

.login-intro__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.login-intro__image-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.login-access {
    background-color: #0b0833;
    padding: 4rem 0;
}

.login-access__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.login-access__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.login-access__subsection {
    margin-bottom: 2.5rem;
}

.login-access__subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.login-access__text {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

.login-access__cta-wrapper {
    margin-top: 3rem;
    text-align: center;
}

.login-access__cta {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #0b0833;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.login-access__cta:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.login-steps {
    background-color: #0b0833;
    padding: 4rem 0;
}

.login-steps__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.login-steps__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

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

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

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

.login-support__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.login-support__text {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

/* Internal Link Styles */
.internal-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.internal-link:hover {
    color: #ffed4e;
    border-bottom-color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

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

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

.footer__logo {
    margin-bottom: 2rem;
}

.footer__logo-link {
    display: inline-block;
    line-height: 0;
}

.footer__logo-img {
    height: 50px;
    width: auto;
}

.footer__payments {
    margin-bottom: 2rem;
}

.footer__payments-title {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.footer__payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer__payment-img {
    height: 40px;
    width: auto;
    border-radius: 6px;
    transition: transform 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
}

.footer__payment-img:hover {
    transform: scale(1.05);
}

.footer__legal {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer__copyright {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.footer__disclaimer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-style: italic;
}

/* Bonus Page Styles */
.bonus-hero {
    background-color: #0b0833;
    padding: 2rem 0;
    text-align: center;
}

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

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

.bonus-hero__cta-wrapper {
    margin-top: 1rem;
}

.bonus-hero__cta {
    display: inline-block;
    background-color: #ffd700;
    color: #0b0833;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.bonus-hero__cta:hover {
    background-color: #ffed4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

.bonus-intro {
    padding: 4rem 0;
    background-color: #0b0833;
}

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

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

.bonus-intro__image-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.bonus-types {
    padding: 4rem 0;
    background-color: #0b0833;
}

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

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

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

.bonus-types__image {
    margin-top: 3rem;
}

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

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

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

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

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

.bonus-claim__cta-wrapper {
    margin-top: 2rem;
    text-align: center;
}

.bonus-claim__cta-wrapper {
    margin-top: 2rem;
}

.bonus-claim__cta {
    display: inline-block;
    background-color: #ffd700;
    color: #0b0833;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.bonus-claim__cta:hover {
    background-color: #ffed4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

.bonus-maximize {
    padding: 4rem 0;
    background-color: #0b0833;
}

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

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

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

.sticky-burger {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background-color: #ffd700;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1002;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sticky-burger:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.sticky-burger-line {
    width: 20px;
    height: 2px;
    background-color: #0b0833;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform-origin: center center;
    transform: translateX(-50%);
}

.sticky-burger-line:nth-child(1) {
    top: calc(50% - 5px);
}

.sticky-burger-line:nth-child(2) {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.sticky-burger-line:nth-child(3) {
    top: calc(50% + 3px);
}

.sticky-burger.active .sticky-burger-line:nth-child(1) {
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.sticky-burger.active .sticky-burger-line:nth-child(2) {
    opacity: 0;
}

.sticky-burger.active .sticky-burger-line:nth-child(3) {
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

@media (max-width: 768px) {
    .header__container {
        padding: 1rem;
        justify-content: space-between;
    }
    
    .header__nav {
        display: none;
    }
    
    .header__burger {
        display: none;
    }
    
    .header__buttons {
        gap: 0.5rem;
    }
    
    .header__btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .sticky-burger {
        display: flex;
    }
    
    .hero {
        min-height: 70vh;
        padding-top: 2rem;
        background-position: 70% center;
    }
    
    .hero__container {
        padding: 1.5rem;
    }
    
    .hero__title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero__description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero__cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header__container {
        padding: 0.75rem;
    }
    
    .header__logo-img {
        height: 24px;
    }
    
    .header__btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .hero__container {
        padding: 1rem;
    }
    
    .hero__title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero__description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero__cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .info {
        padding: 3rem 0;
    }
    
    .info__container {
        padding: 0 1.5rem;
    }
    
    .info__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info__table-wrapper {
        padding: 1.5rem;
    }
    
    .info__label {
        font-size: 0.9rem;
        width: 45%;
    }
    
    .info__value {
        font-size: 0.9rem;
    }
    
    .registration {
        padding: 3rem 0;
    }
    
    .registration__container {
        padding: 0 1.5rem;
    }
    
    .registration__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .registration__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .registration__description {
        font-size: 1rem;
    }
    
    .games {
        padding: 3rem 0;
    }
    
    .games__container {
        padding: 0 1.5rem;
    }
    
    .games__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .games__intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .games__subtitle {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .games__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .games__description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .games__list-item {
        font-size: 1rem;
    }
    
    .games__cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .payment {
        padding: 3rem 0;
    }
    
    .payment__container {
        padding: 0 1.5rem;
    }
    
    .payment__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .payment__intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .payment__intro {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .payment__methods-title {
        font-size: 1rem;
    }
    
    .payment__method-item {
        font-size: 1rem;
    }
    
    .payment__subtitle {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .payment__description {
        font-size: 1rem;
    }
    
    .support {
        padding: 3rem 0;
    }
    
    .support__container {
        padding: 0 1.5rem;
    }
    
    .support__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .support__list {
        margin-bottom: 1.5rem;
    }
    
    .support__list-item {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .support__summary {
        font-size: 1rem;
    }
    
    .support__subtitle {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .support__description {
        font-size: 1rem;
    }
    
    .support__cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .faq {
        padding: 3rem 0;
    }
    
    .faq__container {
        padding: 0 1.5rem;
    }
    
    .faq__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .faq__question {
        padding: 1rem;
    }
    
    .faq__question-text {
        font-size: 1rem;
    }
    
    .faq__icon {
        font-size: 1.2rem;
    }
    
    .faq__answer-content {
        padding: 1rem;
        padding-top: 1.5rem;
    }
    
    .faq__answer-content p {
        font-size: 1rem;
    }
    
    .footer {
        padding: 2rem 0 1.5rem;
    }
    
    .footer__container {
        padding: 0 1.5rem;
    }
    
    .footer__logo {
        margin-bottom: 1.5rem;
    }
    
    .footer__logo-img {
        height: 40px;
    }
    
    .footer__payments {
        margin-bottom: 1.5rem;
    }
    
    .footer__payments-title {
        font-size: 1rem;
    }
    
    .footer__payment-methods {
        gap: 1rem;
    }
    
    .footer__payment-img {
        height: 35px;
        padding: 0.3rem;
    }
    
    .footer__legal {
        padding-top: 1.5rem;
    }
    
    .footer__copyright {
        font-size: 0.9rem;
    }
    
    .footer__disclaimer {
        font-size: 0.8rem;
    }
    
    .bonus-hero {
        padding: 1.5rem 0;
    }
    
    .bonus-hero__container {
        padding: 0 1.5rem;
    }
    
    .bonus-hero__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .bonus-hero__cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .bonus-intro {
        padding: 3rem 0;
    }
    
    .bonus-intro__container {
        padding: 0 1.5rem;
    }
    

    
    .bonus-intro__description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .bonus-types {
        padding: 3rem 0;
    }
    
    .bonus-types__container {
        padding: 0 1.5rem;
    }
    
    .bonus-types__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .bonus-types__intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .bonus-types__image {
        margin-top: 2rem;
    }
    
    .bonus-claim {
        padding: 3rem 0;
    }
    
    .bonus-claim__container {
        padding: 0 1.5rem;
    }
    
    .bonus-claim__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .bonus-claim__description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .bonus-claim__cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .bonus-maximize {
        padding: 3rem 0;
    }
    
    .bonus-maximize__container {
        padding: 0 1.5rem;
    }
    
    .bonus-maximize__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .bonus-maximize__description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header__container {
        padding: 0.75rem;
    }
    
    .header__logo-img {
        height: 24px;
    }
    
    .header__btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .hero__container {
        padding: 1rem;
    }
    
    .hero__title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero__description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero__cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .info__container {
        padding: 0 1rem;
    }
    
    .info__table-wrapper {
        padding: 1rem;
    }
    
    .info__label {
        font-size: 0.85rem;
        width: 50%;
        padding: 0.75rem 0;
    }
    
    .info__value {
        font-size: 0.85rem;
        padding: 0.75rem 0;
    }
    
    .registration__container {
        padding: 0 1rem;
    }
    
    .registration__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .registration__description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .games__container {
        padding: 0 1rem;
    }
    
    .games__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .games__intro {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .games__subtitle {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .games__description {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .games__list-item {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .games__cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .payment__container {
        padding: 0 1rem;
    }
    
    .payment__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .payment__intro {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .payment__methods-title {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .payment__method-item {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .payment__subtitle {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .payment__description {
        font-size: 0.95rem;
    }
    
    .support__container {
        padding: 0 1rem;
    }
    
    .support__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .support__list-item {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .support__summary {
        font-size: 0.95rem;
    }
    
    .support__subtitle {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .support__description {
        font-size: 0.95rem;
    }
    
    .support__cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .faq__container {
        padding: 0 1rem;
    }
    
    .faq__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .faq__question {
        padding: 0.75rem;
    }
    
    .faq__question-text {
        font-size: 0.95rem;
    }
    
    .faq__icon {
        font-size: 1rem;
    }
    
    .faq__answer-content {
        padding: 0.75rem;
        padding-top: 1rem;
    }
    
    .faq__answer-content p {
        font-size: 0.95rem;
    }
    
    .footer__container {
        padding: 0 1rem;
    }
    
    .footer__logo {
        margin-bottom: 1rem;
    }
    
    .footer__logo-img {
        height: 35px;
    }
    
    .footer__payments {
        margin-bottom: 1rem;
    }
    
    .footer__payments-title {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .footer__payment-methods {
        gap: 0.75rem;
    }
    
    .footer__payment-img {
        height: 30px;
        padding: 0.25rem;
    }
    
    .footer__legal {
        padding-top: 1rem;
    }
    
    .footer__copyright {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }
    
    .footer__disclaimer {
        font-size: 0.75rem;
    }
    
    .bonus-hero__container {
        padding: 0 1rem;
    }
    
    .bonus-hero__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .bonus-hero__cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .bonus-intro__container {
        padding: 0 1rem;
    }
    
    .bonus-intro__description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .bonus-types__container {
        padding: 0 1rem;
    }
    
    .bonus-types__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .bonus-types__intro {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .bonus-claim__container {
        padding: 0 1rem;
    }
    
    .bonus-claim__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .bonus-claim__description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .bonus-claim__cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .bonus-maximize__container {
        padding: 0 1rem;
    }
    
    .bonus-maximize__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .bonus-maximize__description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .login-hero {
        padding: 3rem 0 2rem;
    }
    
    .login-hero__container {
        padding: 0 1rem;
    }
    
    .login-hero__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .login-hero__cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .login-intro {
        padding: 2.5rem 0;
    }
    
    .login-intro__container {
        padding: 0 1rem;
    }
    
    .login-intro__description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .login-access {
        padding: 2.5rem 0;
    }
    
    .login-access__container {
        padding: 0 1rem;
    }
    
    .login-access__title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .login-access__subtitle {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .login-access__text {
        font-size: 0.95rem;
    }
    
    .login-access__cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .login-steps {
        padding: 2.5rem 0;
    }
    
    .login-steps__container {
        padding: 0 1rem;
    }
    
    .login-steps__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .login-steps__intro {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .login-support {
        padding: 2.5rem 0;
    }
    
    .login-support__container {
        padding: 0 1rem;
    }
    
    .login-support__title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .login-support__text {
        font-size: 0.95rem;
    }
} 