:root {
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-primary: #D0015B;
    --color-secondary: #F73A04;
    --color-accent: #770966;
    --bg-color: #FFFFFF;
    --surface-color: #F5F5F7;
    --text-color: #333333;
    --text-muted: #555555;
    --dark-bg: #0b0114;
    --dark-surface: #1a0529;
    --dark-text: #e0e0e0;
    --gradient-top: linear-gradient(to right, #640275, #F93C02);
    --font-family: 'Helvetica Neue', Arial, sans-serif;
    --transition: all 0.3s ease;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-wrap: anywhere;
    word-break: break-word;
    -webkit-font-smoothing: antialiased;
}

*, *::before, *::after {
    box-sizing: border-box;
    min-width: 0;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-black);
    margin-top: 0;
    line-height: 1.2;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-secondary);
}

p {
    margin-top: 0;
    margin-bottom: 16px;
}

strong {
    color: var(--color-black);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

.text-block {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-muted);
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-margin {
    margin-bottom: 32px;
}

.mt-margin {
    margin-top: 32px;
}

.mt-small {
    margin-top: 16px;
}

.mediaCard {
    border-radius: none;
    border: none;
    overflow: hidden;
    background-color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.mediaCard a {
    display: block;
    width: 100%;
}

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

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 12px 24px;
    font-weight: 900;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    font-size: 16px;
}

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

.btn--primary {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    color: var(--color-white);
    border: 2px solid transparent;
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(247, 58, 4, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn--ghost:hover {
    background: rgba(208, 1, 91, 0.1);
    box-shadow: 0 6px 20px rgba(208, 1, 91, 0.2);
}

.header .btn--ghost, .hero .btn--ghost {
    color: var(--color-white);
    border-color: var(--color-white);
}

.header .btn--ghost:hover, .hero .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

@media (max-width: 767px) {
    .full-width-mobile {
        width: 100%;
        display: flex;
    }
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--gradient-top);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.header__logo-link {
    display: block;
    flex-shrink: 0;
}

.header__logo {
    height: 44px;
    width: auto;
    max-width: 100%;
    display: block;
}

.header__nav {
    flex-grow: 1;
    margin: 0 24px;
}

.header__nav-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
    justify-content: center;
}

.header__nav-link {
    color: var(--color-white);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.header__nav-link:hover {
    color: var(--color-black);
    text-shadow: none;
}

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

.header__burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.header__burger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    transition: var(--transition);
}

@media (max-width: 991px) {
    .header__nav {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 4px;
    }
    .header__nav-list {
        justify-content: flex-start;
    }
    .header__actions {
        display: none;
    }
}

@media (max-width: 767px) {
    .header__nav {
        display: none;
        width: 100%;
        margin: 16px 0 0 0;
        overflow-x: visible;
        white-space: normal;
    }
    .header__nav.is-active {
        display: block;
    }
    .header__nav-list {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .header__container {
        flex-wrap: wrap;
    }
    .header__burger {
        display: flex;
    }
    .header__burger.is-active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .header__burger.is-active span:nth-child(2) {
        opacity: 0;
    }
    .header__burger.is-active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .header__actions {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 16px;
    }
    .header__actions.is-active {
        display: flex;
    }
}

section {
    padding: 60px 0;
}

section:nth-child(even) {
    background-color: var(--surface-color);
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--color-black);
    font-weight: 900;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    section {
        padding: 40px 0;
    }
    .section-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
}

.hero {
    padding: 0 0 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--gradient-top);
}

.hero__image-wrapper {
    width: 100%;
    border: none;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
}

.hero__bg-img {
    width: 100%;
    max-height: 50vh;
    object-fit: cover;
}

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

.hero__bonus-text {
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 900;
    color: var(--color-white);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin-bottom: 32px;
    line-height: 1.1;
    text-transform: uppercase;
}

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

.hero__btn {
    font-size: 18px;
    padding: 16px 32px;
}

@media (max-width: 767px) {
    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero__btn {
        width: 100%;
    }
    .hero__content {
        padding: 24px 16px;
    }
}

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

.faq__item {
    background-color: var(--color-white);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq__item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-black);
}

.faq__item p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.final-cta {
    background: linear-gradient(180deg, var(--surface-color), var(--bg-color));
}

.final-cta__text {
    font-size: 18px;
}

.footer {
    background-color: var(--dark-bg);
    padding: 60px 0 20px 0;
    border-top: 2px solid var(--color-accent);
}

.footer__top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    justify-content: space-between;
}

.footer__brand {
    flex: 1 1 300px;
}

.footer__logo {
    height: 50px;
    margin-bottom: 16px;
    max-width: 100%;
    object-fit: contain;
}

.footer__brand-desc {
    color: var(--dark-text);
    font-size: 14px;
    opacity: 0.8;
}

.footer__links {
    flex: 2 1 500px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.footer__links-col h4 {
    color: var(--color-white);
    margin-bottom: 16px;
    font-size: 16px;
    text-transform: uppercase;
}

.footer__links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links-col li {
    margin-bottom: 8px;
}

.footer__links-col a {
    color: var(--dark-text);
    font-size: 14px;
    opacity: 0.8;
}

.footer__links-col a:hover {
    color: var(--color-primary);
    opacity: 1;
}

.footer__providers, .footer__license {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.footer__bottom {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

@media (max-width: 767px) {
    .footer__links {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .footer__top {
        flex-direction: column;
    }
}

.catfish {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-surface);
    border-top: 2px solid var(--color-primary);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.8);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.catfish.is-visible {
    transform: translateY(0);
}

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

.catfish__text {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-white);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}

.catfish__btn {
    flex-shrink: 0;
    min-height: 44px;
    padding: 8px 16px;
    font-size: 14px;
}

.catfish__close {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 28px;
    cursor: pointer;
    padding: 0 8px;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .catfish__container {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        padding-top: 24px;
    }
    .catfish__text {
        width: 100%;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        font-size: 16px;
    }
    .catfish__close {
        position: absolute;
        top: 4px;
        right: 4px;
    }
}

.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.exit-popup.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.exit-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.exit-popup__content {
    position: relative;
    background-color: var(--dark-surface);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--color-primary);
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.exit-popup__close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
}

.exit-popup__title {
    font-size: 28px;
    color: var(--color-secondary);
    margin-bottom: 16px;
    font-weight: 900;
    text-transform: uppercase;
}

.exit-popup__desc {
    color: var(--color-white);
    margin-bottom: 24px;
    font-size: 16px;
}

@media (max-width: 480px) {
    .exit-popup__content {
        padding: 32px 20px;
    }
    .exit-popup__title {
        font-size: 24px;
    }
}