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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.header {
    background-color: #f4f6ff;
    padding: 1rem 1.25rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header__container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

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

.header__search-icon {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #2977d7;
    margin-left: auto;
}

.header__search {
    flex: 1;
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(to right, #cde5fd, #f9fcff);
    padding: 0.75rem 1.5rem;
    margin: 0 auto;
}

.header__search-svg {
    color: #6b7280;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}

.header__search-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 1rem;
    color: #1f2937;
}

.header__search-input::placeholder {
    color: #6b7280;
}

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

.header__btn {
    padding: 0.75rem 1.75rem;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.header__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header__btn:active {
    transform: translateY(0);
}

.header__btn--secondary {
    background: linear-gradient(to bottom, #e5eefa, #fefefe);
    color: #1f2937;
    border: 1px solid #97b1c8;
}

.header__btn--primary {
    background: linear-gradient(to bottom, #2977d7, #2c9ff0);
    color: #ffffff;
    border: 1px solid #1a52d1;
}

@media (max-width: 768px) {
    .header {
        padding: 0.875rem 1rem;
    }

    .header__container {
        gap: 1rem;
    }

    .header__search {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        max-width: none;
        padding: 1.125rem 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.3s, opacity 0.3s;
        z-index: 1001;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .header__search--active {
        transform: translateY(0);
        opacity: 1;
    }

    .header__search-icon {
        display: block;
    }

    .header__nav {
        gap: 0.5rem;
    }

    .header__btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }

    .header__logo img {
        height: 36px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.75rem 0.875rem;
    }

    .header__logo img {
        height: 32px;
    }

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

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

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

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 550px;
}

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

.hero__description {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    margin: 0 0 0.75rem 0;
}

.hero__cta {
    margin-top: 1.5rem;
    padding: 0.875rem 2.5rem;
    background: linear-gradient(to bottom, #f82080, #faa2b4);
    color: #ffffff;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: pulse 3.2s ease-in-out infinite;
}

.hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(248, 32, 128, 0.4);
    animation: none;
}

.hero__cta:active {
    transform: translateY(0);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(248, 32, 128, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(248, 32, 128, 0);
    }
}

@media (max-width: 768px) {
    .hero {
        background-image: url('images/onlyspins-hero-m.webp');
        min-height: 400px;
        position: relative;
        height: 60vh;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
    }

    .hero__container {
        padding: 2.5rem 1rem;
        position: relative;
        z-index: 1;
        display: flex;
        justify-content: center;
    }

    .hero__content {
        max-width: 450px;
        align-items: center;
        text-align: center;
    }

    .hero__title {
        font-size: 2.25rem;
    }

    .hero__description {
        font-size: 1rem;
    }

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

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

    .hero::before {
        background: rgba(0, 0, 0, 0.35);
    }

    .hero__container {
        padding: 2rem 0.875rem;
    }

    .hero__content {
        max-width: 320px;
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .hero__description {
        font-size: 0.9375rem;
    }

    .hero__cta {
        padding: 0.875rem 2.25rem;
        font-size: 1.0625rem;
    }
}

.categories {
    padding: 2rem 0;
    background: #ffffff;
}

.categories__container {
    width: 100%;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.categories__arrow {
    display: none;
}

.categories__slider {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #d1d5db #f9fafb;
    cursor: grab;
    max-width: 100%;
}

.categories__slider:active {
    cursor: grabbing;
}

.categories__slider::-webkit-scrollbar {
    height: 6px;
}

.categories__slider::-webkit-scrollbar-track {
    background: #f9fafb;
}

.categories__slider::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.categories__slider::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

.categories__track {
    display: inline-flex;
    gap: 1rem;
}

.categories__item {
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.625rem;
    background: linear-gradient(to bottom, #e1f0fc, #fcfefe);
    border: 1px solid #d1e7f8;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.categories__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.categories__item:active {
    transform: translateY(0);
}

.categories__icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.categories__text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1f2937;
    white-space: nowrap;
}

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

    .categories__container {
        padding: 0 1rem;
    }

    .categories__slider {
        scrollbar-width: none;
    }

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

    .categories__track {
        gap: 0.75rem;
    }

    .categories__item {
        padding: 0.5rem 0.875rem;
        gap: 0.5rem;
    }

    .categories__icon {
        width: 28px;
        height: 28px;
    }

    .categories__text {
        font-size: 0.8125rem;
    }
}

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

    .categories__container {
        padding: 0 0.875rem;
    }

    .categories__item {
        padding: 0.375rem 0.75rem;
        gap: 0.375rem;
    }

    .categories__icon {
        width: 24px;
        height: 24px;
    }

    .categories__text {
        font-size: 0.75rem;
    }
}

.slots {
    padding: 2rem 0;
    background: #ffffff;
}

.slots__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

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

.slots__title {
    background: #f4d03f;
    color: #1f2937;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    margin: 0;
}

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

.slots__view-all {
    color: #2977d7;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    white-space: nowrap;
}

.slots__view-all:hover {
    text-decoration: underline;
}

.slots__arrows {
    display: none;
    gap: 0.5rem;
}

.slots__arrow {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
    color: #6b7280;
}

.slots__arrow:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
}

.slots__arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slots__slider {
    overflow: hidden;
}

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

.slots__item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.slots__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.slots__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.slots__badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: #22c55e;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    z-index: 1;
}

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

    .slots__container {
        padding: 0 1rem;
    }

    .slots__title {
        font-size: 1rem;
        padding: 0.375rem 0.875rem;
    }

    .slots__arrows {
        display: flex;
    }

    .slots__slider {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

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

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

    .slots__item {
        flex-shrink: 0;
        width: 200px;
    }

    .slots__view-all {
        font-size: 0.875rem;
    }
}

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

    .slots__container {
        padding: 0 0.875rem;
    }

    .slots__header {
        margin-bottom: 1rem;
    }

    .slots__title {
        font-size: 0.9375rem;
        padding: 0.25rem 0.75rem;
    }

    .slots__item {
        width: 180px;
    }

    .slots__view-all {
        font-size: 0.8125rem;
    }

    .slots__arrow {
        width: 32px;
        height: 32px;
    }

    .slots__badge {
        font-size: 0.6875rem;
        padding: 0.1875rem 0.5rem;
    }
}

.content {
    padding: 3rem 0;
    background: #f9fafb;
}

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

.content__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.content__intro {
    margin-bottom: 2.5rem;
}

.content__intro p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1rem;
}

.content__cta {
    margin-top: 1.5rem;
    padding: 0.875rem 2.5rem;
    background: linear-gradient(to bottom, #f82080, #faa2b4);
    color: #ffffff;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.content__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(248, 32, 128, 0.4);
}

.content__cta:active {
    transform: translateY(0);
}

.content__table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-collapse: collapse;
    border: 1px solid #e1f0fc;
}

.content__row {
    border-bottom: 1px solid #e1f0fc;
    transition: background-color 0.2s;
}

.content__row:hover {
    background-color: #f0f9ff;
}

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

.content__cell {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.content__cell--label {
    background: linear-gradient(to right, #e1f0fc, #f0f9ff);
    color: #1f2937;
    font-weight: 600;
    width: 35%;
}

.content__cell--value {
    background: #ffffff;
    color: #4b5563;
}

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

    .content__container {
        padding: 0 1rem;
    }

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

    .content__intro {
        margin-bottom: 2rem;
    }

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

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

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

    .content__cell--label {
        width: 40%;
        font-size: 0.8125rem;
    }
}

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

    .content__container {
        padding: 0 0.875rem;
    }

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

    .content__intro {
        margin-bottom: 1.5rem;
    }

    .content__intro p {
        font-size: 0.875rem;
    }

    .content__cta {
        padding: 0.625rem 1.75rem;
        font-size: 0.9375rem;
    }

    .content__cell {
        padding: 0.75rem 0.875rem;
        font-size: 0.8125rem;
    }

    .content__cell--label {
        width: 45%;
        font-size: 0.75rem;
    }
}

.games {
    padding: 3rem 0;
    background: #ffffff;
}

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

.games__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.games__intro {
    margin-bottom: 2.5rem;
}

.games__intro p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

.games__content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.games__section {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e1f0fc;
}

.games__subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.25rem;
}

