:root {
    --c-bg: #0b0f19;
    --c-nav: #141821;
    --c-red: #ff2e63;
    --c-green: #22c55e;
    --c-text: #e8eaf0;
    --c-text-muted: #8b92a8;
    --c-border: #222840;
    --c-card: #171d2e;
    --c-card2: #1c2235;
    --c-glow-r: rgba(255, 46, 99, .18);
    --c-glow-g: rgba(34, 197, 94, .15);
    --radius: 14px;
    --radius-sm: 8px;
    --transition: .22s ease;
    --font: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    background: var(--c-bg);
    color: var(--c-text);
    font-family: var(--font);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
}

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

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

a:hover {
    color: #ff5c85
}

ul {
    list-style: none
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font)
}

.xz91k2 {
    display: none
}

.wp-block-group {
    display: block
}

.entry-content {
    display: block
}

.elementor-element {
    display: block
}

.woocommerce-notices-wrapper {
    display: none
}

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

.section {
    padding: 70px 0
}

.section--sm {
    padding: 48px 0
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 600;
    line-height: 1;
    transition: all var(--transition);
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none
}

.btn--red {
    background: var(--c-red);
    color: #fff
}

.btn--red:hover {
    background: #e0194f;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--c-glow-r)
}

.btn--green {
    background: var(--c-green);
    color: #0b0f19
}

.btn--green:hover {
    background: #1aad52;
    color: #0b0f19;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--c-glow-g)
}

.btn--outline {
    background: transparent;
    border: 1.5px solid var(--c-border);
    color: var(--c-text)
}

.btn--outline:hover {
    border-color: var(--c-red);
    color: var(--c-red)
}

.btn--lg {
    padding: 15px 36px;
    font-size: 1rem;
    border-radius: var(--radius-sm)
}

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

.btn--full {
    width: 100%
}

.btn--copy {
    background: var(--c-card2);
    border: 1.5px solid var(--c-border);
    color: var(--c-text);
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    font-size: .85rem
}

.btn--copy:hover {
    border-color: var(--c-green);
    color: var(--c-green)
}

.site-header {
    background: var(--c-nav);
    border-bottom: 1px solid var(--c-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .5)
}

.header-inner {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto
}

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

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap
}

.header-nav a {
    color: var(--c-text-muted);
    font-size: .88rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none
}

.header-nav a:hover, .header-nav a.active {
    color: var(--c-text);
    background: rgba(255, 255, 255, .05)
}

.header-nav a svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

.header-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--c-text-muted);
    background: rgba(34, 197, 94, .08);
    border: 1px solid rgba(34, 197, 94, .2);
    border-radius: 20px;
    padding: 4px 10px;
    white-space: nowrap
}

.header-online span.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--c-green);
    animation: pulse 1.8s infinite
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .5;
        transform: scale(.85)
    }
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 24px;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: all var(--transition)
}

.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)
}

.mobile-cta {
    display: none;
    align-items: center;
    gap: 8px
}

.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0b0f19
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/aviatrix-b.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 15, 25, .93) 40%, rgba(11, 15, 25, .5) 100%)
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 80px 0
}

.hero-eyebrow {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--c-red);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px
}

.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--c-red);
    border-radius: 1px
}

.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff
}

.hero h1 em {
    font-style: normal;
    color: var(--c-red)
}

.hero-desc {
    font-size: 1.05rem;
    color: #b8bfd4;
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 520px
}

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

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px
}

.hero-stat {
    text-align: center
}

.hero-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff
}

.hero-stat span {
    font-size: .8rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em
}

.hero-divider {
    width: 1px;
    background: var(--c-border)
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    text-align: center
}

.section-sub {
    font-size: .95rem;
    color: var(--c-text-muted);
    text-align: center;
    margin-bottom: 48px
}

.promo-card {
    background: var(--c-card);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius);
    padding: 32px;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    overflow: hidden
}

.promo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--c-glow-r) 0%, transparent 60%);
    pointer-events: none
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, .12);
    border: 1px solid rgba(34, 197, 94, .3);
    color: var(--c-green);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 18px
}

