@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

html {
    scroll-behavior: smooth;
    background: #292755
}

body {
    font-family: 'Poppins', sans-serif;
    background: #292755;
    color: #e8e6ff;
    line-height: 1.6;
    font-size: 16px;
}

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

a {
    color: #924eff;
    text-decoration: none;
    transition: color .25s ease
}

a:hover {
    color: #57e400
}

button {
    cursor: pointer;
    font-family: 'Poppins', sans-serif
}

.wrapper {
    min-height: 100vh;
    display: grid;
    grid-template-rows:auto 1fr auto
}

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

.box {
    border-radius: 14px
}

.header.box {
    background: #3b407f;
    border-radius: 0
}

.content.box {
    padding: 0
}

.text {
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .9rem;
    border: none;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .35);
    opacity: .92
}

.btn:active {
    transform: translateY(0);
    box-shadow: none
}

.btn--primary {
    background: #57e400;
    color: #1a1a2e
}

.btn--secondary {
    background: #924eff;
    color: #fff
}

.btn--outline {
    background: transparent;
    color: #57e400;
    border: 2px solid #57e400
}

.btn--sm {
    padding: 7px 16px;
    font-size: .8rem
}

.btn--lg {
    padding: 14px 32px;
    font-size: 1rem
}

/* ========== HEADER ========== */
.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    flex-wrap: wrap
}

.header-logo img {
    height: 52px;
    width: auto
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none
}

.header-nav a {
    color: #e8e6ff;
    font-size: .88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color .2s
}

.header-nav a:hover {
    color: #57e400
}

.header-nav svg {
    flex-shrink: 0
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.header-online {
    font-size: .78rem;
    color: #b0addc;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 8px
}

.header-online span.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #57e400;
    border-radius: 50%;
    animation: blink 1.4s infinite
}

@keyframes blink {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .3
    }
}

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #e8e6ff;
    border-radius: 2px;
    transition: transform .3s, opacity .3s
}

.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.burger.active span:nth-child(2) {
    opacity: 0
}

.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

/* ========== HERO ========== */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: #1e1c4a
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .45
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(41, 39, 85, .92) 40%, rgba(87, 228, 0, .08) 100%);
    z-index: 1
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 48px;
    align-items: center
}

.hero-badge {
    display: inline-block;
    background: rgba(146, 78, 255, .25);
    border: 1px solid #924eff;
    color: #c99dff;
    font-size: .78rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: .04em;
    text-transform: uppercase
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    text-wrap: balance
}

.hero-title span {
    color: #57e400
}

.hero-subtitle {
    font-size: 1rem;
    color: #b0addc;
    margin-bottom: 28px;
    line-height: 1.7
}

.hero-promo {
    background: rgba(59, 64, 127, .6);
    border: 1.5px dashed #924eff;
    border-radius: 10px;
    padding: 18px 24px;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.hero-promo-label {
    font-size: .78rem;
    color: #b0addc;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .06em
}

.hero-promo-code {
    font-size: 1.5rem;
    font-weight: 800;
    color: #57e400;
    letter-spacing: .12em;
    font-family: monospace
}

.hero-promo-desc {
    font-size: .82rem;
    color: #c99dff
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center
}

.hero-visual img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    max-height: 340px;
    object-fit: cover
}

/* ========== SECTION COMMONS ========== */
.section {
    padding: 72px 0
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 10px;
    text-wrap: balance
}

.section-subtitle {
    color: #b0addc;
    font-size: .95rem;
    margin-bottom: 40px;
    max-width: 600px
}

.section-header {
    margin-bottom: 40px
}

/* ========== ADVANTAGES ========== */
.advantages-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px
}

.adv-card {
    background: rgba(59, 64, 127, .45);
    border: 1px solid rgba(146, 78, 255, .2);
    border-radius: 14px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .25s, box-shadow .25s
}

.adv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .3)
}

.adv-icon {
    width: 48px;
    height: 48px;
    background: rgba(87, 228, 0, .12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #57e400
}

.adv-title {
    font-size: .95rem;
    font-weight: 700;
    color: #fff
}

.adv-text {
    font-size: .82rem;
    color: #b0addc;
    line-height: 1.6
}

/* ========== MIRRORS TABLE ========== */
.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
    background: rgba(30, 28, 74, .6);
    border-radius: 12px;
    overflow: hidden
}

table thead tr {
    background: rgba(59, 64, 127, .8)
}