.games__text-with-image {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: start;
}

.games__text p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1rem;
}

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

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

.games__section p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1rem;
}

.games__section p:last-child {
    margin-bottom: 0;
}

.games__section ul {
    margin: 1rem 0 1rem 1.5rem;
    padding: 0;
}

.games__section li {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

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

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

.games__cta {
    padding: 0.875rem 2.5rem;
    background: linear-gradient(to bottom, #f82080, #faa2b4);
    color: #ffffff;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.games__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(248, 32, 128, 0.4);
}

.games__cta:active {
    transform: translateY(0);
}

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

    .games__container {
        padding: 0 1rem;
    }

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

    .games__intro {
        margin-bottom: 2rem;
    }

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

    .games__content {
        gap: 2rem;
    }

    .games__section {
        padding: 1.5rem;
    }

    .games__subtitle {
        font-size: 1.25rem;
    }

    .games__text-with-image {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .games__section p {
        font-size: 0.875rem;
    }

    .games__section li {
        font-size: 0.875rem;
    }

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

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

    .games__container {
        padding: 0 0.875rem;
    }

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

    .games__intro {
        margin-bottom: 1.5rem;
    }

    .games__intro p {
        font-size: 0.875rem;
    }

    .games__content {
        gap: 1.5rem;
    }

    .games__section {
        padding: 1.25rem;
    }

    .games__subtitle {
        font-size: 1.125rem;
    }

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

    .games__section li {
        font-size: 0.8125rem;
    }

    .games__cta {
        padding: 0.625rem 1.75rem;
        font-size: 0.9375rem;
    }
}

.bonuses {
    padding: 3rem 0;
    background: #f9fafb;
}

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

.bonuses__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.bonuses__intro {
    margin-bottom: 2.5rem;
}

.bonuses__intro p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

.bonuses__content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.bonuses__section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e1f0fc;
}

.bonuses__subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.25rem;
}