.promo-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-green);
    animation: pulse 1.8s infinite
}

.promo-code-row {
    display: grid;
    grid-template-columns:1fr auto auto;
    gap: 10px;
    align-items: center;
    margin: 18px 0
}

.promo-code-val {
    background: #0b0f19;
    border: 2px dashed var(--c-red);
    border-radius: var(--radius-sm);
    padding: 14px 22px;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: .12em;
    color: #fff;
    text-align: center
}

.promo-timer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: var(--c-text-muted);
    margin-top: 10px
}

.promo-timer svg {
    color: var(--c-red);
    flex-shrink: 0
}

.promo-note {
    font-size: .82rem;
    color: var(--c-text-muted);
    margin-top: 16px;
    line-height: 1.6
}

.pros-cons {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 24px
}

.pros-cons-col {
    background: var(--c-card);
    border-radius: var(--radius);
    padding: 28px;
    border: 1.5px solid var(--c-border)
}

.pros-cons-col.pros {
    border-top: 3px solid var(--c-green)
}

.pros-cons-col.cons {
    border-top: 3px solid var(--c-red)
}

.pros-cons-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px
}

.pros-cons-head svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0
}

.pros-cons-col.pros .pros-cons-head svg {
    color: var(--c-green)
}

.pros-cons-col.cons .pros-cons-head svg {
    color: var(--c-red)
}

.pros-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--c-border);
    font-size: .92rem;
    line-height: 1.55;
    color: var(--c-text)
}

.pros-cons-list li:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.pros-cons-list li::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    border-radius: 50%;
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center
}

.pros-cons-col.pros .pros-cons-list li::before {
    background-color: rgba(34, 197, 94, .15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%2322c55e' d='M10 3L5 8 2 5'/%3E%3C/svg%3E")
}

.pros-cons-col.cons .pros-cons-list li::before {
    background-color: rgba(255, 46, 99, .12);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23ff2e63' d='M2 2l8 8M10 2l-8 8'/%3E%3C/svg%3E")
}

.bonuses-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

.bonus-card {
    background: var(--c-card);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden
}

.bonus-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px
}

.bonus-card:nth-child(1)::after {
    background: linear-gradient(90deg, #ff2e63, #ff6b8a)
}

.bonus-card:nth-child(2)::after {
    background: linear-gradient(90deg, #22c55e, #4ade80)
}

.bonus-card:nth-child(3)::after {
    background: linear-gradient(90deg, #3b82f6, #60a5fa)
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
    border-color: rgba(255, 46, 99, .3)
}

.bonus-casino-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff
}

.bonus-amount {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--c-green);
    line-height: 1.1
}

.bonus-amount small {
    font-size: .85rem;
    font-weight: 500;
    color: var(--c-text-muted);
    display: block;
    margin-top: 2px
}

.bonus-features {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.bonus-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: var(--c-text-muted)
}

.bonus-feature svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--c-green)
}

.bonus-card .btn {
    margin-top: auto
}

.bonus-label {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--c-red);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.demo-block {
    background: var(--c-card);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius);
}

.demo-header {
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--c-border);
    background: var(--c-nav)
}

.demo-title {
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px
}

.demo-badge {
    font-size: .72rem;
    background: rgba(34, 197, 94, .12);
    color: var(--c-green);
    border: 1px solid rgba(34, 197, 94, .25);
    padding: 3px 9px;
    border-radius: 12px;
    font-weight: 600
}

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

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

.demo-footer {
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    background: var(--c-nav)
}

.demo-info {
    font-size: .83rem;
    color: var(--c-text-muted);
    line-height: 1.5
}

.demo-info strong {
    color: var(--c-text)
}

.strategies-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

.strategy-card {
    background: var(--c-card);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column
}

.strategy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
    border-color: rgba(255, 46, 99, .25)
}

.strategy-img {
    width: 100%;
    height: 160px;
    object-fit: cover
}

.strategy-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.strategy-risk {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 3px 9px;
    border-radius: 12px
}

.strategy-risk.low {
    background: rgba(34, 197, 94, .12);
    color: var(--c-green);
    border: 1px solid rgba(34, 197, 94, .25)
}

