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

:root {
    --c-bg: #0e0e0e;
    --c-nav: #1b1c1d;
    --c-nav2: #141516;
    --c-red: #e50539;
    --c-red-h: #cc0432;
    --c-green: #28a909;
    --c-green-h: #1f8d06;
    --c-text: #f0f0f0;
    --c-text-muted: #9a9a9a;
    --c-border: #2a2b2d;
    --c-card: #181919;
    --c-card2: #1e1f21;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .55);
    --transition: .22s ease;
}

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

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: var(--c-red-h);
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--c-text);
}

ul, ol {
    padding-left: 1.4em;
}

li {
    margin-bottom: .35em;
}

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

.section {
    padding: 60px 0;
}

.section--sm {
    padding: 36px 0;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: center;
}

.section-subtitle {
    color: var(--c-text-muted);
    text-align: center;
    margin-bottom: 36px;
    font-size: .97rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: .92rem;
    cursor: pointer;
    border: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    text-decoration: none;
    line-height: 1.4;
}

.btn:active {
    transform: scale(.97);
}

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

.btn--red:hover {
    background: var(--c-red-h);
    color: #fff;
    box-shadow: 0 4px 18px rgba(229, 5, 57, .4);
}

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

.btn--green:hover {
    background: var(--c-green-h);
    color: #fff;
    box-shadow: 0 4px 18px rgba(40, 169, 9, .4);
}

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

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

.btn--lg {
    padding: 14px 32px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

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

.btn--pulse {
    animation: btnPulse 2.2s infinite;
}

@keyframes btnPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(40, 169, 9, .5);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(40, 169, 9, 0);
    }
}

.tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    background: rgba(229, 5, 57, .15);
    color: var(--c-red);
    border: 1px solid rgba(229, 5, 57, .3);
}

/* ===== HEADER ===== */
.site-header {
    background: var(--c-nav);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--c-border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .4);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 62px;
    max-width: 1160px;
    margin: 0 auto;
    gap: 12px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-wrap img {
    height: 36px;
    width: auto;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.5px;
}

.logo-text span {
    color: var(--c-red);
}

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    color: #ccc;
    font-size: .85rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

.header-nav a:hover {
    background: rgba(255, 255, 255, .07);
    color: #fff;
}

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

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

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

.online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--c-green);
    animation: blink 1.5s infinite;
    flex-shrink: 0;
}

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

.lang-dropdown {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--c-border);
    color: #fff;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: .82rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: background var(--transition);
    white-space: nowrap;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, .12);
}

.lang-btn svg {
    flex-shrink: 0;
}

.lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--c-nav2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    min-width: 150px;
    box-shadow: var(--shadow);
    z-index: 200;
    overflow: hidden;
}

.lang-menu.open {
    display: block;
}

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    color: #ccc;
    font-size: .85rem;
    transition: background var(--transition);
}

.lang-menu a:hover {
    background: rgba(255, 255, 255, .07);
    color: #fff;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 7px;
    flex-shrink: 0;
}

.burger span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--transition), opacity 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-menu {
    display: none;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-nav);
    z-index: 999;
    padding: 20px;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #ccc;
    font-size: .95rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border);
    transition: background var(--transition), color var(--transition);
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, .07);
    color: #fff;
}

.mobile-menu-btns {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.mobile-menu-btns .btn {
    flex: 1;
    justify-content: center;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--c-bg);
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14, 14, 14, .92) 40%, rgba(14, 14, 14, .55) 100%);
}

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

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #fff;
}

.hero h1 span {
    color: var(--c-red);
}

.hero-desc {
    font-size: 1.05rem;
    color: #bbb;
    margin-bottom: 28px;
    line-height: 1.65;
    max-width: 460px;
}

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

.hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

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