table th {
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    color: #c99dff;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    border-bottom: 1px solid rgba(146, 78, 255, .25)
}

table td {
    padding: 13px 18px;
    color: #e8e6ff;
    border-bottom: 1px solid rgba(59, 64, 127, .4)
}

table tr:last-child td {
    border-bottom: none
}

table tr:hover td {
    background: rgba(59, 64, 127, .3)
}

table .status-ok {
    color: #57e400;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px
}

table .status-ok::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #57e400;
    border-radius: 50%
}

.mirror-time {
    font-size: .78rem;
    color: #b0addc;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 6px
}

.mirror-time span {
    color: #57e400;
    font-weight: 600
}

/* ========== APP INFO ========== */
.app-info-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 36px;
    align-items: start
}

.app-download-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px
}

.app-dl-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(59, 64, 127, .5);
    border: 1px solid rgba(146, 78, 255, .3);
    border-radius: 12px;
    padding: 14px 20px;
    text-decoration: none;
    color: #fff;
    transition: background .2s, transform .2s
}

.app-dl-btn:hover {
    background: rgba(87, 228, 0, .12);
    transform: translateX(4px);
    color: #57e400
}

.app-dl-btn svg {
    flex-shrink: 0;
    width: 28px;
    height: 28px
}

.app-dl-info strong {
    display: block;
    font-size: .92rem;
    font-weight: 700
}

.app-dl-info span {
    font-size: .78rem;
    color: #b0addc
}

/* ========== BONUSES ========== */
.bonuses-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 24px
}

.bonus-card {
    background: linear-gradient(145deg, rgba(59, 64, 127, .7), rgba(41, 39, 85, .9));
    border: 1px solid rgba(146, 78, 255, .3);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 100px;
    height: 100px;
    background: rgba(87, 228, 0, .07);
    border-radius: 50%
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .35)
}

.bonus-card--featured {
    border-color: #57e400;
    background: linear-gradient(145deg, rgba(59, 64, 127, .8), rgba(30, 50, 20, .6))
}

.bonus-label {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #57e400;
    color: #1a1a2e;
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase
}

.bonus-icon {
    font-size: 2.4rem;
    filter: drop-shadow(0 0 8px rgba(87, 228, 0, .4))
}

.bonus-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff
}

.bonus-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: #57e400
}

.bonus-desc {
    font-size: .82rem;
    color: #b0addc;
    line-height: 1.65
}

/* ========== SLIDER (mobile bonuses) ========== */
.slider-wrap {
    position: relative;
    overflow: hidden
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform .4s cubic-bezier(.25, .46, .45, .94)
}

.slider-nav {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 18px
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(146, 78, 255, .4);
    border: none;
    cursor: pointer;
    transition: background .2s
}

.slider-dot.active {
    background: #57e400
}

/* ========== DEMO GAME ========== */
.demo-wrap {
    background: rgba(30, 28, 74, .7);
    border: 1px solid rgba(146, 78, 255, .25);
    border-radius: 16px;
}

.demo-controls {
    padding: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    border-bottom: 1px solid rgba(59, 64, 127, .4)
}

.demo-select {
    background: rgba(59, 64, 127, .6);
    border: 1px solid rgba(146, 78, 255, .3);
    color: #e8e6ff;
    font-family: 'Poppins', sans-serif;
    font-size: .88rem;
    padding: 10px 16px;
    border-radius: 8px;
    appearance: none;
    min-width: 220px;
    cursor: pointer
}

.demo-select:focus {
    outline: 2px solid #924eff
}

.demo-iframe-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0
}

.demo-iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none
}

.demo-cta {
    padding: 24px;
    text-align: center;
    background: rgba(59, 64, 127, .3)
}

/* ========== REVIEW CONTENT BLOCK ========== */
.review-content {
    padding: 40px 36px;
    background: rgba(30, 28, 74, .5);
    border: 1px solid rgba(59, 64, 127, .4);
    border-radius: 16px
}

.review-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 32px;
    color: #fff
}

.review-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 24px;
    color: #c99dff
}

.review-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 20px;
    color: #b0addc
}

.review-content p {
    margin-bottom: 16px;
    color: #ccc8f5;
    line-height: 1.75;
    font-size: .95rem
}

.review-content ul, .review-content ol {
    margin: 0 0 16px 22px
}

.review-content li {
    margin-bottom: 8px;
    color: #ccc8f5;
    font-size: .93rem;
    line-height: 1.65
}

