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

:root {
    --header-bg: #172333;
    --primary-color: #ecfd00;
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --btn-primary: #ecfd00;
    --btn-secondary: transparent;
    --btn-border: #ecfd00;
    --btn-text: #172333;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #1a2332;
}

.header {
    background-color: var(--header-bg);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.header__logo img {
    display: block;
    height: 80px;
    width: auto;
    max-width: none;
}

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.header__nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header__nav-link:hover,
.header__nav-link:focus {
    color: var(--text-white);
}

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

.header__btn {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    border: 2px solid var(--btn-border);
}

.header__btn--primary {
    background-color: var(--btn-primary);
    color: var(--btn-text);
}

.header__btn--primary:hover,
.header__btn--primary:focus {
    background-color: #d4e600;
    transform: translateY(-2px);
}

.header__btn--secondary {
    background-color: var(--btn-secondary);
    color: var(--text-white);
}

.header__btn--secondary:hover,
.header__btn--secondary:focus {
    background-color: var(--btn-primary);
    color: var(--btn-text);
    transform: translateY(-2px);
}

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

.header__mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .header__nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--header-bg);
        padding: 1rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .header__nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header__nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 1.5rem;
    }

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

    .header__nav-link {
        display: block;
        padding: 1rem 0;
    }

    .header__cta {
        display: flex;
        gap: 0.75rem;
    }

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

    .header__mobile-toggle {
        display: flex;
    }

    .header__mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

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

    .header__mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

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

    .header__container {
        padding: 0 1rem;
    }
}

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

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    width: 100%;
}

.hero__content {
    max-width: 400px;
}