.hero-stat span {
    font-size: .78rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.hero-plane {
    position: absolute;
    right: 5%;
    bottom: 20%;
    z-index: 1;
    animation: planeFly 6s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes planeFly {
    0% {
        transform: translate(0, 0) rotate(-5deg);
    }
    100% {
        transform: translate(30px, -40px) rotate(5deg);
    }
}

/* ===== CONTENT AREA ===== */
.content-wrap {
    padding: 50px 0 20px;
}

/* ===== TABLES ===== */
.table-wrap {
    overflow-x: auto;
    margin-bottom: 32px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 420px;
    background: var(--c-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.info-table th, .info-table td {
    padding: 13px 18px;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
    font-size: .9rem;
}

.info-table th {
    background: var(--c-nav);
    color: var(--c-text-muted);
    font-weight: 600;
    white-space: nowrap;
    width: 40%;
}

.info-table td {
    color: var(--c-text);
    font-weight: 500;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
    border-bottom: none;
}

.info-table tr:hover td {
    background: rgba(255, 255, 255, .03);
}

.td-rtp {
    color: var(--c-green);
    font-weight: 700;
}

.td-red {
    color: var(--c-red);
    font-weight: 700;
}

/* ===== APP BLOCK ===== */
.app-block {
    background: var(--c-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border);
    padding: 36px;
    box-shadow: var(--shadow);
    margin-bottom: 32px;
}

.app-block-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.app-info {
    flex: 1;
    min-width: 280px;
}

.app-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.app-desc {
    color: var(--c-text-muted);
    font-size: .9rem;
    margin-bottom: 20px;
}

.app-dl-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.app-dl-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--c-nav);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.app-dl-btn:hover {
    background: var(--c-nav2);
    border-color: var(--c-red);
    color: #fff;
    transform: translateY(-2px);
}

.app-dl-btn svg {
    flex-shrink: 0;
}

.app-table-wrap {
    flex: 1;
    min-width: 280px;
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--c-nav);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.app-table th, .app-table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
    font-size: .85rem;
}

.app-table th {
    color: var(--c-text-muted);
    font-weight: 600;
    width: 45%;
}

.app-table td {
    color: var(--c-text);
    font-weight: 500;
}

.app-table tr:last-child th, .app-table tr:last-child td {
    border-bottom: none;
}

/* ===== BONUS CARDS ===== */
.bonus-section {
    padding: 50px 0;
}

.bonus-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.bonus-card {
    flex: 1;
    min-width: 280px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow);
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-red), #ff6b35);
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .6);
}

.bonus-casino-name {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--c-text-muted);
    margin-bottom: 8px;
    font-weight: 600;
}

.bonus-amount {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--c-green);
    margin-bottom: 6px;
    line-height: 1.1;
}

.bonus-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.bonus-desc {
    font-size: .82rem;
    color: var(--c-text-muted);
    margin-bottom: 18px;
    line-height: 1.55;
}

.bonus-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.bonus-feat-tag {
    font-size: .72rem;
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--c-border);
    color: #ccc;
    padding: 3px 9px;
    border-radius: 20px;
    font-weight: 500;
}

.bonus-card .btn {
    width: 100%;
    justify-content: center;
}

.bonus-slider {
    display: none;
}

.demo-section {
    padding: 50px 0;
}

.demo-wrap {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

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

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

.demo-iframe-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    min-height: 340px;
}

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

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

.demo-footer-info {
    font-size: .82rem;
    color: var(--c-text-muted);
}

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

.strategies-section {
    padding: 50px 0;
}

.strategies-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.strategy-card {
    flex: 1;
    min-width: 280px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.strategy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .6);
}

.strategy-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background: var(--c-nav);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.strategy-level {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .7px;
    font-weight: 700;
    margin-bottom: 8px;
}

.strategy-level--easy {
    color: var(--c-green);
}

.strategy-level--medium {
    color: #f0a500;
}

.strategy-level--hard {
    color: var(--c-red);
}

.strategy-name {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}

.strategy-desc {
    font-size: .85rem;
    color: var(--c-text-muted);
    line-height: 1.55;
    margin-bottom: 16px;
    flex: 1;
}