.strategy-risk.med {
    background: rgba(234, 179, 8, .12);
    color: #eab308;
    border: 1px solid rgba(234, 179, 8, .25)
}

.strategy-risk.high {
    background: rgba(255, 46, 99, .12);
    color: var(--c-red);
    border: 1px solid rgba(255, 46, 99, .25)
}

.strategy-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff
}

.strategy-desc {
    font-size: .87rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    flex: 1
}

.strategy-card .btn {
    margin-top: auto
}

.author-block {
    background: var(--c-card);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius);
    padding: 36px;
    display: grid;
    grid-template-columns:auto 1fr;
    gap: 32px;
    align-items: start
}

.author-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--c-red);
    flex-shrink: 0
}

.author-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px
}

.author-role {
    font-size: .82rem;
    color: var(--c-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 14px
}

.author-bio {
    font-size: .9rem;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-bottom: 18px
}

.author-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.author-social {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 15px;
    border-radius: var(--radius-sm);
    background: var(--c-card2);
    border: 1px solid var(--c-border);
    font-size: .82rem;
    color: var(--c-text-muted);
    transition: all var(--transition);
    text-decoration: none
}

.author-social:hover {
    border-color: var(--c-red);
    color: var(--c-text)
}

.author-social svg {
    width: 14px;
    height: 14px
}

.site-footer {
    background: var(--c-nav);
    border-top: 1px solid var(--c-border);
    padding: 52px 0 28px
}

.footer-grid {
    display: grid;
    grid-template-columns:auto 1fr auto;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px
}

.footer-logo img {
    height: 34px;
    margin-bottom: 14px
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 20px
}

.footer-nav a {
    font-size: .87rem;
    color: var(--c-text-muted);
    transition: color var(--transition);
    text-decoration: none
}

.footer-nav a:hover {
    color: var(--c-text)
}

.footer-right {
    text-align: right
}

.footer-trust {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.footer-trust-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--c-text-muted);
    margin-bottom: 8px
}

.trust-logos {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap
}

.trust-logo {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: .72rem;
    font-weight: 700;
    color: var(--c-text-muted);
    white-space: nowrap;
    text-decoration: none;
    transition: all var(--transition)
}

.trust-logo:hover {
    border-color: var(--c-text-muted);
    color: var(--c-text)
}

.footer-divider {
    height: 1px;
    background: var(--c-border);
    margin: 28px 0
}

.footer-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap
}

.footer-copy {
    font-size: .8rem;
    color: var(--c-text-muted);
    line-height: 1.7
}

.footer-copy a {
    color: var(--c-text-muted);
    text-decoration: underline
}

.footer-copy a:hover {
    color: var(--c-text)
}

.footer-provider {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .78rem;
    color: var(--c-text-muted)
}

.footer-provider img {
    height: 28px;
    opacity: .7;
    transition: opacity var(--transition)
}

.footer-provider img:hover {
    opacity: 1
}

.legal-text {
    font-size: .75rem;
    color: var(--c-text-muted);
    opacity: .7;
    line-height: 1.7;
    margin-top: 14px;
    max-width: 800px
}


.content-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 2em 0 .7em
}

.content-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 1.6em 0 .6em
}

.content-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #dde1f0;
    margin: 1.4em 0 .5em
}

.content-body p {
    color: var(--c-text-muted);
    margin-bottom: 1em;
    line-height: 1.75
}

.content-body ul, .content-body ol {
    margin: 0 0 1.2em 1.5em;
    color: var(--c-text-muted)
}

.content-body li {
    margin-bottom: .45em;
    line-height: 1.65
}

.content-body ul {
    list-style: disc
}

.content-body ol {
    list-style: decimal
}

.content-body strong {
    color: var(--c-text);
    font-weight: 600
}

.content-body em {
    font-style: italic;
    color: var(--c-text)
}

.content-body a {
    color: var(--c-red);
    text-decoration: underline
}

.content-body a:hover {
    color: #ff5c85
}

.content-body blockquote {
    border-left: 3px solid var(--c-red);
    padding: 12px 20px;
    background: var(--c-card);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.5em 0;
    color: var(--c-text-muted);
    font-style: italic
}