.bonuses__text-with-image {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: start;
}

.bonuses__text p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1rem;
}

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

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

.bonuses__section p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1rem;
}

.bonuses__section p:last-child {
    margin-bottom: 0;
}

.bonuses__table-wrapper {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e1f0fc;
}

.bonuses__table-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.bonuses__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.bonuses__table thead {
    background: linear-gradient(to right, #e1f0fc, #f0f9ff);
}

.bonuses__table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #1f2937;
    border-bottom: 2px solid #e1f0fc;
}

.bonuses__table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
}

.bonuses__table tbody tr:hover {
    background-color: #f0f9ff;
}

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

.bonuses__cta-wrapper {
    text-align: center;
    margin-top: 2.5rem;
}

.bonuses__cta {
    padding: 0.875rem 2.5rem;
    background: linear-gradient(to bottom, #f82080, #faa2b4);
    color: #ffffff;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.bonuses__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(248, 32, 128, 0.4);
}

.bonuses__cta:active {
    transform: translateY(0);
}

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

    .bonuses__container {
        padding: 0 1rem;
    }

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

    .bonuses__intro {
        margin-bottom: 2rem;
    }

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

    .bonuses__content {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .bonuses__section {
        padding: 1.5rem;
    }

    .bonuses__subtitle {
        font-size: 1.25rem;
    }

    .bonuses__text-with-image {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .bonuses__section p {
        font-size: 0.875rem;
    }

    .bonuses__table-wrapper {
        padding: 1.5rem;
        overflow-x: auto;
    }

    .bonuses__table-title {
        font-size: 1.25rem;
    }

    .bonuses__table {
        font-size: 0.8125rem;
    }

    .bonuses__table th,
    .bonuses__table td {
        padding: 0.75rem 0.5rem;
    }

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

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

    .bonuses__container {
        padding: 0 0.875rem;
    }

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

    .bonuses__intro {
        margin-bottom: 1.5rem;
    }

    .bonuses__intro p {
        font-size: 0.875rem;
    }

    .bonuses__content {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .bonuses__section {
        padding: 1.25rem;
    }

    .bonuses__subtitle {
        font-size: 1.125rem;
    }

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

    .bonuses__table-wrapper {
        padding: 1.25rem;
    }

    .bonuses__table-title {
        font-size: 1.125rem;
    }

    .bonuses__table {
        font-size: 0.75rem;
        display: block;
        overflow-x: auto;
    }

    .bonuses__table th,
    .bonuses__table td {
        padding: 0.625rem 0.375rem;
        white-space: nowrap;
    }

    .bonuses__cta {
        padding: 0.625rem 1.75rem;
        font-size: 0.9375rem;
    }
}

.mobile {
    padding: 3rem 0;
    background: #ffffff;
}

.mobile__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.mobile__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.mobile__content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
    align-items: center;
}

.mobile__text p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1rem;
}

.mobile__text p:last-child {
    margin-bottom: 0;
}

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

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

    .mobile__container {
        padding: 0 1rem;
    }

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

    .mobile__content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mobile__image {
        max-width: 300px;
        margin: 0 auto;
    }

    .mobile__text p {
        font-size: 0.875rem;
    }
}

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

    .mobile__container {
        padding: 0 0.875rem;
    }

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

    .mobile__image {
        max-width: 250px;
    }

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

