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

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

.inlink {
    color: #ecfd00;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.inlink:hover {
    color: #d40237;
    border-bottom-color: #d40237;
}

.header {
    background-color: #172333;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.header__logo {
    flex-shrink: 0;
}

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

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

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

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

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

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

.header__cta-btn {
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #172333;
    font-size: 0.9rem;
}

.header__cta-btn--play {
    background-color: #ecfd00;
}

.header__cta-btn--play:hover {
    background-color: #d4e600;
    transform: translateY(-2px);
}

.header__cta-btn--register {
    background-color: #d40237;
    color: #fff;
}

.header__cta-btn--register:hover {
    background-color: #b8021f;
    transform: translateY(-2px);
}

.header__burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.header__burger-line {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.header__burger.active .header__burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.header__burger.active .header__burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.header__mobile-nav {
    display: none;
    background-color: #172333;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.header__mobile-nav.active {
    display: block;
}

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

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

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

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

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

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

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

.hero__content {
    max-width: 600px;
    color: #fff;
    text-align: center;
}

.hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero__text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.hero__cta {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ecfd00;
    color: #172333;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.hero__cta:hover {
    background-color: #d4e600;
    transform: translateY(-2px);
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(236, 253, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(236, 253, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(236, 253, 0, 0);
    }
}

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

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

.info__table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 3rem;
}

.info__row {
    border-left: 4px solid #ecfd00;
    background-color: rgba(23, 35, 51, 0.5);
}

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

.info__cell {
    padding: 1.5rem;
    vertical-align: top;
}

.info__cell--icon {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ecfd00;
    width: 30%;
}

.info__cell--text {
    color: #fff;
    font-size: 1rem;
    line-height: 1.5;
    width: 70%;
}

.info__image {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    display: block;
}

.info__description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

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

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

.payment__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 3rem;
    text-align: center;
}

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

.payment__text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.payment__img {
    width: 100%;
    height: auto;
    display: block;
}

.payment__table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 3rem;
    background-color: rgba(23, 35, 51, 0.5);
}

.payment__row:first-child .payment__cell {
    background-color: rgba(236, 253, 0, 0.1);
    font-weight: 600;
    color: #ecfd00;
}

.payment__cell {
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    vertical-align: top;
}

.payment__bonus-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.security {
    padding: 4rem 0;
    background-color: #1a2732;
}

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

.security__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 2rem;
    text-align: center;
}

.security__text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    margin-bottom: 4rem;
}

.security__pros-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 2rem;
    text-align: center;
}

.security__table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(23, 35, 51, 0.5);
    margin-bottom: 2rem;
}

.security__header-row {
    background-color: rgba(236, 253, 0, 0.1);
}

.security__header {
    padding: 1.5rem 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.security__header--pros {
    color: #ecfd00;
}

.security__header--cons {
    color: #d40237;
}

.security__cell {
    padding: 1.2rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    vertical-align: top;
}

.security__cell--pros {
    background-color: rgba(236, 253, 0, 0.05);
}

.security__cell--cons {
    background-color: rgba(212, 2, 55, 0.05);
}

.bonus {
    padding: 4rem 0;
    background-color: #1a2732;
}

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

.bonus__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 2rem;
    text-align: center;
}

.bonus__intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    margin-bottom: 3rem;
}

.bonus__image-section {
    text-align: center;
    margin-bottom: 3rem;
}

.bonus__image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.bonus__subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #ecfd00;
    margin-bottom: 1.5rem;
    text-align: left;
}

.bonus__text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    margin-bottom: 2rem;
}

.bonus__list {
    list-style: none;
    margin-bottom: 3rem;
    padding: 0;
}

.bonus__item {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: rgba(23, 35, 51, 0.5);
    border-left: 4px solid #ecfd00;
}

.bonus__cta-section {
    text-align: center;
    margin-bottom: 4rem;
}

.bonus__cta {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #d40237;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.bonus__cta:hover {
    background-color: #b8021f;
    transform: translateY(-2px);
}

.bonus__sport-section {
    margin-top: 4rem;
}

.bonus__sport-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.bonus__sport-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    text-align: left;
}

.bonus__sport-image {
    text-align: center;
}

.bonus__sport-full {
    margin-top: 3rem;
}

.bonus__sport-full p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    text-align: left;
}

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

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

.games__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 2rem;
    text-align: center;
}

.games__intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    margin-bottom: 3rem;
}

.games__image-section {
    text-align: center;
    margin-bottom: 3rem;
}

.games__image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.games__subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #ecfd00;
    margin-bottom: 1.5rem;
    text-align: left;
}

.games__text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    margin-bottom: 3rem;
}

.games__cta-section {
    text-align: center;
    margin-bottom: 4rem;
}