.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    overflow-x: auto;
    display: block
}

.content-body table th {
    background: var(--c-card2);
    color: #fff;
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--c-border);
    font-size: .88rem
}

.content-body table td {
    padding: 11px 16px;
    text-align: left;
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    font-size: .87rem
}

.content-body table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .02)
}

.content-body hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 2em 0
}

.content-body img {
    border-radius: var(--radius-sm);
    max-width: 100%;
    margin: 1em 0
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 860px;
    margin: 0 auto
}

.faq-item {
    background: var(--c-card);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    overflow: hidden
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 22px;
    font-size: .95rem;
    font-weight: 600;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: background var(--transition)
}

.faq-question:hover {
    background: rgba(255, 255, 255, .03)
}

.faq-question svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--c-red);
    transition: transform var(--transition)
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease
}

.faq-item.open .faq-answer {
    max-height: 600px
}

.faq-answer-inner {
    padding: 0 22px 18px;
    font-size: .9rem;
    color: var(--c-text-muted);
    line-height: 1.75;
    border-top: 1px solid var(--c-border)
}

.bonus-slider {
    display: none
}

.wp-content-preloader {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none
}

.wp-caption {
    display: block
}

.wp-post-image {
    display: block
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    word-wrap: normal !important
}

.wp-block-separator {
    display: none
}

.rtl-label {
    display: none
}

.hidden-seo-anchor {
    opacity: 0;
    position: absolute;
    pointer-events: none
}

.animate-fadein {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease
}

.animate-fadein.visible {
    opacity: 1;
    transform: none
}

@media (max-width: 1024px) {
    .bonuses-grid {
        grid-template-columns:repeat(2, 1fr)
    }

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

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

    .footer-right {
        grid-column: span 2
    }
}

@media (max-width: 768px) {
    .header-inner {
        grid-template-columns:auto auto auto;
        gap: 10px;
        padding: 10px 16px
    }

    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--c-nav);
        border-bottom: 1px solid var(--c-border);
        padding: 12px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, .4)
    }

    .header-nav.open {
        display: flex
    }

    .header-nav a {
        width: 100%;
        padding: 11px 14px;
        font-size: .92rem
    }

    .burger {
        display: flex
    }

    .header-actions .btn--green, .header-actions .btn--red {
        display: none
    }

    .mobile-cta {
        display: flex
    }

    .hero-content {
        padding: 60px 0
    }

    .hero h1 {
        font-size: 1.9rem
    }

    .hero-stats {
        gap: 20px
    }

    .pros-cons {
        grid-template-columns:1fr
    }

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

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

    .author-block {
        grid-template-columns:1fr;
        gap: 20px;
        text-align: center
    }

    .author-avatar {
        margin: 0 auto
    }

    .author-socials {
        justify-content: center
    }

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

    .footer-right {
        grid-column: auto;
        text-align: left
    }

    .footer-bottom {
        flex-direction: column;
        gap: 14px
    }

    .promo-code-row {
        grid-template-columns:1fr;
        gap: 10px
    }

    .demo-footer {
        flex-direction: column;
        align-items: flex-start
    }

    .section {
        padding: 48px 0
    }

    .hero-btns {
        gap: 10px
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem
    }

    .hero-stats {
        flex-direction: column;
        gap: 12px
    }

    .hero-divider {
        display: none
    }

    .bonus-card, .strategy-card {
        max-width: 100%
    }
}

.cghd {
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
    padding: 40px 20px 56px;
    color: var(--c-text);
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    box-shadow: 0 10px 36px rgba(0, 0, 0, .28);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.cghd * {
    max-width: 100%;
}

.cghd h1,
.cghd h2,
.cghd h3 {
    color: #fff;
    line-height: 1.2;
    letter-spacing: -.02em;
    overflow-wrap: anywhere;
}

.cghd h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin: 0 0 24px;
}

.cghd h2 {
    font-size: clamp(1.35rem, 2.6vw, 2rem);
    font-weight: 700;
    margin: 34px 0 16px;
}

