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

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

.header {
    background: linear-gradient(to bottom, #3b313a, #39292c);
    padding: 0.75rem 1.5rem;
    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: 40px;
    width: auto;
}

.header__search-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
    flex-shrink: 0;
}

.header__search-toggle:hover {
    opacity: 0.8;
}

.header__search {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
}

.header__search-input {
    width: 100%;
    padding: 0.75rem 1.25rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.header__search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

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

.header__nav {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.header__button {
    display: inline-block;
    padding: 0.65rem 2rem;
    background-image: url('img/button-image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    text-align: center;
    white-space: nowrap;
}

.header__button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

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

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

    .header__container {
        gap: 1rem;
        position: relative;
    }

    .header__search-toggle {
        display: block;
    }

    .header__search {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 1rem;
        background: linear-gradient(to bottom, #3b313a, #39292c);
        margin: 0;
        max-width: none;
    }

    .header__search.active {
        display: block;
    }

    .header__logo img {
        height: 35px;
    }

    .header__button {
        padding: 0.5rem 1.25rem;
        font-size: 0.85rem;
    }
}

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

    .header__container {
        gap: 0.5rem;
    }

    .header__nav {
        gap: 0.5rem;
    }

    .header__button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .header__logo img {
        height: 30px;
    }
}

.hero {
    position: relative;
    min-height: 550px;
    background-image: url('img/dragonia-dbg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 4rem 1.5rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 49, 58, 0.7) 0%, rgba(57, 41, 44, 0.5) 50%, transparent 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 140, 0, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero__content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    animation: heroFadeIn 0.8s ease-out;
}

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

.hero__heading {
    color: #ffffff;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 140, 0, 0.5), 0 0 60px rgba(255, 140, 0, 0.3), 0 0 90px rgba(255, 140, 0, 0.2);
    margin: 0;
    letter-spacing: 1px;
    position: relative;
    filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.6));
}

.hero__heading::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    color: #ff8c00;
    filter: blur(15px);
    opacity: 0.6;
}

.hero__text {
    color: #ffffff;
    font-size: 1.35rem;
    line-height: 1.7;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.6);
    max-width: 550px;
    margin: 0;
    font-weight: 400;
    padding: 1.25rem 1.75rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 140, 0, 0.15) 100%);
    border-left: 4px solid #ff8c00;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hero__cta {
    display: inline-block;
    padding: 1.15rem 3.5rem;
    background-image: url('img/cta-button.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5), 0 0 40px rgba(255, 140, 0, 0.3);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}

.hero__cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    border-radius: 50%;
}

.hero__cta:hover::before {
    width: 300px;
    height: 300px;
}

.hero__cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.7), 0 0 60px rgba(255, 140, 0, 0.4);
}

.hero__cta:active {
    transform: translateY(-2px) scale(1.02);
}


@media (max-width: 768px) {
    .hero {
        background-image: url('img/dragonia-mbg.webp');
        min-height: 400px;
        height: 60vh;
        padding: 2rem 1rem;
    }

    .hero__content {
        align-items: center;
        text-align: center;
        padding-top: 4rem;
    }

    .hero__heading {
        font-size: 2rem;
    }

    .hero__text {
        font-size: 1rem;
        padding: 1rem 1.25rem;
        width: 100%;
        max-width: none;
    }

    .hero__cta {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
        letter-spacing: 0.5px;
    }
}

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

    .hero__content {
        padding-top: 12rem;
    }

    .hero__heading {
        font-size: 1.75rem;
    }

    .hero__text {
        font-size: 0.95rem;
        padding: 0.85rem 1rem;
    }

    .hero__cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        letter-spacing: 0.3px;
    }
}

.bonuses-info {
    background-color: #252525;
    padding: 3rem 0;
}

.bonuses-info__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.bonuses-info__heading {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.bonuses-info__intro {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 0 2rem 0;
}

.bonuses-info__list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.bonuses-info__item {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
}

.bonuses-info__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: #ff8c00;
    border-radius: 50%;
}