.games__cta {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ecfd00;
    color: #172333;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.games__cta:hover {
    background-color: #d4e600;
    transform: translateY(-2px);
}

.providers {
    padding: 4rem 0;
    background-color: #1a2732;
}

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

.providers__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 2rem;
    text-align: center;
}

.providers__intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    margin-bottom: 3rem;
}

.providers__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.providers__item {
    padding: 1.5rem;
    background-color: rgba(23, 35, 51, 0.5);
    border-left: 4px solid #ecfd00;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    transition: all 0.3s ease;
}

.providers__item:hover {
    background-color: rgba(23, 35, 51, 0.7);
    transform: translateY(-2px);
}

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

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

.support__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 2rem;
    text-align: center;
}

.support__intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    margin-bottom: 3rem;
}

.support__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.5rem;
}

.support__item {
    padding: 1.5rem;
    background-color: rgba(23, 35, 51, 0.5);
    border-left: 4px solid #ecfd00;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    transition: all 0.3s ease;
}

.support__item:hover {
    background-color: rgba(23, 35, 51, 0.7);
    transform: translateX(5px);
}

.support__item strong {
    color: #ecfd00;
    font-weight: 600;
}

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

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

.faq__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 3rem;
    text-align: center;
}

.faq__item {
    margin-bottom: 1rem;
    background-color: rgba(23, 35, 51, 0.5);
    border-left: 4px solid #ecfd00;
}

.faq__question {
    padding: 1.5rem;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ecfd00;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    text-align: left;
}

.faq__question:hover {
    background-color: rgba(23, 35, 51, 0.7);
}

.faq__icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ecfd00;
    transition: transform 0.3s ease;
}

.faq__question.active .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 p {
    padding: 1.5rem;
    padding-top: 2rem;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

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

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

.footer__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer__brand {
    text-align: left;
}

.footer__logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

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

.footer__disclaimer {
    text-align: left;
}

.footer__disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

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

.footer__payments-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ecfd00;
    margin-bottom: 1.5rem;
    text-align: center;
}

.footer__payments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 1.5rem;
    justify-items: center;
    align-items: center;
}

.footer__payment-icon {
    height: 40px;
    width: auto;
    max-width: 80px;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.footer__payment-icon:hover {
    filter: brightness(1);
}

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

.main p {
    color: #fff;
}

/* Login Page Styles */
.login-hero {
    padding: 4rem 0;
    background-color: #1a2732;
}

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

.login-hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 2rem;
    text-align: center;
}

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

.login-hero__btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #d40237;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.login-hero__btn:hover {
    background-color: #b8021f;
    transform: translateY(-2px);
}

.login-hero__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.login-hero__text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.login-hero__image {
    text-align: center;
}

.login-hero__img {
    width: 100%;
    height: auto;
    display: block;
}

.login-registration {
    padding: 4rem 0;
    background-color: #1a2732;
}

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

.login-registration__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 2rem;
    text-align: center;
}

.login-registration__intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    margin-bottom: 3rem;
}

.login-registration__subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #ecfd00;
    margin-bottom: 1.5rem;
    text-align: left;
}

.login-registration__text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    margin-bottom: 3rem;
}

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

.login-registration__btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #d40237;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.login-registration__btn:hover {
    background-color: #b8021f;
    transform: translateY(-2px);
}

.login-registration__list {
    margin-bottom: 3rem;
    padding-left: 2rem;
    counter-reset: step-counter;
}

.login-registration__list-item {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: rgba(23, 35, 51, 0.5);
    border-left: 4px solid #ecfd00;
    list-style: decimal;
}

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

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

.login-steps__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 3rem;
    text-align: center;
}

.login-steps__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.login-steps__text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.login-steps__image {
    text-align: center;
}

.login-steps__img {
    width: 100%;
    height: auto;
    display: block;
}

.login-steps__list {
    padding-left: 2rem;
}

.login-steps__list-item {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: rgba(23, 35, 51, 0.5);
    border-left: 4px solid #ecfd00;
    list-style: decimal;
}

.login-steps__list-item strong {
    color: #ecfd00;
    font-weight: 600;
}

/* Bonus Page Styles */
.bonus-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #1a2332 0%, #243447 100%);
}

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

.bonus-hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bonus-hero__title {
    font-size: 3rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 2rem;
    text-align: center;
}

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

.bonus-hero__btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #d40237;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.bonus-hero__btn:hover {
    background-color: #b8021f;
    transform: translateY(-2px);
}

.bonus-hero__text p {
    color: #ffffff;
    line-height: 1.8;
    font-size: 1.1rem;
}

.bonus-hero__image {
    text-align: center;
}

.bonus-hero__img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

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

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