.cghd h3 {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-weight: 700;
    margin: 24px 0 12px;
}

.cghd p,
.cghd li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--c-text);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.cghd p {
    margin: 0 0 16px;
}

.cghd ul,
.cghd ol {
    margin: 0 0 18px;
    padding-left: 22px;
}

.cghd ul {
    list-style: disc;
}

.cghd ol {
    list-style: decimal;
}

.cghd li {
    margin-bottom: 8px;
}

.cghd li::marker {
    color: var(--c-red);
}

.cghd a {
    color: var(--c-red);
    text-decoration: underline;
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.cghd a:hover {
    color: #ff5c85;
    opacity: 1;
}

.cghd strong {
    color: #fff;
    font-weight: 700;
}

.cghd em {
    color: var(--c-text-muted);
    font-style: italic;
}

.cghd img,
.cghd svg,
.cghd video,
.cghd iframe {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
}

.cghd table {
    width: 100%;
    display: block;
    overflow-x: auto;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    -webkit-overflow-scrolling: touch;
}

.cghd th,
.cghd td {
    padding: 11px 13px;
    border-bottom: 1px solid var(--c-border);
    text-align: left;
    white-space: nowrap;
}

.cghd th {
    background: rgba(255, 46, 99, .1);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.cghd td {
    color: var(--c-text);
    font-size: 14px;
}

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

.cghd blockquote {
    margin: 20px 0;
    padding: 14px 16px;
    border-left: 3px solid var(--c-red);
    background: rgba(255, 46, 99, .06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.cghd blockquote p {
    margin: 0;
    color: var(--c-text);
}

.cghd > ul,
.cghd > ol {
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 18px 18px 18px 34px;
}

.cghd h2 + ul,
.cghd h2 + ol,
.cghd h3 + ul,
.cghd h3 + ol {
    margin-top: 8px;
}

@media (max-width: 991px) {
    .cghd {
        max-width: 100%;
        padding: 30px 18px 44px;
    }

    .cghd h1 {
        margin-bottom: 20px;
    }

    .cghd h2 {
        margin: 28px 0 14px;
    }

    .cghd h3 {
        margin: 20px 0 10px;
    }

    .cghd p,
    .cghd li {
        font-size: 14px;
        line-height: 1.75;
    }
}

@media (max-width: 767px) {
    .cghd {
        padding: 22px 16px 34px;
        border-radius: 12px;
    }

    .cghd h1 {
        font-size: 28px;
        line-height: 1.15;
        margin-bottom: 18px;
    }

    .cghd h2 {
        font-size: 22px;
        line-height: 1.25;
        margin: 24px 0 12px;
    }

    .cghd h3 {
        font-size: 18px;
        line-height: 1.3;
        margin: 18px 0 10px;
    }

    .cghd p,
    .cghd li {
        font-size: 14px;
        line-height: 1.7;
    }

    .cghd ul,
    .cghd ol {
        padding-left: 18px;
    }

    .cghd > ul,
    .cghd > ol {
        padding: 15px 14px 15px 28px;
    }

    .cghd th,
    .cghd td {
        padding: 10px 11px;
        font-size: 13px;
    }

    .cghd blockquote {
        padding: 13px 14px;
    }
}

@media (max-width: 480px) {
    .cghd {
        padding: 18px 12px 28px;
        border-radius: 10px;
    }

    .cghd h1 {
        font-size: 24px;
    }

    .cghd h2 {
        font-size: 20px;
        margin: 22px 0 10px;
    }

    .cghd h3 {
        font-size: 17px;
        margin: 16px 0 10px;
    }

    .cghd p,
    .cghd li {
        font-size: 13px;
        line-height: 1.65;
    }

    .cghd ul,
    .cghd ol {
        padding-left: 16px;
        margin-bottom: 16px;
    }

    .cghd > ul,
    .cghd > ol {
        padding: 13px 12px 13px 24px;
    }

    .cghd li {
        margin-bottom: 7px;
    }

    .cghd table {
        margin: 16px 0;
    }

    .cghd th,
    .cghd td {
        padding: 9px 10px;
        font-size: 12px;
    }
}