.bonuses-info__item strong {
    color: #ff8c00;
    font-weight: bold;
}

.bonuses-info__footer {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

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

.slots-info__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.slots-info__heading {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.slots-info__intro {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 0 2.5rem 0;
}

.slots-info__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 2.5rem;
}

.slots-info__content {
    display: flex;
    flex-direction: column;
}

.slots-info__subheading {
    color: #ff8c00;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 0 1.25rem 0;
    line-height: 1.3;
}

.slots-info__list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.slots-info__item {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
}

.slots-info__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: #ff8c00;
    border-radius: 50%;
}

.slots-info__item strong {
    color: #ff8c00;
    font-weight: bold;
}

.slots-info__image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.slots-info__image {
    width: 100%;
    height: auto;
    display: block;
}

.slots-info__text {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 0 2rem 0;
}

.slots-info__text:last-child {
    margin-bottom: 0;
}

.sports-info {
    background-color: #252525;
    padding: 3rem 0;
}

.sports-info__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.sports-info__heading {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.sports-info__intro {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 0 2.5rem 0;
}

.sports-info__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 2.5rem;
}

.sports-info__image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.sports-info__image {
    width: 100%;
    height: auto;
    display: block;
}

.sports-info__content {
    display: flex;
    flex-direction: column;
}

.sports-info__subheading {
    color: #ff8c00;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 0 1.25rem 0;
    line-height: 1.3;
}

.sports-info__text {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 0 2rem 0;
}

.sports-info__text:last-child {
    margin-bottom: 0;
}

.support-info {
    background-color: #1a1a1a;
    padding: 3rem 0;
}

.support-info__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.support-info__heading {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.support-info__intro {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 0 2rem 0;
}

.support-info__list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.support-info__item {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
}

.support-info__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: #ff8c00;
    border-radius: 50%;
}

.support-info__item strong {
    color: #ff8c00;
    font-weight: bold;
}

.support-info__footer {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.payments-info {
    background-color: #252525;
    padding: 3rem 0;
}

.payments-info__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.payments-info__heading {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.payments-info__intro {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 0 2.5rem 0;
}

.payments-info__table-wrapper {
    overflow-x: auto;
    margin-bottom: 2.5rem;
}

.payments-info__table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.payments-info__table thead {
    background-color: #ff8c00;
}

.payments-info__table-header {
    color: #ffffff;
    font-weight: bold;
    font-size: 0.95rem;
    padding: 1rem;
    text-align: left;
}

.payments-info__table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease;
}

.payments-info__table tbody tr:hover {
    background-color: rgba(255, 140, 0, 0.05);
}

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

.payments-info__table-cell {
    color: #cccccc;
    font-size: 0.95rem;
    padding: 1rem;
}

.payments-info__table-cell strong {
    color: #ffffff;
    font-weight: bold;
}

.payments-info__subheading {
    color: #ff8c00;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 0 1.25rem 0;
    line-height: 1.3;
}

.payments-info__text {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
}

.payments-info__list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.payments-info__item {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
}

.payments-info__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: #ff8c00;
    border-radius: 50%;
}

.payments-info__item strong {
    color: #ff8c00;
    font-weight: bold;
}