.sports {
    padding: 3rem 0;
    background: #f9fafb;
}

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

.sports__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.sports__intro {
    margin-bottom: 2rem;
}

.sports__intro p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

.sports__image-wrapper {
    margin-bottom: 2rem;
    text-align: center;
}

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

.sports__text p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1rem;
}

.sports__text p:last-child {
    margin-bottom: 0;
}

.sports__text strong {
    color: #1f2937;
    font-weight: 600;
}

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

    .sports__container {
        padding: 0 1rem;
    }

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

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

    .sports__text p {
        font-size: 0.875rem;
    }
}

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

    .sports__container {
        padding: 0 0.875rem;
    }

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

    .sports__intro p {
        font-size: 0.875rem;
    }

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

.faq {
    padding: 3rem 0;
    background: #ffffff;
}

.faq__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.faq__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq__item {
    background: #f9fafb;
    border: 1px solid #e1f0fc;
    border-radius: 8px;
    overflow: hidden;
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    transition: background-color 0.2s;
}

.faq__question:hover {
    background-color: #f0f9ff;
}

.faq__icon {
    flex-shrink: 0;
    color: #2977d7;
    transition: transform 0.3s;
}

.faq__item--active .faq__icon {
    transform: rotate(180deg);
}

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

.faq__item--active .faq__answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

.faq__answer p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

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

    .faq__container {
        padding: 0 1rem;
    }

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

    .faq__question {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
    }

    .faq__item--active .faq__answer {
        padding: 0 1.25rem 1rem;
    }

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

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

    .faq__container {
        padding: 0 0.875rem;
    }

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

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

    .faq__icon {
        width: 20px;
        height: 20px;
    }

    .faq__item--active .faq__answer {
        padding: 0 1rem 0.875rem;
    }

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

.footer {
    background: #f4f6ff;
    padding: 2rem 0;
    border-top: 1px solid #e1f0fc;
}

.footer__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

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

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

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

.footer__link {
    color: #2977d7;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s;
}

.footer__link:hover {
    color: #1a52d1;
    text-decoration: underline;
}

.footer__text {
    text-align: center;
}

.footer__copyright {
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.footer__disclaimer {
    font-size: 0.8125rem;
    color: #6b7280;
    margin: 0;
}

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

    .footer__container {
        padding: 0 1rem;
    }

    .footer__logo img {
        height: 32px;
    }

    .footer__nav {
        gap: 1.25rem;
    }

    .footer__link {
        font-size: 0.875rem;
    }

    .footer__copyright {
        font-size: 0.8125rem;
    }

    .footer__disclaimer {
        font-size: 0.75rem;
    }
}

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

    .footer__container {
        padding: 0 0.875rem;
    }

    .footer__logo img {
        height: 28px;
    }

    .footer__nav {
        gap: 1rem;
    }

    .footer__link {
        font-size: 0.8125rem;
    }

    .footer__copyright {
        font-size: 0.75rem;
    }

    .footer__disclaimer {
        font-size: 0.6875rem;
    }
}

.payments {
    padding: 3rem 0;
    background: #f9fafb;
}

.payments__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.payments__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.payments__intro {
    margin-bottom: 2.5rem;
}

.payments__intro p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1rem;
}

.payments__intro p:last-child {
    margin-bottom: 0;
}

.payments__table-wrapper {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e1f0fc;
    margin-bottom: 2rem;
}

.payments__table-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.payments__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.payments__table thead {
    background: linear-gradient(to right, #e1f0fc, #f0f9ff);
}

.payments__table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #1f2937;
    border-bottom: 2px solid #e1f0fc;
}

.payments__table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
}

.payments__table tbody tr:hover {
    background-color: #f0f9ff;
}

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

.payments__note {
    background: #fffbeb;
    padding: 1.25rem;
    border-radius: 8px;
    border: 1px solid #fde68a;
}

.payments__note p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #92400e;
    margin: 0;
}

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

    .payments__container {
        padding: 0 1rem;
    }

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

    .payments__intro {
        margin-bottom: 2rem;
    }

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

    .payments__table-wrapper {
        padding: 1.5rem;
        overflow-x: auto;
    }

    .payments__table-title {
        font-size: 1.25rem;
    }

    .payments__table {
        font-size: 0.8125rem;
    }

    .payments__table th,
    .payments__table td {
        padding: 0.75rem 0.5rem;
    }

    .payments__note {
        padding: 1rem;
    }

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

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

    .payments__container {
        padding: 0 0.875rem;
    }

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

    .payments__intro {
        margin-bottom: 1.5rem;
    }

    .payments__intro p {
        font-size: 0.875rem;
    }

    .payments__table-wrapper {
        padding: 1.25rem;
    }

    .payments__table-title {
        font-size: 1.125rem;
    }

    .payments__table {
        font-size: 0.75rem;
        display: block;
        overflow-x: auto;
    }

    .payments__table th,
    .payments__table td {
        padding: 0.625rem 0.375rem;
        white-space: nowrap;
    }

    .payments__note {
        padding: 0.875rem;
    }

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

