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

html {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background-color: #0F0F14;
    overflow-x: hidden;
    width: 100%;
    min-width: 320px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    min-height: 48px;
    font-size: 16px;
    font-weight: 900;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.btn--primary {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    border: 2px solid #FF0000;
}

.btn--primary:hover {
    background: linear-gradient(135deg, #CC0000 0%, #990000 100%);
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.6);
    transform: translateY(-2px);
}

.btn--primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.5);
}

.btn--ghost {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn--ghost:active {
    transform: translateY(0);
}

.btn--large {
    padding: 18px 48px;
    font-size: 18px;
    min-height: 56px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 15, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
}

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

.header__logo {
    flex-shrink: 0;
    min-width: 0;
}

.header__logo-img {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.header__nav {
    display: flex;
    gap: 24px;
    align-items: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    min-width: 0;
}

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

.header__nav-link {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    transition: color 0.3s ease;
    padding: 8px 0;
}

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

.header__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.header__actions .btn {
    padding: 10px 24px;
    min-height: 44px;
    font-size: 14px;
    white-space: nowrap;
}

.header__burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    flex-shrink: 0;
}

.header__burger span {
    width: 24px;
    height: 3px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.section__title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 12px;
    color: #FFFFFF;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.section__subtitle {
    font-size: clamp(16px, 3vw, 20px);
    text-align: center;
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.hero {
    position: relative;
    background: linear-gradient(135deg, #1A1A22 0%, #0F0F14 100%);
    overflow: hidden;
}

.hero__media {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.hero__media a {
    display: block;
}

.hero__image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
}

.hero__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero__title {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 900;
    margin-bottom: 32px;
    color: #FFFFFF;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.hero__bonus {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2) 0%, rgba(204, 0, 0, 0.2) 100%);
    border: 2px solid #FF0000;
    border-radius: 16px;
    padding: 32px 24px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.3);
}

.hero__bonus-label {
    display: block;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__bonus-amount {
    display: block;
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 900;
    color: #FF0000;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.hero__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.benefits {
    padding: 80px 0;
    background: #0F0F14;
}

.benefits__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.benefits__card {
    background: #1A1A22;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px 24px;
    transition: all 0.3s ease;
    min-width: 0;
}

.benefits__card:hover {
    transform: translateY(-8px);
    border-color: #FF0000;
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.2);
}

.benefits__icon {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
}

.benefits__card-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #FFFFFF;
    text-align: center;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.benefits__card-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    text-align: center;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.bonuses {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A22 0%, #0F0F14 100%);
}

.bonuses__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.bonuses__content {
    margin-top: 48px;
}

.bonuses__featured {
    margin-bottom: 40px;
}

.bonuses__card {
    background: #1A1A22;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    min-width: 0;
}

.bonuses__card:hover {
    transform: translateY(-4px);
    border-color: #FF0000;
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.2);
}

.bonuses__card--main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.bonuses__card-media {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.bonuses__card-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    display: block;
}

.bonuses__card-content {
    padding: 32px 24px;
}

.bonuses__card-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #FFFFFF;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.bonuses__card-amount {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 900;
    color: #FF0000;
    margin-bottom: 16px;
    display: block;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.bonuses__card-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.bonuses__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 24px;
}

.bonuses__grid .bonuses__card {
    padding: 32px 24px;
}

.bonuses__grid .bonuses__card-title {
    font-size: 20px;
}

.bonuses__grid .bonuses__card-amount {
    font-size: 32px;
}

.bonuses__grid .bonuses__card-text {
    font-size: 15px;
}

.howto {
    padding: 80px 0;
    background: #0F0F14;
}

.howto__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.howto__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 32px;
    margin-top: 48px;
    margin-bottom: 48px;
}

.howto__step {
    background: #1A1A22;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    min-width: 0;
}

.howto__step:hover {
    transform: translateY(-8px);
    border-color: #FF0000;
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.2);
}

.howto__step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    color: #FFFFFF;
    margin: 0 auto 24px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.howto__step-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #FFFFFF;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.howto__step-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.howto__cta {
    text-align: center;
}

.sports {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A22 0%, #0F0F14 100%);
}

.sports__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.sports__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.sports__text {
    min-width: 0;
}

.sports__description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 24px;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.sports__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 16px;
    margin: 32px 0;
}

.sports__feature {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.sports__feature-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.sports__feature-text {
    font-weight: 600;
    font-size: 14px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.sports__media {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.sports__media a {
    display: block;
}

.sports__image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
}

.casino {
    padding: 80px 0;
    background: #0F0F14;
}

.casino__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.casino__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}

.casino__text {
    min-width: 0;
}

.casino__description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 24px;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.casino__categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 16px;
    margin: 32px 0;
}

.casino__category {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    min-width: 0;
}

.casino__category:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: #FF0000;
    transform: translateY(-4px);
}

.casino__category-icon {
    font-size: 32px;
}

.casino__category-name {
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.casino__media {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.casino__media a {
    display: block;
}

.casino__image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
}

.casino__live {
    background: #1A1A22;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
}

.casino__live-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #FFFFFF;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.casino__live-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.mobile {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A22 0%, #0F0F14 100%);
}