.strategy-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.strategy-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.strategy-meta-item span:first-child {
    font-size: .7rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.strategy-meta-item span:last-child {
    font-size: .88rem;
    font-weight: 700;
    color: var(--c-text);
}

.faq-section {
    padding: 50px 0;
}

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

.faq-item {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.open {
    border-color: rgba(229, 5, 57, .4);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: .95rem;
    color: #fff;
    transition: background var(--transition);
    gap: 12px;
    user-select: none;
}

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

.faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(229, 5, 57, .15);
    border: 1px solid rgba(229, 5, 57, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    background: var(--c-red);
    border-color: var(--c-red);
}

.faq-a {
    display: none;
    padding: 0 20px 18px;
    font-size: .9rem;
    color: var(--c-text-muted);
    line-height: 1.65;
}

.faq-item.open .faq-a {
    display: block;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--c-nav);
    border-top: 1px solid var(--c-border);
    padding: 48px 0 0;
    margin-top: 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-logo-wrap {
    margin-bottom: 12px;
}

.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.5px;
}

.footer-logo-text span {
    color: var(--c-red);
}

.footer-tagline {
    font-size: .82rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    max-width: 240px;
}

.footer-col h4 {
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--c-text-muted);
    margin-bottom: 12px;
    font-weight: 700;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
}

.footer-nav-list li {
    margin-bottom: 8px;
}

.footer-nav-list a {
    color: #aaa;
    font-size: .87rem;
    transition: color var(--transition);
}

.footer-nav-list a:hover {
    color: #fff;
}

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

.footer-logo-badge {
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: .72rem;
    font-weight: 700;
    color: #aaa;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.footer-bottom {
    border-top: 1px solid var(--c-border);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright {
    font-size: .78rem;
    color: var(--c-text-muted);
}

.footer-legal {
    font-size: .72rem;
    color: #555;
    max-width: 600px;
    line-height: 1.55;
}


.content-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
    margin-bottom: 32px;
}

.content-block h2 {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}

.content-block h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 20px 0 10px;
    color: #fff;
}

.content-block h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 16px 0 8px;
    color: #eee;
}

.content-block p {
    color: var(--c-text-muted);
    font-size: .93rem;
    margin-bottom: 14px;
    line-height: 1.7;
}

.content-block ul, .content-block ol {
    color: var(--c-text-muted);
    font-size: .93rem;
    margin-bottom: 14px;
}

.content-block li {
    margin-bottom: 6px;
    line-height: 1.6;
}

.content-block a {
    color: var(--c-red);
}

.content-block a:hover {
    color: var(--c-red-h);
}

.content-block strong {
    color: var(--c-text);
}

.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 18px;
    overflow-x: auto;
    display: block;
}

.content-block table th, .content-block table td {
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--c-border);
    font-size: .88rem;
}

.content-block table th {
    background: var(--c-nav);
    color: var(--c-text-muted);
    font-weight: 600;
}

.content-block table td {
    color: var(--c-text);
}

.content-block blockquote {
    border-left: 3px solid var(--c-red);
    padding: 10px 18px;
    background: rgba(229, 5, 57, .07);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 16px;
    color: var(--c-text-muted);
    font-style: italic;
}

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

.content-block img {
    border-radius: var(--radius-sm);
    margin: 12px 0;
    max-width: 100%;
}

.content-block code {
    background: rgba(255, 255, 255, .08);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: .85em;
    color: #f0a500;
}

.content-block pre {
    background: rgba(255, 255, 255, .05);
    padding: 16px;
    border-radius: var(--radius-sm);
    overflow-x: auto;
    margin-bottom: 14px;
}

.author-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--c-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 32px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--c-nav);
    border: 2px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--c-red);
}

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

.author-info p {
    font-size: .8rem;
    color: var(--c-text-muted);
    line-height: 1.55;
    margin: 0;
}

.author-info a {
    color: var(--c-red);
    font-size: .8rem;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--c-red);
    border-radius: 2px;
    margin: 10px auto 32px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    font-size: .8rem;
    color: var(--c-text-muted);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--c-text-muted);
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    color: #555;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.stars {
    color: #f0a500;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.rating-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}

.rating-count {
    font-size: .8rem;
    color: var(--c-text-muted);
}

.wp-block-group {
    display: block;
}

.wp-block-columns {
    display: flex;
    gap: 20px;
}

.wp-block-column {
    flex: 1;
}

.elementor-widget-container {
    display: block;
}

.entry-content {
    display: block;
}

.post-thumbnail {
    display: block;
}

.wp-post-image {
    max-width: 100%;
}

.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: 16px;
}

.alignright {
    float: right;
    margin-left: 16px;
}

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

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