.bonus-types__title {
    font-size: 2.5rem;
    color: #ecfd00;
    text-align: center;
    margin-bottom: 3rem;
}

.bonus-types__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bonus-types__text p {
    color: #ffffff;
    line-height: 1.8;
    font-size: 1.1rem;
}

.bonus-types__image {
    text-align: center;
}

.bonus-types__img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.bonus-welcome {
    padding: 4rem 0;
    background: linear-gradient(135deg, #243447 0%, #1a2332 100%);
}

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

.bonus-welcome__title {
    font-size: 2rem;
    color: #ecfd00;
    text-align: center;
    margin-bottom: 3rem;
}

.bonus-welcome__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bonus-welcome__text p {
    color: #ffffff;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.bonus-welcome__image {
    text-align: center;
}

.bonus-welcome__img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.bonus-sports {
    padding: 4rem 0;
    background-color: #1a2332;
}

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

.bonus-sports__title {
    font-size: 2rem;
    color: #ecfd00;
    text-align: center;
    margin-bottom: 2rem;
}

.bonus-sports__intro {
    color: #ffffff;
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: left;
    margin-bottom: 3rem;
}

.bonus-sports__cta {
    text-align: center;
    margin-top: 3rem;
}

.bonus-sports__btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ecfd00;
    color: #1a2332;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bonus-sports__btn:hover {
    background-color: #d4e600;
    transform: translateY(-2px);
}

.bonus-crypto {
    padding: 4rem 0;
    background: linear-gradient(135deg, #243447 0%, #1a2332 100%);
}

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

.bonus-crypto__title {
    font-size: 2rem;
    color: #ecfd00;
    text-align: center;
    margin-bottom: 2rem;
}

.bonus-crypto__text {
    color: #ffffff;
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

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

    .header__burger {
        display: flex;
    }
    
    .header__cta {
        gap: 0.5rem;
    }

    .header__cta-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .hero {
        min-height: 60vh;
    }

    .hero__title {
        font-size: 2.2rem;
    }

    .hero__text {
        font-size: 1.1rem;
    }
    
    .info__description {
        font-size: 1rem;
    }
    
    .payment__title {
        font-size: 2rem;
    }

    .payment__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .payment__table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .payment__row {
        display: flex;
    }

    .payment__cell {
        flex: 1;
        min-width: 120px;
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }

    .security__title {
        font-size: 2rem;
    }

    .security__pros-title {
        font-size: 2rem;
    }
    
    .security__table {
        display: block;
        overflow-x: auto;
    }

    .security__header-row,
    .security__row {
        display: flex;
    }
    
    .security__header,
    .security__cell {
        flex: 1;
        min-width: 150px;
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }

    .bonus__title {
        font-size: 2rem;
    }

    .bonus__subtitle {
        font-size: 1.6rem;
    }

    .bonus__sport-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .bonus__sport-image {
        order: -1;
    }

    .games__title {
        font-size: 2rem;
    }
    
    .games__subtitle {
        font-size: 1.6rem;
    }

    .providers__title {
        font-size: 2rem;
    }
    
    .providers__list {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0.8rem;
    }

    .providers__item {
        padding: 1.2rem;
        font-size: 1rem;
    }

    .support__title {
        font-size: 2rem;
    }

    .support__item {
        padding: 1.2rem;
        font-size: 1rem;
    }

    .faq__title {
        font-size: 2rem;
    }

    .faq__question {
        padding: 1.2rem;
        font-size: 1.1rem;
    }
    
    .faq__answer p {
        padding: 1.2rem;
        padding-top: 1.7rem;
        font-size: 1rem;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer__brand {
        text-align: center;
    }
    
    .footer__disclaimer {
        text-align: center;
    }

    .footer__payments-grid {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        gap: 1rem;
    }

    .footer__payment-icon {
        height: 30px;
        max-width: 60px;
    }
    
    /* Login page mobile styles */
    .login-hero__title {
        font-size: 2rem;
        text-align: center;
    }

    .login-hero__cta {
        text-align: center;
    }

    .login-hero__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .login-registration__title {
        font-size: 2rem;
    }
    
    .login-steps__title {
        font-size: 2rem;
    }
    
    .login-steps__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .login-steps__image {
        order: -1;
    }

    /* Bonus page mobile styles */
    .bonus-hero__content,
    .bonus-types__content,
    .bonus-welcome__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bonus-hero__title {
        font-size: 2rem;
    }
    
    .bonus-types__title,
    .bonus-welcome__title,
    .bonus-sports__title,
    .bonus-crypto__title {
        font-size: 1.8rem;
    }
    
    .bonus-hero__text p,
    .bonus-types__text p,
    .bonus-welcome__text p,
    .bonus-sports__intro,
    .bonus-crypto__text {
        font-size: 1rem;
    }
} 