.mobile__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.mobile__content {
    margin-top: 48px;
}

.mobile__info {
    max-width: 100%;
}

.mobile__description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 32px;
    text-align: center;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.mobile__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.mobile__feature {
    background: #1A1A22;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    min-width: 0;
}

.mobile__feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.mobile__feature-content {
    flex: 1;
    min-width: 0;
}

.mobile__feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #FFFFFF;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.mobile__feature-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.mobile__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.payments {
    padding: 80px 0;
    background: #0F0F14;
}

.payments__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.payments__intro {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 48px;
    text-align: center;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.payments__methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.payments__method {
    background: #1A1A22;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px 24px;
    min-width: 0;
}

.payments__method-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-align: center;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.payments__method-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payments__method-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.payments__method-item:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: #FF0000;
}

.payments__info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 24px;
}

.payments__info-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    min-width: 0;
}

.payments__info-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #FFFFFF;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.payments__info-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 14px;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}
.support {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A22 0%, #0F0F14 100%);
}

.support__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.support__intro {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 48px;
    text-align: center;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.support__channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.support__channel {
    background: #1A1A22;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
    min-width: 0;
}

.support__channel:hover {
    transform: translateY(-8px);
    border-color: #FF0000;
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.2);
}

.support__channel-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.support__channel-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #FFFFFF;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.support__channel-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 16px;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.support__channel-availability {
    display: inline-block;
    background: rgba(255, 0, 0, 0.2);
    color: #FF0000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.support__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 24px;
}

.support__feature {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    min-width: 0;
}

.support__feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.support__feature-content {
    flex: 1;
    min-width: 0;
}

.support__feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #FFFFFF;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.support__feature-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.faq {
    padding: 80px 0;
    background: #0F0F14;
}

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

.faq__list {
    margin-top: 48px;
    margin-bottom: 48px;
}

.faq__item {
    background: #1A1A22;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq__question {
    width: 100%;
    padding: 24px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 0;
}

.faq__question:hover {
    color: #FF0000;
}