.review-content a {
    color: #924eff
}

.review-content a:hover {
    color: #57e400
}

.review-content strong {
    color: #fff;
    font-weight: 600
}

.review-content em {
    color: #c99dff;
    font-style: italic
}

.review-content table {
    margin: 20px 0;
    width: 100%
}

.review-content blockquote {
    border-left: 3px solid #924eff;
    padding: 14px 20px;
    margin: 20px 0;
    background: rgba(59, 64, 127, .3);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #b0addc
}

.author-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 36px;
    padding: 24px;
    background: rgba(59, 64, 127, .35);
    border-radius: 12px;
    border: 1px solid rgba(146, 78, 255, .2)
}

.author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #924eff
}

.author-info-block h4 {
    font-size: .98rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px
}

.author-info-block .author-bio-short {
    font-size: .82rem;
    color: #b0addc;
    line-height: 1.6;
    margin-bottom: 8px
}

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

.author-links a {
    font-size: .78rem;
    color: #924eff;
    border: 1px solid rgba(146, 78, 255, .35);
    padding: 3px 10px;
    border-radius: 6px;
    transition: background .2s
}

.author-links a:hover {
    background: rgba(146, 78, 255, .2);
    color: #c99dff
}

/* ========== REGISTRATION STEPS ========== */
.steps-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    counter-reset: steps
}

.step-card {
    background: rgba(59, 64, 127, .4);
    border: 1px solid rgba(146, 78, 255, .2);
    border-radius: 14px;
    padding: 28px 20px;
    position: relative;
    counter-increment: steps;
    transition: transform .2s
}

.step-card:hover {
    transform: translateY(-3px)
}

.step-card::before {
    content: counter(steps);
    position: absolute;
    top: -14px;
    left: 20px;
    background: #924eff;
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.step-icon {
    color: #57e400;
    margin-bottom: 12px
}

.step-title {
    font-size: .92rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px
}

.step-text {
    font-size: .8rem;
    color: #b0addc;
    line-height: 1.6
}

/* ========== REVIEWS ========== */
.reviews-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px
}

.review-card {
    background: rgba(30, 28, 74, .7);
    border: 1px solid rgba(59, 64, 127, .5);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .2s
}

.review-card:hover {
    transform: translateY(-3px);
    border-color: rgba(146, 78, 255, .4)
}

.review-card-top {
    display: flex;
    align-items: center;
    gap: 14px
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b407f, #924eff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0
}

.review-name {
    font-weight: 600;
    font-size: .9rem;
    color: #fff
}

.review-date {
    font-size: .75rem;
    color: #b0addc
}

.review-stars {
    color: #f5b400;
    font-size: 1rem
}

.review-stars svg {
    vertical-align: middle
}

.review-text {
    font-size: .83rem;
    color: #ccc8f5;
    line-height: 1.7
}

/* REVIEW FORM */
.review-form {
    background: rgba(30, 28, 74, .6);
    border: 1px solid rgba(59, 64, 127, .5);
    border-radius: 16px;
    padding: 36px;
    max-width: 600px
}

.review-form h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px
}

.form-group label {
    font-size: .83rem;
    font-weight: 600;
    color: #b0addc
}

.form-group input, .form-group textarea {
    background: rgba(59, 64, 127, .45);
    border: 1px solid rgba(146, 78, 255, .3);
    color: #e8e6ff;
    font-family: 'Poppins', sans-serif;
    font-size: .88rem;
    padding: 12px 16px;
    border-radius: 8px;
    transition: border-color .2s
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #924eff
}

.form-group textarea {
    min-height: 110px;
    resize: vertical
}

.form-success {
    display: none;
    background: rgba(87, 228, 0, .12);
    border: 1px solid #57e400;
    border-radius: 10px;
    padding: 18px 22px;
    color: #57e400;
    font-weight: 600;
    font-size: .9rem;
    text-align: center;
    margin-top: 16px
}

.form-success.show {
    display: block
}

/* ========== FOOTER ========== */
.site-footer {
    background: #3b407f;
    margin-top: 0;
    padding: 48px 0 24px
}

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

.footer-brand .footer-logo img {
    height: 48px;
    margin-bottom: 16px
}

.footer-brand p {
    font-size: .8rem;
    color: #b0addc;
    line-height: 1.65;
    margin-bottom: 14px
}

