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

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

main {
    min-height: 100vh;
}

.header {
    background-color: #172333;
    padding: 0.75rem 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header__container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

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

.header__logo img {
    height: 45px;
    width: auto;
}

.header__center {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

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

.header__nav-link {
    color: #8b9aa8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    white-space: nowrap;
}

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

.header__nav-separator {
    color: #8b9aa8;
    font-size: 0.9rem;
}

.header__search {
    display: flex;
    align-items: center;
    position: relative;
}

.header__search-icon {
    display: none;
    background: none;
    border: none;
    color: #8b9aa8;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
}

.header__search-icon:hover {
    color: #fff;
}

.header__search-form {
    display: flex;
    align-items: center;
    position: relative;
}

.header__search-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    color: #fff;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    font-size: 0.9rem;
    outline: none;
    width: 320px;
    transition: all 0.3s;
}

.header__search-input::placeholder {
    color: #8b9aa8;
}

.header__search-input:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.header__search-submit {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    color: #8b9aa8;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.header__search-submit:hover {
    color: #fff;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.header__btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    white-space: nowrap;
    border: 1px solid transparent;
}

.header__btn--login {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    background-color: transparent;
}

.header__btn--login:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.header__btn--register {
    background-color: #ecfd00;
    color: #000;
    font-weight: 700;
}

.header__btn--register:hover {
    background-color: #f5ff33;
}

.header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 50px;
    height: 50px;
    background-color: #ecfd00;
    border: none;
    cursor: pointer;
    padding: 0;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1001;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(236, 253, 0, 0.4);
    transition: all 0.3s;
}

.header__burger span {
    width: 24px;
    height: 2px;
    background-color: #000;
    transition: all 0.3s;
    border-radius: 2px;
    margin: 0 auto;
}

.header__burger:hover {
    background-color: #f5ff33;
    box-shadow: 0 6px 20px rgba(236, 253, 0, 0.6);
    transform: scale(1.05);
}

.header__burger.active {
    background-color: #ff5252;
}

.header__burger.active:hover {
    background-color: #ff6b6b;
}