.has-large-font-size {
    font-size: 1.5rem;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: .78rem;
    color: var(--c-text-muted);
}

.size-full {
    max-width: 100%;
    height: auto;
}

.size-large {
    max-width: 100%;
}

.x9f2a {
    display: none;
}

.k7b3c {
    visibility: hidden;
}

.m4n8p {
    pointer-events: none;
}

#bonus, #demo, #strategies, #faq, #app, #review {
    scroll-margin-top: 72px;
}

.fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s ease, transform .5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .header-nav {
        display: none;
    }

    .online-badge {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero-content {
        max-width: 100%;
    }

    .strategies-grid .strategy-card {
        min-width: 240px;
    }

    .bonus-grid {
        display: none;
    }

    .bonus-slider {
        display: block;
    }

    .bonus-slider .bonus-card {
        display: flex !important;
    }

    .app-block-inner {
        flex-direction: column;
    }

    .footer-grid {
        gap: 28px;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 40px 0;
    }

    .hero {
        min-height: 360px;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero-stats {
        gap: 18px;
    }

    .hero-stat strong {
        font-size: 1.15rem;
    }

    .content-block {
        padding: 22px 16px;
    }

    .app-block {
        padding: 22px 16px;
    }

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

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

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

    .bottom-widget {
        flex-direction: column;
        gap: 8px;
        padding: 12px 46px 12px 16px;
    }

    .header-right .btn {
        padding: 7px 13px;
        font-size: .78rem;
    }
}

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

.container.uhfk h1 {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 18px;
}

.container.uhfk h2 {
    font-size: 1.45rem;
    font-weight: 850;
    line-height: 1.2;
    margin: 34px 0 14px;
}

.container.uhfk p {
    color: var(--c-text-muted);
    font-size: .98rem;
    line-height: 1.8;
    margin: 0 0 14px;
}

.container.uhfk ul,
.container.uhfk ol {
    color: var(--c-text-muted);
    margin: 0 0 14px;
}

.container.uhfk li {
    margin: 0 0 8px;
    line-height: 1.7;
}

.container.uhfk a {
    color: var(--c-red);
}

.container.uhfk a:hover {
    color: var(--c-red-h);
}

.container.uhfk strong {
    color: var(--c-text);
}

.container.uhfk em {
    color: #cfcfcf;
}

.container.uhfk blockquote {
    margin: 16px 0;
    padding: 12px 16px;
    border-left: 3px solid var(--c-red);
    background: rgba(229, 5, 57, .07);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--c-text-muted);
}

.container.uhfk hr {
    border: 0;
    border-top: 1px solid var(--c-border);
    margin: 22px 0;
}

.container.uhfk table {
    width: 100%;
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
    margin: 14px 0 18px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
}

.container.uhfk table th,
.container.uhfk table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--c-border);
    font-size: .9rem;
    white-space: nowrap;
}

.container.uhfk table th {
    background: var(--c-nav);
    color: var(--c-text-muted);
    font-weight: 700;
}

.container.uhfk table td {
    color: var(--c-text);
    font-weight: 500;
}

.container.uhfk table tr:last-child th,
.container.uhfk table tr:last-child td {
    border-bottom: 0;
}

@media (max-width: 900px) {
    .container.uhfk {
        max-width: 760px;
    }

    .container.uhfk h1 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .container.uhfk {
        max-width: none;
        padding: 0 16px;
    }

    .container.uhfk h1 {
        font-size: 1.65rem;
        margin-bottom: 14px;
    }

    .container.uhfk h2 {
        font-size: 1.22rem;
        margin: 26px 0 12px;
    }

    .container.uhfk p,
    .container.uhfk ul,
    .container.uhfk ol {
        font-size: .95rem;
        line-height: 1.75;
    }

    .container.uhfk table th,
    .container.uhfk table td {
        padding: 9px 12px;
        font-size: .86rem;
    }
}

.container.uhfk {
    max-width: 980px;
    margin: 0 auto;
    padding: 24px 24px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

@media (max-width: 900px) {
    .container.uhfk {
        max-width: 760px;
        padding: 20px 18px;
    }
}

@media (max-width: 600px) {
    .container.uhfk {
        max-width: none;
        padding: 18px 16px;
        border-radius: var(--radius-md);
    }
}