.footer-country {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: #b0addc;
    margin-bottom: 14px
}

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(232, 230, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0addc;
    transition: background .2s, color .2s
}

.footer-social a:hover {
    background: #924eff;
    color: #fff
}

.footer-links-group h4 {
    font-size: .82rem;
    font-weight: 700;
    color: #c99dff;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 14px
}

.footer-links-group ul {
    list-style: none
}

.footer-links-group ul li {
    margin-bottom: 8px
}

.footer-links-group ul li a {
    font-size: .82rem;
    color: #b0addc;
    transition: color .2s
}

.footer-links-group ul li a:hover {
    color: #57e400
}

.footer-content-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 24px
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(232, 230, 255, .1);
    margin: 28px 0
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px
}

.footer-logos-label {
    font-size: .75rem;
    color: #b0addc;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 600
}

.footer-logo-badge {
    background: rgba(232, 230, 255, .08);
    border: 1px solid rgba(232, 230, 255, .12);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: .75rem;
    color: #b0addc;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px
}

.footer-legal {
    font-size: .75rem;
    color: #7a77a8;
    line-height: 1.7;
    margin-bottom: 10px
}

.footer-copyright {
    font-size: .78rem;
    color: #7a77a8
}

.footer-email a {
    font-size: .82rem;
    color: #924eff
}

.footer-email a:hover {
    color: #57e400
}

/* ========== PROMO WIDGET ========== */
.promo-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #3b407f;
    border-top: 2px solid #924eff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .4);
    transform: translateY(100%);
    animation: slideUp .6s .8s forwards ease
}

@keyframes slideUp {
    to {
        transform: translateY(0)
    }
}

.pw-label {
    font-size: .78rem;
    color: #b0addc
}

.pw-code {
    font-size: 1.1rem;
    font-weight: 800;
    color: #57e400;
    font-family: monospace;
    letter-spacing: .1em;
    background: rgba(87, 228, 0, .1);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px dashed #57e400
}

.pw-copy {
    background: none;
    border: 1px solid rgba(146, 78, 255, .5);
    color: #924eff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: .78rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background .2s
}

.pw-copy:hover {
    background: rgba(146, 78, 255, .2)
}

.pw-close {
    background: none;
    border: none;
    color: #7a77a8;
    font-size: 1.1rem;
    padding: 0 4px;
    cursor: pointer;
    transition: color .2s;
    margin-left: 6px
}

.pw-close:hover {
    color: #fff
}

/* ========== SECTION BG ACCENTS ========== */
.section--alt {
    background: rgba(30, 28, 74, .5)
}

.section--dark {
    background: rgba(20, 19, 55, .5)
}

/* ========== UTILITIES ========== */
.text-green {
    color: #57e400
}

.text-purple {
    color: #924eff
}

.text-muted {
    color: #b0addc
}

.text-center {
    text-align: center
}

.mt1 {
    margin-top: 8px
}

.mb1 {
    margin-bottom: 8px
}

.mt2 {
    margin-top: 16px
}

.mb2 {
    margin-bottom: 16px
}

.mt3 {
    margin-top: 24px
}

.mb3 {
    margin-bottom: 24px
}

.d-flex {
    display: flex
}

.ai-center {
    align-items: center
}

.gap1 {
    gap: 8px
}

.gap2 {
    gap: 16px
}

.wp-block-spacer {
    height: 20px;
    display: none
}

.elementor-widget-container {
    display: none
}

.x7k29q {
    display: none;
    visibility: hidden
}

.mq48rz::after {
    content: '';
    display: none
}

.z9vw3f {
    pointer-events: none;
    opacity: 0;
    position: absolute
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px
}

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns:1fr
    }

    .hero-visual {
        display: none
    }

    .app-info-grid {
        grid-template-columns:1fr
    }

    .bonuses-grid {
        grid-template-columns:1fr 1fr
    }

    .reviews-grid {
        grid-template-columns:1fr 1fr
    }

    .footer-grid {
        grid-template-columns:1fr
    }

    .footer-content-grid {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: #3b407f;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 0;
        z-index: 999;
        border-top: 1px solid rgba(232, 230, 255, .1)
    }

    .header-nav.open {
        display: flex
    }

    .header-nav li {
        width: 100%;
        border-bottom: 1px solid rgba(232, 230, 255, .08)
    }

    .header-nav li:last-child {
        border-bottom: none
    }

    .header-nav a {
        padding: 12px 0;
        width: 100%;
        font-size: .95rem
    }

    .burger {
        display: flex
    }

    .header-wrap {
        position: relative
    }

    .bonuses-grid {
        grid-template-columns:1fr
    }

    .slider-nav {
        display: flex
    }

    .reviews-grid {
        grid-template-columns:1fr
    }

    .footer-content-grid {
        grid-template-columns:1fr 1fr
    }

    .hero-inner {
        padding: 48px 0
    }

    .review-content {
        padding: 24px 18px
    }

    .review-form {
        padding: 24px 18px
    }

    .steps-grid {
        grid-template-columns:1fr 1fr
    }

    .author-box {
        flex-direction: column
    }

    .promo-widget {
        gap: 10px
    }

    .pw-label {
        display: none
    }
}