.header__burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.header__burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.header__nav-mobile {
    position: fixed;
    bottom: 5.5rem;
    right: 1.5rem;
    background-color: #1e2a3a;
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 1000;
    min-width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header__nav-mobile.active {
    display: flex;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header__nav-mobile .header__nav-link {
    display: block;
    padding: 0.875rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s;
    text-align: center;
    font-weight: 500;
}

.header__nav-mobile .header__nav-link:hover {
    background-color: rgba(236, 253, 0, 0.15);
    color: #ecfd00;
}

@media (min-width: 769px) {
    .header__center .header__nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .header__container {
        gap: 1rem;
    }

    .header__center {
        flex: 0;
    }

    .header__nav {
        display: none;
    }

    .header__search {
        position: static;
    }

    .header__search-form {
        display: none;
    }

    .header__search-icon {
        display: flex;
    }

    .header__search-form.active {
        display: flex;
        position: fixed;
        top: 4.5rem;
        left: 1rem;
        right: 1rem;
        background-color: #1e2a3a;
        padding: 0.75rem;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .header__search-input {
        width: 100%;
        flex: 1;
    }

    .header__btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .header__burger {
        width: 48px;
        height: 48px;
        bottom: 1rem;
        right: 1rem;
    }

    .header__nav-mobile {
        bottom: 5rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .header__logo img {
        height: 28px;
    }

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

    .header__burger {
        width: 45px;
        height: 45px;
    }

    .header__burger span {
        width: 20px;
    }
}

.hero {
    background-image: url('/images/rabona-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.5) 0%, rgba(183, 28, 28, 0.45) 100%);
}

.hero__container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem 2rem;
    max-width: 600px;
}

.hero__title {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero__offer {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero__cta {
    display: inline-block;
    background-color: #ecfd00;
    color: #000;
    font-size: 1.25rem;
    font-weight: 900;
    text-decoration: none;
    padding: 1.25rem 3.5rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

@media (max-width: 768px) {
    .hero {
        background-image: url('/images/rabona-bg-m.webp');
        min-height: 450px;
    }

    .hero__container {
        padding: 1.5rem 1.5rem;
    }

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

    .hero__offer {
        font-size: 2.75rem;
        margin-bottom: 1.75rem;
    }

    .hero__cta {
        font-size: 1rem;
        padding: 1rem 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 400px;
    }

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

    .hero__offer {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }

    .hero__cta {
        font-size: 0.95rem;
        padding: 0.9rem 2.25rem;
    }
}

.sports {
    width: 100%;
    background-color: #0f1923;
}

.sports__container {
    width: 100%;
    max-width: 100%;
}

.sports__image {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: opacity 0.3s;
}

.sports__image:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .sports__container {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #ecfd00 #172333;
    }

    .sports__container::-webkit-scrollbar {
        height: 8px;
    }

    .sports__container::-webkit-scrollbar-track {
        background: #172333;
    }

    .sports__container::-webkit-scrollbar-thumb {
        background: #ecfd00;
        border-radius: 4px;
    }

    .sports__container::-webkit-scrollbar-thumb:hover {
        background: #f5ff33;
    }

    .sports__image {
        width: auto;
        max-width: none;
        height: 450px;
    }
}

.content {
    width: 100%;
    background-color: #0f1923;
    padding: 4rem 2rem;
}

.content__container {
    max-width: 1200px;
    margin: 0 auto;
}

.content__heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.content__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c5d0db;
    margin-bottom: 1.25rem;
}

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

.info-table {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    border-collapse: collapse;
    background-color: #1e2a3a;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.info-table__cell {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: #c5d0db;
}

.info-table__cell:first-child {
    font-weight: 600;
    color: #fff;
    width: 50%;
}

.info-table__cell:last-child {
    width: 50%;
}

@media (max-width: 768px) {
    .content {
        padding: 3rem 1.5rem;
    }

    .content__heading {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .content__text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .info-table {
        margin: 1.5rem auto;
    }

    .info-table__cell {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 2.5rem 1.25rem;
    }

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

    .content__text {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .info-table {
        margin: 1.25rem 0;
    }

    .info-table__cell {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
    }
}

.registration {
    width: 100%;
    background-color: #172333;
    padding: 4rem 2rem;
}

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

.registration__heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.registration__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c5d0db;
    margin-bottom: 1.25rem;
}

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

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

.registration__steps {
    order: 1;
}

.registration__image {
    order: 2;
}

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

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.steps-list__item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #c5d0db;
    counter-increment: step-counter;
}

.steps-list__item:last-child {
    margin-bottom: 0;
}

.steps-list__item::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background-color: #ecfd00;
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.registration__cta {
    display: inline-block;
    background-color: #ecfd00;
    color: #000;
    font-size: 1.1rem;
    font-weight: 900;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-top: 2rem;
}

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

@media (max-width: 968px) {
    .registration__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .registration__steps {
        order: 2;
    }

    .registration__image {
        order: 1;
    }
}

@media (max-width: 768px) {
    .registration {
        padding: 3rem 1.5rem;
    }

    .registration__heading {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .registration__text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .registration__content {
        margin: 2rem 0;
    }

    .steps-list__item {
        font-size: 1rem;
        padding-left: 2.75rem;
        margin-bottom: 1.25rem;
    }

    .steps-list__item::before {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.9rem;
    }

    .registration__cta {
        font-size: 1rem;
        padding: 0.9rem 2rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .registration {
        padding: 2.5rem 1.25rem;
    }

    .registration__heading {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .registration__text {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .registration__content {
        margin: 1.5rem 0;
        gap: 1.5rem;
    }

    .steps-list__item {
        font-size: 0.95rem;
        padding-left: 2.5rem;
        margin-bottom: 1rem;
    }

    .steps-list__item::before {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.85rem;
    }

    .registration__cta {
        font-size: 0.95rem;
        padding: 0.85rem 1.75rem;
        margin-top: 1.25rem;
    }
}

.payment {
    width: 100%;
    background-color: #0f1923;
    padding: 4rem 2rem;
}

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

.payment__heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.payment__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c5d0db;
    margin-bottom: 1.25rem;
}

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

.payment__image {
    width: 70%;
    height: auto;
    margin: 2.5rem auto;
    border-radius: 8px;
    display: block;
}

.payment-table {
    width: 100%;
    margin: 2.5rem 0;
    border-collapse: collapse;
    background-color: #1e2a3a;
    border-radius: 8px;
    overflow: hidden;
}

.payment-table__header {
    background-color: #172333;
}

.payment-table__header .payment-table__cell {
    padding: 1.25rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: #ecfd00;
    text-align: center;
    border-bottom: 2px solid rgba(236, 253, 0, 0.3);
}

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

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

.payment-table__cell {
    padding: 1rem;
    font-size: 0.95rem;
    color: #c5d0db;
    text-align: center;
    vertical-align: middle;
}

.payment-table__row .payment-table__cell:first-child {
    text-align: left;
}

.payment-table__cell--label {
    font-weight: 600;
    color: #fff;
}

@media (max-width: 968px) {
    .payment-table {
        font-size: 0.9rem;
    }

    .payment-table__header .payment-table__cell {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }

    .payment-table__cell {
        padding: 0.875rem 0.75rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .payment {
        padding: 3rem 1.5rem;
    }

    .payment__heading {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .payment__text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .payment__image {
        width: 80%;
        margin: 2rem auto;
    }

    .payment-table {
        margin: 2rem 0;
        display: block;
        overflow-x: auto;
    }

    .payment-table__header .payment-table__cell {
        padding: 1rem 0.5rem;
        font-size: 0.85rem;
    }

    .payment-table__cell {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .payment {
        padding: 2.5rem 1.25rem;
    }

    .payment__heading {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .payment__text {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .payment__image {
        width: 100%;
        margin: 1.5rem auto;
    }

    .payment-table {
        margin: 1.5rem 0;
    }

    .payment-table__header .payment-table__cell {
        padding: 0.875rem 0.375rem;
        font-size: 0.75rem;
    }

    .payment-table__cell {
        padding: 0.625rem 0.375rem;
        font-size: 0.75rem;
    }
}

.payment__subsections {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.payment__subsection {
    background-color: #172333;
    padding: 2rem;
    border-radius: 8px;
}

.payment__subheading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.payment__list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.payment__list-item {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #c5d0db;
}

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

.payment__list-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ecfd00;
    font-weight: 700;
    font-size: 1.1rem;
}

@media (max-width: 968px) {
    .payment__subsections {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .payment__subsection {
        padding: 1.75rem;
    }

    .payment__subheading {
        font-size: 1.35rem;
    }

    .payment__list-item {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .payment__subsections {
        margin-top: 2.5rem;
        gap: 1.75rem;
    }

    .payment__subsection {
        padding: 1.5rem;
    }

    .payment__subheading {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .payment__list {
        margin: 1.25rem 0;
    }

    .payment__list-item {
        font-size: 0.9rem;
        padding-left: 1.5rem;
        margin-bottom: 0.875rem;
    }

    .payment__list-item::before {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .payment__subsections {
        margin-top: 2rem;
        gap: 1.5rem;
    }

    .payment__subsection {
        padding: 1.25rem;
    }

    .payment__subheading {
        font-size: 1.15rem;
    }

    .payment__list {
        margin: 1rem 0;
    }

    .payment__list-item {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
}

.games {
    width: 100%;
    background-color: #172333;
    padding: 4rem 2rem;
}

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

.games__heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.games__heading--spacing {
    margin-top: 3rem;
}

.games__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c5d0db;
    margin-bottom: 1.25rem;
}

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

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

.games__text-col {
    order: 1;
}

.games__image-col {
    order: 2;
}

.games__image {
    width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    display: block;
}

@media (max-width: 968px) {
    .games__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .games__text-col {
        order: 1;
    }

    .games__image-col {
        order: 2;
    }

    .games__heading--spacing {
        margin-top: 2.5rem;
    }
}

@media (max-width: 768px) {
    .games {
        padding: 3rem 1.5rem;
    }

    .games__heading {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .games__heading--spacing {
        margin-top: 2rem;
    }

    .games__text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .games__content {
        margin-bottom: 1.5rem;
    }

    .games__image {
        width: 70%;
    }
}

@media (max-width: 480px) {
    .games {
        padding: 2.5rem 1.25rem;
    }

    .games__heading {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .games__heading--spacing {
        margin-top: 1.75rem;
    }

    .games__text {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .games__content {
        gap: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .games__image {
        width: 60%;
    }
}

.slots {
    width: 100%;
    background-color: #0f1923;
    padding: 4rem 2rem;
}

.slots__container {
    max-width: 1200px;
    margin: 0 auto;
}

.slots__heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.slots__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c5d0db;
    margin-bottom: 1.25rem;
}

.slots__providers {
    margin-top: 2.5rem;
}

.slots__subheading {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.provider {
    background-color: #172333;
    padding: 1.75rem;
    border-radius: 8px;
    border-left: 4px solid #ecfd00;
}

.provider__name {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

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

.provider__games li {
    color: #c5d0db;
    font-size: 0.95rem;
    position: relative;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    padding-left: 0;
    margin-left: 1.25rem;
}

.provider__games li::before {
    content: '▸';
    position: absolute;
    left: -1.25rem;
    top: 0.5rem;
    color: #ecfd00;
    font-weight: 700;
}

@media (max-width: 968px) {
    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .slots {
        padding: 3rem 1.5rem;
    }

    .slots__heading {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .slots__text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .slots__subheading {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .slots__providers {
        margin-top: 2rem;
    }

    .providers-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .provider {
        padding: 1.5rem;
    }

    .provider__name {
        font-size: 1.1rem;
    }

    .provider__games li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .slots {
        padding: 2.5rem 1.25rem;
    }

    .slots__heading {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .slots__text {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .slots__subheading {
        font-size: 1.15rem;
        margin-bottom: 1.25rem;
    }

    .slots__providers {
        margin-top: 1.75rem;
    }

    .provider {
        padding: 1.25rem;
    }

    .provider__name {
        font-size: 1rem;
        margin-bottom: 0.875rem;
    }

    .provider__games li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
}

.bonuses {
    width: 100%;
    background-color: #172333;
    padding: 4rem 2rem;
}

.bonuses__container {
    max-width: 1200px;
    margin: 0 auto;
}

.bonuses__heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.bonuses__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c5d0db;
    margin-bottom: 1.25rem;
}

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

.bonuses__image {
    width: 70%;
    height: auto;
    margin: 2.5rem auto;
    border-radius: 8px;
    display: block;
}

.bonuses__subheading {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ecfd00;
    margin: 2.5rem 0 1.5rem;
    text-align: center;
    line-height: 1.3;
}

.bonuses-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    background-color: #1e2a3a;
    border-radius: 8px;
    overflow: hidden;
}

.bonuses-table__header {
    background-color: #0f1923;
}

.bonuses-table__header .bonuses-table__cell {
    padding: 1.25rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: #ecfd00;
    text-align: left;
    border-bottom: 2px solid rgba(236, 253, 0, 0.3);
}

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

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

.bonuses-table__row:hover {
    background-color: rgba(236, 253, 0, 0.05);
}

.bonuses-table__cell {
    padding: 1rem;
    font-size: 0.95rem;
    color: #c5d0db;
    text-align: left;
    vertical-align: middle;
}

.bonuses-table__cell--highlight {
    font-weight: 600;
    color: #fff;
}

@media (max-width: 968px) {
    .bonuses-table {
        font-size: 0.9rem;
    }

    .bonuses-table__header .bonuses-table__cell {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }

    .bonuses-table__cell {
        padding: 0.875rem 0.75rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .bonuses {
        padding: 3rem 1.5rem;
    }

    .bonuses__heading {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .bonuses__text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .bonuses__image {
        width: 80%;
        margin: 2rem auto;
    }

    .bonuses__subheading {
        font-size: 1.25rem;
        margin: 2rem 0 1.25rem;
    }

    .bonuses-table {
        margin: 1.5rem 0;
        display: block;
        overflow-x: auto;
    }

    .bonuses-table__header .bonuses-table__cell {
        padding: 1rem 0.5rem;
        font-size: 0.85rem;
    }

    .bonuses-table__cell {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .bonuses {
        padding: 2.5rem 1.25rem;
    }

    .bonuses__heading {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .bonuses__text {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .bonuses__image {
        width: 100%;
        margin: 1.5rem auto;
    }

    .bonuses__subheading {
        font-size: 1.15rem;
        margin: 1.75rem 0 1rem;
    }

    .bonuses-table {
        margin: 1.25rem 0;
    }

    .bonuses-table__header .bonuses-table__cell {
        padding: 0.875rem 0.375rem;
        font-size: 0.75rem;
    }

    .bonuses-table__cell {
        padding: 0.625rem 0.375rem;
        font-size: 0.75rem;
    }
}

.footer {
    width: 100%;
    background-color: #0d1419;
    border-top: 2px solid #ecfd00;
    padding: 3rem 2rem 2rem;
}

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

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

.footer__logo {
    display: flex;
    flex-shrink: 0;
}

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

.footer__info {
    flex: 1;
}

.footer__text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #8b9aa8;
    margin-bottom: 1rem;
}

.footer__text--highlight {
    color: #c5d0db;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.footer__disclaimers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer__disclaimer {
    background-color: #172333;
    padding: 1.25rem;
    border-radius: 6px;
    border-left: 3px solid #ecfd00;
}

.footer__icon {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 0.5rem;
}

.footer__disclaimer .footer__text {
    font-size: 0.875rem;
    margin-bottom: 0;
}

.footer__copyright {
    font-size: 0.875rem;
    color: #6b7a8a;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
}

@media (max-width: 968px) {
    .footer__disclaimers {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .footer__content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    .footer__logo img {
        height: 40px;
    }

    .footer__text {
        font-size: 0.9rem;
    }

    .footer__text--highlight {
        margin-bottom: 1.25rem;
    }

    .footer__disclaimers {
        margin-bottom: 1.25rem;
    }

    .footer__disclaimer {
        padding: 1rem;
        text-align: left;
    }

    .footer__icon {
        font-size: 1.25rem;
    }

    .footer__disclaimer .footer__text {
        font-size: 0.85rem;
    }

    .footer__copyright {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 1.25rem 1.25rem;
    }

    .footer__content {
        gap: 1.5rem;
    }

    .footer__logo img {
        height: 35px;
    }

    .footer__text {
        font-size: 0.85rem;
    }

    .footer__text--highlight {
        margin-bottom: 1rem;
    }

    .footer__disclaimers {
        gap: 0.875rem;
        margin-bottom: 1rem;
    }

    .footer__disclaimer {
        padding: 0.875rem;
    }

    .footer__icon {
        font-size: 1.15rem;
        margin-bottom: 0.375rem;
    }

    .footer__disclaimer .footer__text {
        font-size: 0.8rem;
    }

    .footer__copyright {
        font-size: 0.75rem;
        padding-top: 0.875rem;
    }
}

.app-hero {
    width: 100%;
    background-color: #0f1923;
    padding: 4rem 2rem 3rem;
}

.app-hero__container {
    max-width: 1200px;
    margin: 0 auto;
}

.app-hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.3;
    text-align: center;
}

.app-hero__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: center;
}

.app-hero__text-col {
    order: 1;
}

.app-hero__image-col {
    order: 2;
}

.app-hero__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c5d0db;
    margin-bottom: 1.25rem;
}

.app-hero__text:last-child {
    margin-bottom: 0;
}

.app-hero__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.app-content {
    width: 100%;
    background-color: #172333;
    padding: 4rem 2rem;
}

.app-content__container {
    max-width: 1200px;
    margin: 0 auto;
}

.app-content__heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.app-content__subheading {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ecfd00;
    margin: 2.5rem 0 1.25rem;
    line-height: 1.3;
}

.app-content__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c5d0db;
    margin-bottom: 1.25rem;
}

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

.app-content__text-col {
    order: 1;
}

.app-content__image-col {
    order: 2;
}

.app-content__image {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 968px) {
    .app-hero__layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .app-hero__text-col {
        order: 2;
    }

    .app-hero__image-col {
        order: 1;
    }

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

    .app-content__text-col {
        order: 2;
    }

    .app-content__image-col {
        order: 1;
    }
}

@media (max-width: 768px) {
    .app-hero {
        padding: 3rem 1.5rem 2rem;
    }

    .app-hero__title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .app-hero__layout {
        margin-top: 1.5rem;
    }

    .app-hero__text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .app-content {
        padding: 3rem 1.5rem;
    }

    .app-content__heading {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .app-content__subheading {
        font-size: 1.25rem;
        margin: 2rem 0 1rem;
    }

    .app-content__text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .app-content__layout {
        margin: 1.5rem 0;
    }

    .app-content__image {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .app-hero {
        padding: 2.5rem 1.25rem 1.5rem;
    }

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

    .app-hero__layout {
        margin-top: 1.25rem;
        gap: 1.5rem;
    }

    .app-hero__text {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .app-content {
        padding: 2.5rem 1.25rem;
    }

    .app-content__heading {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .app-content__subheading {
        font-size: 1.15rem;
        margin: 1.75rem 0 0.875rem;
    }

    .app-content__text {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .app-content__layout {
        margin: 1.25rem 0;
        gap: 1.5rem;
    }

    .app-content__image {
        width: 100%;
    }
}

.int-link {
    color: #ecfd00;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    border-bottom: 1px solid transparent;
}

.int-link:hover {
    color: #f5ff33;
    border-bottom-color: #ecfd00;
}

.app-cta {
    display: inline-block;
    background-color: #ecfd00;
    color: #000;
    font-size: 1rem;
    font-weight: 900;
    text-decoration: none;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin: 1.5rem 0;
}

.app-cta:hover {
    background-color: #f5ff33;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.app-cta--center {
    display: block;
    text-align: center;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .app-cta {
        font-size: 0.95rem;
        padding: 0.85rem 1.75rem;
    }
}

@media (max-width: 480px) {
    .app-cta {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
        margin: 1.25rem 0;
    }
}

.promo-hero {
    width: 100%;
    background-color: #0f1923;
    padding: 4rem 2rem 3rem;
}

.promo-hero__container {
    max-width: 1200px;
    margin: 0 auto;
}

.promo-hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-align: center;
}

.promo-hero__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c5d0db;
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.promo-hero__image {
    width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.promo-content {
    width: 100%;
    background-color: #172333;
    padding: 4rem 2rem;
}

.promo-content__container {
    max-width: 1200px;
    margin: 0 auto;
}

.promo-content__heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.promo-content__subheading {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ecfd00;
    margin: 2.5rem 0 1.25rem;
    line-height: 1.3;
}

.promo-content__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c5d0db;
    margin-bottom: 1.25rem;
}

.promo-content__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
    align-items: center;
}

.promo-content__text-col {
    order: 1;
}

.promo-content__image-col {
    order: 2;
}

.promo-content__image {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.promo-faq {
    width: 100%;
    background-color: #0f1923;
    padding: 4rem 2rem;
}

.promo-faq__container {
    max-width: 1200px;
    margin: 0 auto;
}

.promo-faq__heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.3;
    text-align: center;
}

.faq-item {
    background-color: #172333;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #ecfd00;
}

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

.faq-item__question {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ecfd00;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-item__answer {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #c5d0db;
    margin-bottom: 0;
}

@media (max-width: 968px) {
    .promo-content__layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .promo-content__text-col {
        order: 2;
    }

    .promo-content__image-col {
        order: 1;
    }
}

@media (max-width: 768px) {
    .promo-hero {
        padding: 3rem 1.5rem 2rem;
    }

    .promo-hero__title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .promo-hero__text {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    .promo-hero__image {
        width: 80%;
    }

    .promo-content {
        padding: 3rem 1.5rem;
    }

    .promo-content__heading {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .promo-content__subheading {
        font-size: 1.25rem;
        margin: 2rem 0 1rem;
    }

    .promo-content__text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .promo-content__layout {
        margin: 1.5rem 0;
    }

    .promo-content__image {
        width: 80%;
    }

    .promo-faq {
        padding: 3rem 1.5rem;
    }

    .promo-faq__heading {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .faq-item {
        padding: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .faq-item__question {
        font-size: 1.15rem;
    }

    .faq-item__answer {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .promo-hero {
        padding: 2.5rem 1.25rem 1.5rem;
    }

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

    .promo-hero__text {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 1.5rem;
    }

    .promo-hero__image {
        width: 100%;
    }

    .promo-content {
        padding: 2.5rem 1.25rem;
    }

    .promo-content__heading {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .promo-content__subheading {
        font-size: 1.15rem;
        margin: 1.75rem 0 0.875rem;
    }

    .promo-content__text {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .promo-content__layout {
        margin: 1.25rem 0;
        gap: 1.5rem;
    }

    .promo-content__image {
        width: 100%;
    }

    .promo-faq {
        padding: 2.5rem 1.25rem;
    }

    .promo-faq__heading {
        font-size: 1.35rem;
        margin-bottom: 1.25rem;
    }

    .faq-item {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }

    .faq-item__question {
        font-size: 1.05rem;
    }

    .faq-item__answer {
        font-size: 0.9rem;
    }
}