.payments-info__footer {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.bonus-hero {
    background: linear-gradient(135deg, #3b313a 0%, #271d21 100%);
    padding: 4rem 1.5rem;
    text-align: center;
}

.bonus-hero__container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.bonus-hero__heading {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
}

.bonus-hero__intro {
    color: #cccccc;
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 0;
}

.bonus-hero__cta {
    display: inline-block;
    padding: 1rem 3rem;
    background-image: url('img/cta-button.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    border-radius: 10px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.6);
}

.bonus-hero__cta:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

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

.bonus-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.dragon-link {
    color: #ff8c00;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid rgba(255, 140, 0, 0.3);
    transition: all 0.2s ease;
}

.dragon-link:hover {
    color: #ffaa00;
    border-bottom-color: #ff8c00;
    text-shadow: 0 0 8px rgba(255, 140, 0, 0.5);
}

.cta-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background-image: url('img/cta-button.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    border-radius: 10px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.6);
}

.cta-button:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.cta-button:active {
    transform: translateY(0);
}

.categories {
    background-color: #2a2a2a;
    background-image: url('img/categories-icon-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 1rem 0;
}

.categories__container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 0.75rem;
    padding: 0 1.5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

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

.categories__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.categories__item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
}

.categories__icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.categories__text {
    color: #ffffff;
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
}

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

    .categories__container {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 1rem;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

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

    .categories__item {
        padding: 0.65rem 1.25rem;
        gap: 0.6rem;
    }

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

    .categories__text {
        font-size: 0.85rem;
    }

    .bonuses-info {
        padding: 2rem 0;
    }

    .bonuses-info__container {
        padding: 0 1rem;
    }

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

    .bonuses-info__intro {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .bonuses-info__list {
        margin-bottom: 1.5rem;
    }

    .bonuses-info__item {
        font-size: 0.95rem;
    }

    .bonuses-info__footer {
        font-size: 0.95rem;
    }

    .slots-info {
        padding: 2rem 0;
    }

    .slots-info__container {
        padding: 0 1rem;
    }

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

    .slots-info__intro {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .slots-info__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

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

    .slots-info__list {
        margin-bottom: 2rem;
    }

    .slots-info__item {
        font-size: 0.95rem;
    }

    .slots-info__text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .sports-info {
        padding: 2rem 0;
    }

    .sports-info__container {
        padding: 0 1rem;
    }

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

    .sports-info__intro {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .sports-info__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

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

    .sports-info__text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .support-info {
        padding: 2rem 0;
    }

    .support-info__container {
        padding: 0 1rem;
    }

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

    .support-info__intro {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .support-info__list {
        margin-bottom: 1.5rem;
    }

    .support-info__item {
        font-size: 0.95rem;
    }

    .support-info__footer {
        font-size: 0.95rem;
    }

    .payments-info {
        padding: 2rem 0;
    }

    .payments-info__container {
        padding: 0 1rem;
    }

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

    .payments-info__intro {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .payments-info__table-wrapper {
        margin-bottom: 2rem;
    }

    .payments-info__table-header,
    .payments-info__table-cell {
        font-size: 0.85rem;
        padding: 0.85rem;
    }

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

    .payments-info__text {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .payments-info__list {
        margin-bottom: 1.5rem;
    }

    .payments-info__item {
        font-size: 0.95rem;
    }

    .payments-info__footer {
        font-size: 0.95rem;
    }

    .cta-section {
        margin-top: 2rem;
    }

    .cta-button {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
    }

    .bonus-hero {
        padding: 3rem 1rem;
    }

    .bonus-hero__heading {
        font-size: 2rem;
    }

    .bonus-hero__intro {
        font-size: 1rem;
    }

    .bonus-hero__cta {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
    }

    .bonus-table-wrapper {
        margin: 1.5rem 0;
    }
}

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

    .categories__container {
        padding: 0 0.75rem;
        gap: 0.75rem;
    }

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

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

    .categories__text {
        font-size: 0.8rem;
    }

    .bonuses-info {
        padding: 1.5rem 0;
    }

    .bonuses-info__container {
        padding: 0 0.75rem;
    }

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

    .bonuses-info__intro {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .bonuses-info__list {
        gap: 1rem;
        margin-bottom: 1.25rem;
    }

    .bonuses-info__item {
        font-size: 0.9rem;
        padding-left: 1.25rem;
    }

    .bonuses-info__item::before {
        top: 0.45rem;
        width: 7px;
        height: 7px;
    }

    .bonuses-info__footer {
        font-size: 0.9rem;
    }

    .slots-info {
        padding: 1.5rem 0;
    }

    .slots-info__container {
        padding: 0 0.75rem;
    }

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

    .slots-info__intro {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .slots-info__grid {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .slots-info__subheading {
        font-size: 1.15rem;
        margin-bottom: 0.85rem;
    }

    .slots-info__list {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .slots-info__item {
        font-size: 0.9rem;
        padding-left: 1.25rem;
    }

    .slots-info__item::before {
        top: 0.45rem;
        width: 7px;
        height: 7px;
    }

    .slots-info__text {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .sports-info {
        padding: 1.5rem 0;
    }

    .sports-info__container {
        padding: 0 0.75rem;
    }

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

    .sports-info__intro {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .sports-info__grid {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .sports-info__subheading {
        font-size: 1.15rem;
        margin-bottom: 0.85rem;
    }

    .sports-info__text {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .support-info {
        padding: 1.5rem 0;
    }

    .support-info__container {
        padding: 0 0.75rem;
    }

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

    .support-info__intro {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .support-info__list {
        gap: 1rem;
        margin-bottom: 1.25rem;
    }

    .support-info__item {
        font-size: 0.9rem;
        padding-left: 1.25rem;
    }

    .support-info__item::before {
        top: 0.45rem;
        width: 7px;
        height: 7px;
    }

    .support-info__footer {
        font-size: 0.9rem;
    }

    .payments-info {
        padding: 1.5rem 0;
    }

    .payments-info__container {
        padding: 0 0.75rem;
    }

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

    .payments-info__intro {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .payments-info__table-wrapper {
        margin: 0 -0.75rem 1.5rem;
    }

    .payments-info__table-header,
    .payments-info__table-cell {
        font-size: 0.8rem;
        padding: 0.75rem 0.5rem;
    }

    .payments-info__subheading {
        font-size: 1.15rem;
        margin-bottom: 0.85rem;
    }

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

    .payments-info__list {
        gap: 1rem;
        margin-bottom: 1.25rem;
    }

    .payments-info__item {
        font-size: 0.9rem;
        padding-left: 1.25rem;
    }

    .payments-info__item::before {
        top: 0.45rem;
        width: 7px;
        height: 7px;
    }

    .payments-info__footer {
        font-size: 0.9rem;
    }

    .cta-section {
        margin-top: 1.5rem;
    }

    .cta-button {
        padding: 0.75rem 1.75rem;
        font-size: 0.9rem;
    }

    .bonus-hero {
        padding: 2.5rem 0.75rem;
    }

    .bonus-hero__container {
        gap: 1.25rem;
    }

    .bonus-hero__heading {
        font-size: 1.75rem;
    }

    .bonus-hero__intro {
        font-size: 0.95rem;
    }

    .bonus-hero__cta {
        padding: 0.75rem 1.75rem;
        font-size: 0.9rem;
    }

    .bonus-table-wrapper {
        margin: 1.25rem -0.75rem;
    }
}

.slots {
    background-color: #1a1a1a;
    padding: 2rem 0;
}

.slots__header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.slots__title {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: bold;
}

.slots__view-all {
    color: #ff8c00;
    font-size: 0.95rem;
    font-weight: bold;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.slots__view-all:hover {
    opacity: 0.8;
}

.slots__wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.slots__nav {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.slots__nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.slots__container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

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

.slots__card {
    position: relative;
    flex-shrink: 0;
    width: 240px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.slots__card:hover {
    transform: scale(1.05);
}

.slots__image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.slots__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background-color: #00c853;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 0.35rem 0.75rem;
    border-radius: 12px;
    text-transform: uppercase;
}

.slots__number {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

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

    .slots__header {
        padding: 0 1rem;
        margin-bottom: 1rem;
    }

    .slots__title {
        font-size: 1.5rem;
    }

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

    .slots__wrapper {
        padding: 0;
    }

    .slots__nav {
        display: none;
    }

    .slots__container {
        padding: 0 1rem;
    }

    .slots__card {
        width: 210px;
    }

    .slots__image {
        height: 310px;
    }
}

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

    .slots__header {
        padding: 0 0.75rem;
    }

    .slots__title {
        font-size: 1.25rem;
    }

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

    .slots__container {
        padding: 0 0.75rem;
        gap: 0.75rem;
    }

    .slots__card {
        width: 180px;
    }

    .slots__image {
        height: 280px;
    }

    .slots__number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .slots__badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }
}

.content {
    background-color: #1a1a1a;
    padding: 3rem 0;
}

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

.content__heading {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.content__text {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.content__table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    background-color: #252525;
    border-radius: 8px;
    overflow: hidden;
}

.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-label {
    color: #ffffff;
    font-weight: bold;
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
    width: 40%;
    vertical-align: top;
}

.content__table-value {
    color: #cccccc;
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
    width: 60%;
    vertical-align: top;
}

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

    .content__container {
        padding: 0 1rem;
    }

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

    .content__text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .content__table {
        margin-top: 1.5rem;
    }

    .content__table-label,
    .content__table-value {
        font-size: 0.85rem;
        padding: 0.85rem 1rem;
        display: block;
        width: 100%;
    }

    .content__table tbody tr {
        display: block;
        margin-bottom: 0;
    }

    .content__table-label {
        padding-bottom: 0.5rem;
    }

    .content__table-value {
        padding-top: 0;
    }
}

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

    .content__container {
        padding: 0 0.75rem;
    }

    .content__heading {
        font-size: 1.35rem;
    }

    .content__text {
        font-size: 0.9rem;
    }

    .content__table-label,
    .content__table-value {
        font-size: 0.8rem;
        padding: 0.75rem 0.85rem;
    }
}

.auth-guide {
    background-color: #252525;
    padding: 3rem 0;
}

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

.auth-guide__heading {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-guide__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.auth-guide__block {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-guide__title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 0 1.5rem 0;
}

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

.auth-guide__item {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.auth-guide__item::marker {
    color: #ff8c00;
    font-weight: bold;
}

.auth-guide__info {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-guide__text {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.auth-guide__text:last-child {
    margin-bottom: 0;
}

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

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

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

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

    .auth-guide__block {
        padding: 1.5rem;
    }

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

    .auth-guide__item {
        font-size: 0.95rem;
        margin-bottom: 0.85rem;
    }

    .auth-guide__info {
        padding: 1.5rem;
    }

    .auth-guide__text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
}

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

    .auth-guide__container {
        padding: 0 0.75rem;
    }

    .auth-guide__heading {
        font-size: 1.35rem;
        margin-bottom: 1.5rem;
    }

    .auth-guide__grid {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .auth-guide__block {
        padding: 1.25rem;
    }

    .auth-guide__title {
        font-size: 1.15rem;
        margin-bottom: 1rem;
    }

    .auth-guide__item {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .auth-guide__list {
        padding-left: 1.25rem;
    }

    .auth-guide__info {
        padding: 1.25rem;
    }

    .auth-guide__text {
        font-size: 0.9rem;
    }
}

.games-section {
    background-color: #1a1a1a;
    padding: 3rem 0;
}

.games-section__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.games-section__heading {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.games-section__subheading {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 2rem 0 1rem 0;
}

.games-section__text {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.games-section__image-wrapper {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.games-section__image {
    width: 100%;
    height: auto;
    display: block;
}

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

    .games-section__container {
        padding: 0 1rem;
    }

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

    .games-section__subheading {
        font-size: 1.25rem;
        margin: 1.5rem 0 0.85rem 0;
    }

    .games-section__text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .games-section__image-wrapper {
        margin: 1.5rem 0;
    }
}

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

    .games-section__container {
        padding: 0 0.75rem;
    }

    .games-section__heading {
        font-size: 1.35rem;
    }

    .games-section__subheading {
        font-size: 1.15rem;
        margin: 1.25rem 0 0.75rem 0;
    }

    .games-section__text {
        font-size: 0.9rem;
    }

    .games-section__image-wrapper {
        margin: 1.25rem 0;
    }
}

.bonuses {
    background-color: #252525;
    padding: 3rem 0;
}

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

.bonuses__heading {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

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

.bonuses__content {
    display: flex;
    flex-direction: column;
}

.bonuses__text {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.bonuses__image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    max-width: 66.67%;
    margin: 0 auto;
}

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

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

.bonuses__table thead {
    background-color: #ff8c00;
}

.bonuses__table-header {
    color: #ffffff;
    font-weight: bold;
    font-size: 0.95rem;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.bonuses__table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease;
}

.bonuses__table tbody tr:hover {
    background-color: rgba(255, 140, 0, 0.1);
}

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

.bonuses__table-cell {
    color: #cccccc;
    font-size: 0.9rem;
    padding: 1rem;
    vertical-align: top;
}

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

    .bonuses__container {
        padding: 0 1rem;
    }

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

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

    .bonuses__image-wrapper {
        max-width: 66.67%;
    }

    .bonuses__text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .bonuses__table {
        margin: 1.5rem 0;
        font-size: 0.85rem;
    }

    .bonuses__table-header,
    .bonuses__table-cell {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
}

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

    .bonuses__container {
        padding: 0 0.75rem;
    }

    .bonuses__heading {
        font-size: 1.35rem;
    }

    .bonuses__grid {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .bonuses__text {
        font-size: 0.9rem;
    }

    .bonuses__table {
        display: block;
        overflow-x: auto;
        margin: 1.25rem -0.75rem;
        border-radius: 0;
    }

    .bonuses__table-header,
    .bonuses__table-cell {
        padding: 0.65rem 0.4rem;
        font-size: 0.75rem;
    }
}

.mobile {
    background-color: #1a1a1a;
    padding: 3rem 0;
}

.mobile__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.mobile__heading {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.mobile__text {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

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

    .mobile__container {
        padding: 0 1rem;
    }

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

    .mobile__text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
}

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

    .mobile__container {
        padding: 0 0.75rem;
    }

    .mobile__heading {
        font-size: 1.35rem;
    }

    .mobile__text {
        font-size: 0.9rem;
    }
}

.faq {
    background-color: #252525;
    padding: 3rem 0;
}

.faq__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.faq__heading {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
}

.faq__item {
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: border-color 0.2s ease;
}

.faq__item:hover {
    border-color: rgba(255, 140, 0, 0.3);
}

.faq__question {
    color: #ff8c00;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.faq__answer {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
}

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

    .faq__container {
        padding: 0 1rem;
    }

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

    .faq__item {
        padding: 1.25rem;
    }

    .faq__question {
        font-size: 1rem;
        margin-bottom: 0.65rem;
    }

    .faq__answer {
        font-size: 0.95rem;
    }
}

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

    .faq__container {
        padding: 0 0.75rem;
    }

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

    .faq__item {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }

    .faq__question {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .faq__answer {
        font-size: 0.9rem;
    }
}

.footer {
    background: linear-gradient(to bottom, #35272c, #271d21);
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer__logo {
    display: block;
}

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

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

.footer__copyright {
    color: #999999;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer__disclaimer {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 800px;
}

.footer__warnings {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.footer__warning {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    letter-spacing: 0.3px;
}

.footer__warning--age {
    background-color: rgba(255, 0, 0, 0.2);
    border: 2px solid rgba(255, 0, 0, 0.5);
}

.footer__warning--responsible {
    background-color: rgba(255, 140, 0, 0.2);
    border: 2px solid rgba(255, 140, 0, 0.5);
    color: #ff8c00;
}

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

    .footer__container {
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .footer__logo img {
        height: 38px;
    }

    .footer__content {
        gap: 1.25rem;
    }

    .footer__copyright {
        font-size: 0.85rem;
    }

    .footer__disclaimer {
        font-size: 0.9rem;
    }

    .footer__warning {
        font-size: 0.85rem;
        padding: 0.65rem 1.25rem;
    }
}

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

    .footer__container {
        padding: 0 0.75rem;
        gap: 1.25rem;
    }

    .footer__logo img {
        height: 32px;
    }

    .footer__content {
        gap: 1rem;
    }

    .footer__copyright {
        font-size: 0.8rem;
    }

    .footer__disclaimer {
        font-size: 0.85rem;
    }

    .footer__warnings {
        gap: 0.5rem;
        width: 100%;
    }

    .footer__warning {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
        width: 100%;
        text-align: center;
    }
}

/* Content Section */
.content-section {
    background-color: #1a1a1a;
    padding: 4rem 0;
}

.content-section--alt {
    background-color: #252525;
}

/* Content Images */
.content-image-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 2.5rem auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 140, 0, 0.3);
    transition: all 0.4s ease;
}

.content-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 140, 0, 0.3);
    border-color: rgba(255, 140, 0, 0.6);
}

.content-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.content-image-wrapper:hover .content-image {
    transform: scale(1.02);
}

/* Smaller images for sign-in and sign-up on desktop */
.content-image-wrapper:has(img[src*="sign-in.webp"]),
.content-image-wrapper:has(img[src*="sign-up.webp"]) {
    max-width: 450px;
}

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

.content-container h2 {
    color: #ff8c00;
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-container h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.content-container p {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-container ol {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.content-container ol li {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.content-container ol li::marker {
    color: #ff8c00;
    font-weight: bold;
}

.content-container ul {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-left: 2rem;
    list-style: none;
}

.content-container ul li {
    margin-bottom: 1rem;
    padding-left: 1.75rem;
    position: relative;
}

.content-container ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 8px;
    height: 8px;
    background-color: #ff8c00;
    border-radius: 50%;
}

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

    .content-container {
        padding: 0 1rem;
    }

    .content-image-wrapper {
        margin: 2rem auto;
        border-radius: 12px;
    }

    .content-container h2 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .content-container h3 {
        font-size: 1.25rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .content-container p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .content-container ol,
    .content-container ul {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding-left: 1.5rem;
    }

    .content-container ol li {
        margin-bottom: 0.85rem;
        padding-left: 0.35rem;
    }

    .content-container ul li {
        margin-bottom: 0.85rem;
        padding-left: 1.5rem;
    }

    .content-container ul li::before {
        top: 0.55rem;
        width: 7px;
        height: 7px;
    }
}

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

    .content-container {
        padding: 0 0.75rem;
    }

    .content-image-wrapper {
        margin: 1.5rem auto;
        border-radius: 10px;
        border-width: 1px;
    }

    .content-image-wrapper:hover {
        transform: translateY(-3px);
    }

    .content-container h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .content-container h3 {
        font-size: 1.15rem;
        margin-top: 1.75rem;
        margin-bottom: 0.85rem;
    }

    .content-container p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .content-container ol,
    .content-container ul {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        padding-left: 1.25rem;
    }

    .content-container ol li {
        margin-bottom: 0.75rem;
        padding-left: 0.25rem;
    }

    .content-container ul li {
        margin-bottom: 0.75rem;
        padding-left: 1.25rem;
    }

    .content-container ul li::before {
        top: 0.5rem;
        width: 6px;
        height: 6px;
    }
}

/* Bonus Table */
.bonus-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.bonus-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
}

.bonus-table thead {
    background: linear-gradient(135deg, #ff8c00, #ff6600);
}

.bonus-table thead th {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.05rem;
    text-align: left;
    padding: 1.25rem 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

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

.bonus-table tbody tr:hover {
    background-color: rgba(255, 140, 0, 0.1);
}

.bonus-table tbody td {
    color: #cccccc;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    line-height: 1.6;
}

.bonus-table tbody td:first-child {
    color: #ffffff;
    font-weight: 600;
}

.bonus-table tbody td:nth-child(2) {
    color: #ff8c00;
    font-weight: 600;
}

@media (max-width: 768px) {
    .bonus-table-wrapper {
        margin: 1.5rem 0;
        border-radius: 8px;
    }

    .bonus-table thead {
        display: none;
    }

    .bonus-table tbody tr {
        display: block;
        margin-bottom: 1.5rem;
        border: 2px solid rgba(255, 140, 0, 0.3);
        border-radius: 8px;
        background-color: #2a2a2a;
    }

    .bonus-table tbody tr:hover {
        background-color: #2a2a2a;
        border-color: rgba(255, 140, 0, 0.6);
    }

    .bonus-table tbody td {
        display: block;
        text-align: right;
        padding: 0.85rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
    }

    .bonus-table tbody td:last-child {
        border-bottom: none;
    }

    .bonus-table tbody td::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        color: #ff8c00;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 0.3px;
    }

    .bonus-table tbody td:first-child {
        background: linear-gradient(135deg, rgba(255, 140, 0, 0.2), rgba(255, 102, 0, 0.2));
        font-size: 1.05rem;
        border-radius: 6px 6px 0 0;
    }
}

@media (max-width: 480px) {
    .bonus-table-wrapper {
        margin: 1.25rem 0;
    }

    .bonus-table tbody tr {
        margin-bottom: 1.25rem;
    }

    .bonus-table tbody td {
        padding: 0.75rem 0.85rem;
        font-size: 0.9rem;
    }

    .bonus-table tbody td::before {
        font-size: 0.8rem;
    }

    .bonus-table tbody td:first-child {
        font-size: 0.95rem;
    }
}

/* Support Grid */
.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
}

.support-card {
    background: linear-gradient(135deg, #2a2a2a, #1f1f1f);
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.support-card:hover {
    border-color: rgba(255, 140, 0, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.support-card__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.support-card__title {
    color: #ff8c00;
    font-size: 1.35rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.support-card__text {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
}

.advantage-card {
    background: linear-gradient(135deg, #2a2a2a, #1f1f1f);
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff8c00, #ff6600);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card:hover {
    border-color: rgba(255, 140, 0, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.advantage-card__number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 140, 0, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
}

.advantage-card__title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.advantage-card__text {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

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

@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .support-card {
        padding: 1.5rem;
    }

    .support-card__icon {
        font-size: 2.5rem;
        margin-bottom: 0.85rem;
    }

    .support-card__title {
        font-size: 1.2rem;
        margin-bottom: 0.85rem;
    }

    .support-card__text {
        font-size: 0.95rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .advantage-card {
        padding: 1.5rem;
    }

    .advantage-card__number {
        font-size: 2.5rem;
        margin-bottom: 0.85rem;
    }

    .advantage-card__title {
        font-size: 1.15rem;
        margin-bottom: 0.85rem;
    }

    .advantage-card__text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .support-grid {
        gap: 1.25rem;
        margin: 1.5rem 0;
    }

    .support-card {
        padding: 1.25rem;
    }

    .support-card__icon {
        font-size: 2.25rem;
        margin-bottom: 0.75rem;
    }

    .support-card__title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .support-card__text {
        font-size: 0.9rem;
    }

    .advantages-grid {
        gap: 1.25rem;
        margin: 1.5rem 0;
    }

    .advantage-card {
        padding: 1.25rem;
    }

    .advantage-card__number {
        font-size: 2.25rem;
        margin-bottom: 0.75rem;
    }

    .advantage-card__title {
        font-size: 1.05rem;
        margin-bottom: 0.75rem;
    }

    .advantage-card__text {
        font-size: 0.9rem;
    }
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 2.5rem auto 0;
}

.faq-item {
    background: linear-gradient(135deg, #2a2a2a, #1f1f1f);
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 140, 0, 0.4);
}

.faq-item.active {
    border-color: rgba(255, 140, 0, 0.6);
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.2);
}

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

.faq-question:hover {
    background: rgba(255, 140, 0, 0.05);
}

.faq-question__text {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.4;
    padding-right: 1rem;
}

.faq-question__icon {
    color: #ff8c00;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question__icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

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

    .faq-item {
        margin-bottom: 1.25rem;
        border-radius: 10px;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question__text {
        font-size: 1.05rem;
        padding-right: 0.85rem;
    }

    .faq-question__icon {
        font-size: 1.75rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}

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

    .faq-item {
        margin-bottom: 1rem;
        border-radius: 8px;
    }

    .faq-question {
        padding: 1rem 1.25rem;
    }

    .faq-question__text {
        font-size: 0.95rem;
        padding-right: 0.75rem;
    }

    .faq-question__icon {
        font-size: 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}