@media (max-width: 480px) {
    .footer-content-grid {
        grid-template-columns:1fr
    }

    .steps-grid {
        grid-template-columns:1fr
    }

    .bonuses-grid {
        grid-template-columns:1fr
    }

    .hero-btns {
        flex-direction: column
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.fade-in {
    animation: fadeIn .6s ease forwards
}

.fade-in-up {
    animation: fadeInUp .6s ease forwards
}

.delay-1 {
    animation-delay: .1s
}

.delay-2 {
    animation-delay: .2s
}

.delay-3 {
    animation-delay: .3s
}

.section[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease
}

.section[data-aos].aos-visible {
    opacity: 1;
    transform: translateY(0)
}

#bonus {
    position: relative;
    padding: 84px 0;
    background: radial-gradient(
            circle at 15% 20%,
            rgba(146, 78, 255, .12),
            transparent 34%
    ),
    radial-gradient(
            circle at 85% 75%,
            rgba(87, 228, 0, .08),
            transparent 30%
    ),
    rgba(30, 28, 74, .55);
    overflow: hidden;
}

#bonus .container {
    position: relative;
    z-index: 1;
}

#bonus .section-header {
    max-width: 720px;
    margin: 0 auto 44px;
    text-align: center;
}

#bonus .section-title {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.03em;
}

#bonus .section-subtitle {
    max-width: 650px;
    margin: 0 auto;
    color: #b0addc;
    font-size: 16px;
    line-height: 1.75;
}

#bonusSlider {
    display: block;
    width: 100%;
    min-width: 0;
    overflow: visible;
}

#bonusTrack {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 24px;
    width: 100%;
    transition: none;
}

#bonusTrack .bonus-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    width: 100%;
    min-height: 440px;
    padding: 38px 28px 28px;
    text-align: center;
    background: radial-gradient(
            circle at 100% 0,
            rgba(146, 78, 255, .2),
            transparent 42%
    ),
    linear-gradient(
            155deg,
            rgba(59, 64, 127, .9),
            rgba(35, 33, 82, .98)
    );
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, .25),
    inset 0 1px 0 rgba(255, 255, 255, .05);
    isolation: isolate;
    transition: transform .3s ease,
    border-color .3s ease,
    box-shadow .3s ease;
}

#bonusTrack .bonus-card::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(146, 78, 255, .12);
    pointer-events: none;
}

#bonusTrack .bonus-card::after {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(
            90deg,
            transparent,
            #924eff,
            transparent
    );
    opacity: .75;
}

#bonusTrack .bonus-card:hover {
    transform: translateY(-9px);
    border-color: rgba(146, 78, 255, .55);
    box-shadow: 0 24px 55px rgba(0, 0, 0, .4),
    0 0 30px rgba(146, 78, 255, .12);
}

#bonusTrack .bonus-card--featured {
    background: radial-gradient(
            circle at 100% 0,
            rgba(87, 228, 0, .18),
            transparent 42%
    ),
    linear-gradient(
            155deg,
            rgba(59, 64, 127, .95),
            rgba(28, 55, 35, .95)
    );
    border-color: rgba(87, 228, 0, .55);
    box-shadow: 0 16px 42px rgba(0, 0, 0, .3),
    0 0 30px rgba(87, 228, 0, .1);
}

#bonusTrack .bonus-card--featured::after {
    background: linear-gradient(
            90deg,
            transparent,
            #57e400,
            transparent
    );
}

#bonusTrack .bonus-card--featured:hover {
    border-color: #57e400;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .42),
    0 0 38px rgba(87, 228, 0, .18);
}

#bonusTrack .bonus-label {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 12px;
    background: linear-gradient(135deg, #57e400, #78ff25);
    border-radius: 999px;
    color: #172100;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(87, 228, 0, .25);
}