.hero__label {
    color: var(--btn-primary);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.hero__offer {
    color: var(--text-white);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero__btn {
    display: inline-block;
    background-color: var(--btn-primary);
    color: var(--btn-text);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

    .hero__content {
        text-align: center;
        max-width: 100%;
    }

    .hero__offer {
        font-size: 2.5rem;
    }
}

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

    .hero__container {
        padding: 2rem 1rem;
    }

    .hero__label {
        font-size: 0.875rem;
    }

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

    .hero__btn {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }
}

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

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

.sports__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.sports__title {
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

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

.sports__view-all {
    color: #8a9199;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sports__view-all:hover,
.sports__view-all:focus {
    color: var(--text-white);
}

.sports__arrow {
    background-color: transparent;
    border: 1px solid #3a4450;
    color: var(--text-white);
    width: 36px;
    height: 36px;
    border-radius: 4px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sports__arrow:hover,
.sports__arrow:focus {
    background-color: #2a3440;
    border-color: #4a5460;
}

.sports__slider-wrapper {
    overflow: hidden;
}

.sports__slider {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
}

.sports__card {
    background-color: #252d3a;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.sports__card:hover {
    transform: translateY(-4px);
}

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

@media (max-width: 1024px) {
    .sports__slider {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 768px) {
    .sports {
        padding: 2rem 0;
    }

    .sports__arrow {
        display: flex;
    }

    .sports__slider-wrapper {
        position: relative;
    }

    .sports__slider {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .sports__slider::-webkit-scrollbar {
        display: none;
    }

    .sports__card {
        flex: 0 0 calc(50% - 0.5rem);
        min-width: calc(50% - 0.5rem);
    }
}

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

    .sports__title {
        font-size: 1.25rem;
    }

    .sports__card {
        flex: 0 0 calc(60% - 0.5rem);
        min-width: calc(60% - 0.5rem);
    }
}

.slots {
    background-color: #1a2332;
    padding: 3rem 0;
}

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

.slots__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.slots__title {
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

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

.slots__view-all {
    color: #8a9199;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.slots__view-all:hover,
.slots__view-all:focus {
    color: var(--text-white);
}

.slots__arrow {
    background-color: transparent;
    border: 1px solid #3a4450;
    color: var(--text-white);
    width: 36px;
    height: 36px;
    border-radius: 4px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slots__arrow:hover,
.slots__arrow:focus {
    background-color: #2a3440;
    border-color: #4a5460;
}

.slots__slider-wrapper {
    overflow: hidden;
}

.slots__slider {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
}

.slots__card {
    background-color: #252d3a;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.slots__card:hover {
    transform: translateY(-4px);
}

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

@media (max-width: 1024px) {
    .slots__slider {
        grid-template-columns: repeat(5, 1fr);
    }
}

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

    .slots__arrow {
        display: flex;
    }

    .slots__slider-wrapper {
        position: relative;
    }

    .slots__slider {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .slots__slider::-webkit-scrollbar {
        display: none;
    }

    .slots__card {
        flex: 0 0 calc(50% - 0.5rem);
        min-width: calc(50% - 0.5rem);
    }
}

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

    .slots__title {
        font-size: 1.25rem;
    }

    .slots__card {
        flex: 0 0 calc(60% - 0.5rem);
        min-width: calc(60% - 0.5rem);
    }
}

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

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

.content__heading {
    color: var(--text-white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.content__subheading {
    color: var(--text-white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.content__tertiary {
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.content__text {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.content__text strong {
    color: var(--text-white);
    font-weight: 600;
}

.content__link {
    color: var(--btn-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.content__link:hover,
.content__link:focus {
    color: #d40237;
    text-decoration: underline;
}

.content__cta {
    display: inline-block;
    background-color: #d40237;
    color: var(--text-white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.content__cta:hover,
.content__cta:focus {
    background-color: #b8022e;
    transform: translateY(-2px);
}

.content__list {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.content__list li {
    margin-bottom: 1rem;
}

.content__list li:last-child {
    margin-bottom: 0;
}

.content__list strong {
    color: var(--text-white);
    font-weight: 600;
}

.content__image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    margin: 2rem auto;
    display: block;
}

.content__table {
    width: 100%;
    border-collapse: collapse;
    margin: 3rem 0;
    table-layout: auto;
}

.content__table thead tr {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

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

.content__table tbody tr:last-child {
    border-bottom: none;
}

.content__table th {
    color: var(--text-white);
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
    padding: 1rem 1rem 1rem 0;
    white-space: nowrap;
}

.content__table th:last-child {
    padding-right: 0;
}

.content__table td {
    padding: 1rem 1rem 1rem 0;
    vertical-align: top;
}

.content__table td:last-child {
    padding-right: 0;
}

.content__table-icon {
    font-size: 2rem;
    padding-right: 1rem;
    width: 3rem;
}

.content__table-label {
    color: var(--text-white);
    font-weight: 600;
    font-size: 1rem;
    padding-right: 1.5rem;
    white-space: nowrap;
}

.content__table-text {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
}

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

    .content__heading {
        font-size: 2rem;
    }

    .content__subheading {
        font-size: 1.75rem;
    }

    .content__tertiary {
        font-size: 1.375rem;
        margin-top: 2rem;
    }

    .content__image {
        margin: 1.5rem auto;
    }

    .content__table {
        margin: 2rem 0;
    }

    .content__table thead {
        display: none;
    }

    .content__table tbody {
        display: block;
    }

    .content__table tr {
        display: block;
        background-color: rgba(255, 255, 255, 0.03);
        border-radius: 8px;
        padding: 1.25rem;
        margin-bottom: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .content__table tr:last-child {
        margin-bottom: 0;
    }

    .content__table td {
        display: block;
        padding: 0.5rem 0;
        border: none;
    }

    .content__table td:first-child {
        font-size: 1.125rem;
        font-weight: 700;
        color: var(--btn-primary);
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .content__table td::before {
        content: attr(data-label);
        display: block;
        font-weight: 600;
        color: var(--text-white);
        margin-bottom: 0.25rem;
        font-size: 0.875rem;
    }

    .content__table td:first-child::before {
        display: none;
    }

    .content__table-label {
        white-space: normal;
    }

    .content__table-text {
        font-size: 0.9375rem;
        display: block;
    }

    .content__text {
        font-size: 1rem;
    }

    .content__list {
        font-size: 1rem;
        padding-left: 1.5rem;
    }

    .content__cta {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }
}

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

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

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

    .content__tertiary {
        font-size: 1.25rem;
        margin-top: 1.5rem;
    }

    .content__text {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .content__list {
        font-size: 0.9375rem;
        padding-left: 1.25rem;
    }

    .content__image {
        margin: 1rem auto;
        max-width: 100%;
    }

    .content__table tr {
        padding: 1rem;
    }

    .content__table td:first-child {
        font-size: 1rem;
    }

    .content__table td::before {
        font-size: 0.8125rem;
    }

    .content__table-icon {
        font-size: 1.5rem;
        width: 2.5rem;
        padding-right: 0.75rem;
    }

    .content__table-text {
        font-size: 0.875rem;
    }

    .content__cta {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
}

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

.content__column-text {
    display: flex;
    flex-direction: column;
}

.content__column-text .content__text {
    margin-bottom: 0;
}

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

.content__column-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .content__two-column {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.faq {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

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

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

.faq__question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-white);
    padding: 1.5rem 0;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.3s ease;
}

.faq__question:hover {
    color: var(--btn-primary);
}

.faq__icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.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 p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    padding-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .faq__question {
        font-size: 1rem;
        padding: 1.25rem 0;
    }

    .faq__answer p {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .faq__question {
        font-size: 0.9375rem;
        padding: 1rem 0;
    }

    .faq__icon {
        font-size: 1.25rem;
    }

    .faq__answer p {
        font-size: 0.875rem;
        padding-bottom: 1rem;
    }
}

.footer {
    background-color: #0f1a26;
    padding: 3rem 0 2rem;
    margin-top: 0;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

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

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

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

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

.footer__copyright {
    text-align: center;
}

.footer__copyright p {
    color: #8a9199;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1.5rem;
        margin-top: 0;
    }

    .footer__logo img {
        height: 80px;
    }

    .footer__payments {
        gap: 1rem;
    }

    .footer__payment-icon {
        height: 32px;
    }

    .footer__copyright p {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .footer__container {
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .footer__logo img {
        height: 70px;
    }

    .footer__payments {
        gap: 0.75rem;
    }

    .footer__payment-icon {
        height: 28px;
    }

    .footer__copyright p {
        font-size: 0.75rem;
    }
}