.login-guide {
    padding: 3rem 0;
    background: #ffffff;
}

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

.login-guide__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

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

.login-guide__intro p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1rem;
}

.login-guide__intro p:last-child {
    margin-bottom: 0;
}

.login-guide__section {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e1f0fc;
    margin-bottom: 2rem;
}

.login-guide__subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.25rem;
}

.login-guide__steps {
    margin: 0;
    padding-left: 1.5rem;
    list-style-position: outside;
}

.login-guide__steps li {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.25rem;
    padding-left: 0.5rem;
}

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

.login-guide__steps strong {
    color: #1f2937;
    font-weight: 600;
}

.login-guide__tips {
    background: #f0f9ff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #bfdbfe;
}

.login-guide__tips p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1rem;
}

.login-guide__tips p:last-child {
    margin-bottom: 0;
}

.login-guide__tips strong {
    color: #1f2937;
    font-weight: 600;
}

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

    .login-guide__container {
        padding: 0 1rem;
    }

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

    .login-guide__intro {
        margin-bottom: 2rem;
    }

    .login-guide__intro p {
        font-size: 0.9375rem;
    }

    .login-guide__section {
        padding: 1.5rem;
    }

    .login-guide__subtitle {
        font-size: 1.25rem;
    }

    .login-guide__steps li {
        font-size: 0.875rem;
    }

    .login-guide__tips {
        padding: 1.5rem;
    }

    .login-guide__tips p {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .login-guide {
        padding: 1.5rem 0;
    }

    .login-guide__container {
        padding: 0 0.875rem;
    }

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

    .login-guide__intro {
        margin-bottom: 1.5rem;
    }

    .login-guide__intro p {
        font-size: 0.875rem;
    }

    .login-guide__section {
        padding: 1.25rem;
    }

    .login-guide__subtitle {
        font-size: 1.125rem;
    }

    .login-guide__steps {
        padding-left: 1.25rem;
    }

    .login-guide__steps li {
        font-size: 0.8125rem;
        margin-bottom: 1rem;
    }

    .login-guide__tips {
        padding: 1.25rem;
    }

    .login-guide__tips p {
        font-size: 0.8125rem;
    }
}

.burger-menu {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background: linear-gradient(to bottom, #2977d7, #2c9ff0);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    box-shadow: 0 4px 12px rgba(41, 119, 215, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.burger-menu:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(41, 119, 215, 0.5);
}

.burger-menu:active {
    transform: translateY(0);
}

.burger-menu__icon {
    width: 24px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.burger-menu--active .burger-menu__icon:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-menu--active .burger-menu__icon:nth-child(2) {
    opacity: 0;
}

.burger-menu--active .burger-menu__icon:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.burger-menu__nav {
    position: fixed;
    bottom: 6rem;
    right: 1.5rem;
    background: linear-gradient(to bottom, #e5eefa, #fefefe);
    border: 1px solid #97b1c8;
    border-radius: 8px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.burger-menu__link {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to bottom, #2977d7, #2c9ff0);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 6px;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}

.burger-menu__link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(41, 119, 215, 0.3);
}

.burger-menu__link:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .burger-menu {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 52px;
        height: 52px;
    }

    .burger-menu__nav {
        bottom: 5.5rem;
        right: 1.25rem;
    }
}

@media (max-width: 480px) {
    .burger-menu {
        bottom: 1rem;
        right: 1rem;
        width: 48px;
        height: 48px;
    }

    .burger-menu__icon {
        width: 20px;
        height: 2.5px;
    }

    .burger-menu__nav {
        bottom: 5rem;
        right: 1rem;
    }

    .burger-menu__link {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
}

.inline-link {
    color: #2977d7;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(41, 119, 215, 0.3);
    text-underline-offset: 2px;
    transition: color 0.2s, text-decoration-color 0.2s;
}

.inline-link:hover {
    color: #1a52d1;
    text-decoration-color: #1a52d1;
}