#bonusTrack .bonus-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    margin-bottom: 4px;
    background: linear-gradient(
            145deg,
            rgba(146, 78, 255, .24),
            rgba(87, 228, 0, .1)
    );
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    font-size: 38px;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08),
    0 12px 30px rgba(0, 0, 0, .2);
}

#bonusTrack .bonus-title {
    position: relative;
    z-index: 1;
    margin-top: 4px;
    color: #fff;
    font-size: 20px;
    font-weight: 750;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

#bonusTrack .bonus-amount {
    position: relative;
    z-index: 1;
    color: #57e400;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.03em;
    text-shadow: 0 0 22px rgba(87, 228, 0, .18);
    overflow-wrap: anywhere;
}

#bonusTrack .bonus-desc {
    position: relative;
    z-index: 1;
    flex: 1;
    margin: 0;
    color: #b9b6df;
    font-size: 14px;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

#bonusTrack .bonus-card .btn {
    position: relative;
    z-index: 1;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    margin-top: 12px !important;
    padding: 12px 20px;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 700;
    white-space: normal;
}

#bonusTrack .bonus-card .btn--primary {
    background: linear-gradient(135deg, #57e400, #76ff21);
    color: #172100;
    box-shadow: 0 10px 24px rgba(87, 228, 0, .2);
}

#bonusTrack .bonus-card .btn--secondary {
    background: linear-gradient(135deg, #924eff, #a966ff);
    color: #fff;
    box-shadow: 0 10px 24px rgba(146, 78, 255, .2);
}

#bonus .slider-nav {
    display: none;
}

@media (max-width: 1024px) and (min-width: 769px) {
    #bonusTrack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #bonusTrack .bonus-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 12px);
        justify-self: center;
    }
}

@media (max-width: 768px) {
    #bonus {
        padding: 56px 0;
    }

    #bonus .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    #bonus .section-header {
        margin-bottom: 30px;
        text-align: left;
    }

    #bonus .section-title {
        font-size: clamp(26px, 8vw, 34px);
    }

    #bonus .section-subtitle {
        font-size: 14px;
        line-height: 1.7;
    }

    #bonusSlider {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        border-radius: 20px;
    }

    #bonusTrack {
        display: flex;
        align-items: stretch;
        gap: 0;
        width: 100%;
        transition: transform .42s cubic-bezier(.4, 0, .2, 1);
        will-change: transform;
    }

    #bonusTrack .bonus-card,
    #bonusTrack .bonus-card:last-child {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        min-height: 430px;
        padding: 34px 22px 24px;
        border-radius: 20px;
    }

    #bonusTrack .bonus-card:hover {
        transform: none;
    }

    #bonusTrack .bonus-icon {
        width: 70px;
        height: 70px;
        font-size: 34px;
    }

    #bonusTrack .bonus-title {
        font-size: 19px;
    }

    #bonusTrack .bonus-amount {
        font-size: 29px;
    }

    #bonusTrack .bonus-desc {
        font-size: 13px;
        line-height: 1.7;
    }

    #bonus .slider-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        margin-top: 20px;
    }

    #bonus .slider-dot {
        width: 9px;
        height: 9px;
        padding: 0;
        background: rgba(255, 255, 255, .25);
        border: 0;
        border-radius: 999px;
        transition: width .25s ease,
        background .25s ease,
        transform .25s ease;
    }

    #bonus .slider-dot.active {
        width: 30px;
        background: #57e400;
        box-shadow: 0 0 14px rgba(87, 228, 0, .4);
    }
}

@media (max-width: 480px) {
    #bonus {
        padding: 46px 0;
    }

    #bonus .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    #bonusTrack .bonus-card,
    #bonusTrack .bonus-card:last-child {
        min-height: 440px;
        padding: 32px 18px 22px;
        border-radius: 17px;
    }

    #bonusTrack .bonus-label {
        top: 12px;
        right: 12px;
        font-size: 9px;
    }

    #bonusTrack .bonus-icon {
        width: 64px;
        height: 64px;
        border-radius: 18px;
        font-size: 31px;
    }

    #bonusTrack .bonus-title {
        font-size: 18px;
    }

    #bonusTrack .bonus-amount {
        font-size: 27px;
    }

    #bonusTrack .bonus-card .btn {
        min-height: 46px;
        padding: 11px 16px;
    }
}