.faq__question span:first-child {
    flex: 1;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.faq__icon {
    font-size: 28px;
    font-weight: 300;
    color: #FF0000;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

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

.faq__item.active .faq__answer {
    max-height: 1000px;
}

.faq__answer p {
    padding: 0 20px 24px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.faq__cta {
    text-align: center;
}

.faq__cta p {
    font-size: 18px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A22 0%, #0F0F14 100%);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-final__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.cta-final__content {
    background: rgba(26, 26, 34, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid #FF0000;
    border-radius: 16px;
    padding: 60px 32px;
    text-align: center;
}

.cta-final__title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 900;
    margin-bottom: 20px;
    color: #FFFFFF;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.cta-final__text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 32px;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.cta-final__bonus {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #FF0000;
    border-radius: 12px;
    padding: 24px 20px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cta-final__bonus-label {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-final__bonus-amount {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 900;
    color: #FF0000;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer {
    background: #0F0F14;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 20px;
}

.footer__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer__brand {
    max-width: 100%;
}

.footer__logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer__logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer__description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 24px;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.footer__apps {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer__app-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    min-width: 0;
}

.footer__app-btn:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: #FF0000;
    transform: translateY(-2px);
}

.footer__app-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.footer__app-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.footer__app-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer__app-name {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 32px;
}

.footer__column {
    min-width: 0;
}

.footer__column-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #FFFFFF;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer__link {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    transition: color 0.3s ease;
    font-size: 14px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer__link:hover {
    color: #FF0000;
}

.footer__payments {
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 32px;
}

.footer__payments-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    color: #FFFFFF;
}

.footer__payment-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer__payment {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer__payment:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: #FF0000;
}

.footer__legal {
    margin-bottom: 24px;
}

.footer__legal-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 12px;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer__certifications {
    display: flex;
    gap: 12px;
}

.footer__cert {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

.catfish {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    max-width: 100%;
}

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

.catfish__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 20px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
    position: relative;
}

.catfish__close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.catfish__close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.catfish__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.catfish__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.catfish__label {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.catfish__amount {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 900;
    color: #FFFFFF;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.catfish__btn {
    flex-shrink: 0;
    background: #FFFFFF;
    color: #FF0000;
    min-width: 120px;
}

.catfish__btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.exit-popup.active {
    display: flex;
}

.exit-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.exit-popup__content {
    position: relative;
    z-index: 1;
    background: #1A1A22;
    border: 3px solid #FF0000;
    border-radius: 16px;
    padding: 48px 32px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: popupSlide 0.3s ease-out;
}

@keyframes popupSlide {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.exit-popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.exit-popup__close:hover {
    background: rgba(255, 0, 0, 0.3);
    transform: rotate(90deg);
}

.exit-popup__title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 900;
    margin-bottom: 24px;
    color: #FFFFFF;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.exit-popup__bonus {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #FF0000;
    border-radius: 12px;
    padding: 20px 16px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.exit-popup__bonus-label {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.exit-popup__bonus-amount {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 900;
    color: #FF0000;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.exit-popup__text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 28px;
    font-size: 16px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (min-width: 768px) {
    .benefits__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .bonuses__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .howto__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .sports__content {
        grid-template-columns: 1fr 1fr;
    }
    
    .casino__content {
        grid-template-columns: 1fr 1fr;
    }
    
    .casino__categories {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .mobile__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .payments__methods {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .support__channels {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .support__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .footer__top {
        grid-template-columns: 1fr 2fr;
    }
    
    .footer__links {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .benefits__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .howto__steps {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .bonuses__card--main {
        grid-template-columns: 1fr 1fr;
    }
    
    .bonuses__card-media {
        border-radius: 12px 0 0 12px;
    }
    
    .mobile__features {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .payments__info {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .support__features {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .catfish__content {
        flex-wrap: nowrap;
    }
}

@media (max-width: 767px) {
    .header__nav {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: rgba(15, 15, 20, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    }
    
    .header__nav.active {
        max-height: 400px;
    }
    
    .header__nav-link {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .header__actions {
        display: none;
    }
    
    .header__burger {
        display: flex;
    }
    
    .header__burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .header__burger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .header__burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero__cta {
        flex-direction: column;
    }
    
    .hero__cta .btn {
        width: 100%;
    }
    
    .howto__cta .btn,
    .mobile__cta .btn {
        width: 100%;
    }
    
    .catfish__content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .catfish__btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .section__title {
        font-size: 24px;
    }
    
    .section__subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .benefits__grid,
    .bonuses__grid,
    .howto__steps,
    .payments__methods,
    .support__channels,
    .mobile__features,
    .casino__categories,
    .support__features,
    .payments__info,
    .footer__links {
        gap: 16px;
    }
    
    .hero__bonus {
        padding: 24px 16px;
    }
    
    .footer__apps {
        flex-direction: column;
    }
    
    .footer__app-btn {
        width: 100%;
    }
}
/* ==================== BRAND STORY SECTION ==================== */
.brand-story {
    background: linear-gradient(135deg, #0f0c29 0%, #1a1433 50%, #2a1b4a 100%);
    padding: 100px 0 120px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.brand-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://via.placeholder.com/1920x1080/1a1433/ffffff?text=N1+Casino+Pattern') repeat;
    opacity: 0.08;
    pointer-events: none;
}

.brand-story__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.brand-story__content {
    max-width: 1100px;
    margin: 0 auto;
}

.section__title {
    font-size: 42px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.section__subtitle {
    font-size: 22px;
    text-align: center;
    color: #c0b8ff;
    margin-bottom: 60px;
    font-weight: 500;
}

.brand-story__text {
    font-size: 18px;
    line-height: 1.75;
    color: #e0d9ff;
    max-width: 980px;
    margin: 0 auto;
}

.brand-story__text p {
    margin-bottom: 28px;
}

.brand-story__text.continuation {
    margin-top: 40px;
}

/* Финальный призыв к действию внутри секции */
.brand-story__final-cta {
    text-align: center;
    margin-top: 70px;
    padding: 50px 40px;
    background: rgba(255, 215, 0, 0.08);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
}

.brand-story__final-text {
    font-size: 24px;
    color: #ffd700;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Адаптивность */
@media (max-width: 992px) {
    .brand-story {
        padding: 80px 0 90px;
    }
    
    .section__title {
        font-size: 36px;
    }
    
    .section__subtitle {
        font-size: 20px;
    }
    
    .brand-story__text {
        font-size: 17px;
    }
}

@media (max-width: 576px) {
    .brand-story {
        padding: 60px 0 70px;
    }
    
    .section__title {
        font-size: 32px;
    }
    
    .brand-story__final-cta {
        padding: 35px 20px;
    }
    
    .brand-story__final-text {
        font-size: 21px;
    }
}
/* ==================== COMPARISON SECTION ==================== */
.comparison-section {
    background: linear-gradient(135deg, #1a1433 0%, #2a1b4a 100%);
    padding: 100px 0;
    color: #ffffff;
}

.comparison-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 60px 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 8px;
}

.stat-text {
    font-size: 17px;
    color: #e0d9ff;
    line-height: 1.4;
}

/* Таблицы */
.comparison-table {
    margin: 50px 0;
}

.table-title {
    font-size: 26px;
    text-align: center;
    margin-bottom: 25px;
    color: #ffd700;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.06);
    border-radius: 14px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 14px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.comparison-table th {
    background: rgba(255, 215, 0, 0.18);
    color: #ffd700;
    font-weight: 700;
}

.n1-row {
    background: rgba(255, 215, 0, 0.15) !important;
    font-weight: 600;
}

.rating {
    color: #ffd700;
    font-size: 20px;
}

.advantage {
    color: #4ade80;
    font-weight: 600;
}

.comparison-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.comparison-footer p {
    max-width: 800px;
    margin: 0 auto 30px;
    color: #c0b8ff;
    font-size: 17px;
}