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

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

:root {
    --c-bg: #0e0e0e;
    --c-nav: #1b1c1d;
    --c-red: #e50539;
    --c-green: #28a909;
    --c-white: #ffffff;
    --c-gray: #8a8a8a;
    --c-gray2: #2a2b2c;
    --c-border: #2e2f30;
    --radius: 12px;
    --radius-sm: 8px;
    --sp: 8px;
    --font: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

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

a:hover {
    opacity: .8;
}

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

.xw7p2 {
    display: none !important;
}

.qz9k4 {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.r3m8x {
    position: absolute;
    left: -9999px;
}

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

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: transform .15s, box-shadow .15s, opacity .2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .4);
    opacity: 1;
}

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

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

.btn--red:hover {
    background: #ff0644;
}

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

.btn--green:hover {
    background: #2dc60a;
}

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

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

.btn--sm {
    padding: 7px 14px;
    font-size: 13px;
}

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

.site-header {
    background: var(--c-nav);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--c-border);
}

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

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

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

.header-logo span {
    font-size: 18px;
    font-weight: 700;
    color: var(--c-white);
    letter-spacing: -.3px;
}

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #c5c5c5;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background .2s, color .2s;
    text-decoration: none;
}

.header-nav a:hover {
    background: rgba(255, 255, 255, .06);
    color: var(--c-white);
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-dropdown {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--c-gray2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 7px 10px;
    color: var(--c-white);
    font-size: 13px;
    cursor: pointer;
    transition: background .2s;
}

.lang-btn:hover {
    background: #333;
}

.lang-btn svg {
    width: 14px;
    height: 14px;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--c-nav);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    min-width: 130px;
    padding: 4px;
    display: none;
    z-index: 9999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .5);
}

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

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 6px;
    color: #c5c5c5;
    font-size: 13px;
    transition: background .15s, color .15s;
    text-decoration: none;
}

.lang-menu a:hover {
    background: rgba(255, 255, 255, .06);
    color: var(--c-white);
}

.flag {
    font-size: 16px;
}

.online-count {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--c-gray);
    white-space: nowrap;
}

.online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--c-green);
    box-shadow: 0 0 6px var(--c-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .4
    }
}

.online-count strong {
    color: var(--c-white);
}

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

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-white);
    border-radius: 2px;
    transition: all .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);
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    top: 61px;
    background: var(--c-nav);
    z-index: 999;
    flex-direction: column;
    padding: 20px 16px;
    gap: 4px;
    overflow-y: auto;
}

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

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    color: #c5c5c5;
    font-size: 15px;
    font-weight: 500;
    transition: background .15s, color .15s;
    text-decoration: none;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, .06);
    color: var(--c-white);
}

.mobile-menu svg {
    width: 16px;
    height: 16px;
}

.mobile-menu-divider {
    height: 1px;
    background: var(--c-border);
    margin: 8px 0;
}

.mobile-menu-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 8px;
}

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

.hero {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slider {
    position: relative;
    width: 100%;
    min-height: 480px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 50%, #0e0e0e 100%);
    opacity: 0;
    transition: opacity .6s ease;
}

.hero-slide.active {
    opacity: 1;
    position: relative;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .25;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 16px;
}

.hero-slide-content h1, .hero-slide-content .h1-like {
    font-size: clamp(26px, 5vw, 46px);
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 16px;
    color: var(--c-white);
}

.hero-slide-content p {
    font-size: 15px;
    color: #c0c0c0;
    margin-bottom: 28px;
    line-height: 1.7;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(229, 5, 57, .15);
    border: 1px solid rgba(229, 5, 57, .3);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #ff4d6d;
    margin-bottom: 14px;
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: all .2s;
    border: none;
}

.hero-dot.active {
    background: var(--c-red);
    width: 24px;
    border-radius: 4px;
}

.section {
    padding: 60px 0;
}

.section + .section {
    padding-top: 0;
}

.section-title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--c-white);
}

.section-subtitle {
    color: var(--c-gray);
    font-size: 14px;
    margin-bottom: 32px;
}

.card {
    background: var(--c-nav);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}

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

.screenshots-grid {
    display: flex;
    gap: 16px;
}

.screenshot-item {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    background: #111;
    border: 1px solid var(--c-border);
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.screenshot-item:hover img {
    transform: scale(1.04);
}

.screenshot-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .85), transparent);
    padding: 20px 12px 10px;
    color: var(--c-white);
    font-size: 13px;
    font-weight: 600;
}

.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: #111;
    border: 1px solid var(--c-border);
}

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

.bonus-cards {
    display: flex;
    gap: 16px;
}

.bonus-card {
    flex: 1;
    background: var(--c-nav);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden;
}

.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(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
}

.bonus-card-logo {
    width: 80px;
    height: 32px;
    object-fit: contain;
    background: #111;
    border-radius: 6px;
    padding: 4px;
}

.bonus-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--c-white);
}

.bonus-amount {
    font-size: 26px;
    font-weight: 700;
    color: var(--c-green);
    line-height: 1;
}

.bonus-desc {
    font-size: 13px;
    color: var(--c-gray);
    flex: 1;
}

.bonus-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(40, 169, 9, .12);
    border: 1px solid rgba(40, 169, 9, .3);
    color: #4de026;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 600;
}

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

.demo-wrap {
    border-radius: var(--radius);
    background: #111;
    border: 1px solid var(--c-border);
}

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

.demo-header span {
    font-size: 14px;
    font-weight: 600;
    color: var(--c-white);
}

.demo-frame {
    position: relative;
    padding-bottom: 62%;
    height: 0;
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--c-white);
    transition: background .15s;
    list-style: none;
    user-select: none;
}

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

.faq-q::marker, .faq-q::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--c-gray2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s, background .2s;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    background: var(--c-red);
}

.faq-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--c-white);
}

.faq-a {
    padding: 0 20px 16px;
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.7;
}

.author-block {
    background: var(--c-nav);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-red), #ff6b35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 4px;
}

.author-role {
    font-size: 12px;
    color: var(--c-red);
    font-weight: 600;
    margin-bottom: 6px;
}

.author-bio {
    font-size: 13px;
    color: var(--c-gray);
    line-height: 1.6;
}

.author-info a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    font-size: 13px;
}

.pros-cons {
    display: flex;
    gap: 16px;
}

.pros, .cons {
    flex: 1;
    background: var(--c-nav);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px;
}

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

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

.pros h3, .cons h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
}

.pros h3 {
    color: var(--c-green);
}

.cons h3 {
    color: var(--c-red);
}

.pros ul, .cons ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pros li, .cons li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #c0c0c0;
}

.pros li::before {
    content: '✓';
    color: var(--c-green);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.cons li::before {
    content: '✗';
    color: var(--c-red);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.info-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.info-table {
    width: 100%;
    min-width: 340px;
    border-collapse: collapse;
    margin: 0 auto;
}

.info-table th, .info-table td {
    text-align: left;
    padding: 11px 16px;
    border: 1px solid var(--c-border);
    font-size: 14px;
}

.info-table th {
    background: var(--c-gray2);
    color: var(--c-gray);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.info-table td {
    background: var(--c-nav);
    color: #d0d0d0;
}

.info-table tr:hover td {
    background: #212223;
}

.info-table td strong {
    color: var(--c-white);
}

.similar-games {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.similar-game-pill {
    background: var(--c-gray2);
    border: 1px solid var(--c-border);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13px;
    color: #c0c0c0;
    transition: background .15s, color .15s;
}

.similar-game-pill:hover {
    background: var(--c-red);
    color: var(--c-white);
    border-color: var(--c-red);
}

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

.review-item {
    background: var(--c-nav);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-ava {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--c-gray2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--c-white);
}

.review-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--c-white);
}

.review-date {
    font-size: 12px;
    color: var(--c-gray);
}

.review-stars {
    color: #f5c518;
    font-size: 14px;
    letter-spacing: 1px;
}

.review-text {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.65;
}

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

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--c-border);
    margin-bottom: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-logo img {
    height: 32px;
    width: auto;
}

.footer-logo span {
    font-size: 17px;
    font-weight: 700;
    color: var(--c-white);
}

.footer-desc {
    font-size: 13px;
    color: var(--c-gray);
    max-width: 260px;
    margin-top: 10px;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--c-white);
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 12px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: var(--c-gray);
    margin-bottom: 8px;
    text-decoration: none;
    transition: color .15s;
}

.footer-col a:hover {
    color: var(--c-white);
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.payment-badge {
    background: var(--c-gray2);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #c0c0c0;
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.trust-badge {
    background: var(--c-gray2);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--c-gray);
    white-space: nowrap;
}

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

.footer-copyright {
    font-size: 12px;
    color: var(--c-gray);
}

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

.footer-provider {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-provider span {
    font-size: 12px;
    color: #555;
}

.footer-provider img {
    height: 22px;
    opacity: .5;
    filter: grayscale(1);
    transition: opacity .2s;
}

.footer-provider img:hover {
    opacity: .8;
}


.content-block {
    padding: 40px 0;
}

.content-html {
    color: #c0c0c0;
    font-size: 15px;
    line-height: 1.75;
}

.content-html h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--c-white);
    margin: 28px 0 12px;
}

.content-html h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--c-white);
    margin: 22px 0 10px;
}

.content-html p {
    margin-bottom: 14px;
}

.content-html ul, .content-html ol {
    padding-left: 24px;
    margin-bottom: 14px;
}

.content-html li {
    margin-bottom: 6px;
}

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

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

.content-html th {
    background: var(--c-gray2);
    padding: 10px 14px;
    border: 1px solid var(--c-border);
    color: var(--c-white);
    text-align: left;
    font-size: 13px;
}

.content-html td {
    padding: 10px 14px;
    border: 1px solid var(--c-border);
    font-size: 14px;
    background: var(--c-nav);
}

.content-html strong {
    color: var(--c-white);
}

.content-html blockquote {
    border-left: 3px solid var(--c-red);
    padding: 10px 16px;
    background: var(--c-nav);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 16px 0;
    font-style: italic;
}

.technical-content {
    padding: 40px 0 60px;
}

.technical-content .tc-inner {
    background: var(--c-nav);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 36px;
}

.technical-content h1 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--c-white);
}

.technical-content h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--c-white);
    margin: 24px 0 10px;
}

.technical-content h3 {
    font-size: 15px;
    font-weight: 600;
    color: #d0d0d0;
    margin: 18px 0 8px;
}

.technical-content p {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 14px;
}

.technical-content ul, .technical-content ol {
    padding-left: 22px;
    margin-bottom: 14px;
}

.technical-content li {
    color: #b0b0b0;
    font-size: 14px;
    margin-bottom: 5px;
}

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

.slider-container {
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform .4s ease;
    will-change: transform;
}

.slider-prev, .slider-next {
    background: var(--c-gray2);
    border: 1px solid var(--c-border);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
    flex-shrink: 0;
}

.slider-prev:hover, .slider-next:hover {
    background: var(--c-red);
    border-color: var(--c-red);
}

.slider-prev svg, .slider-next svg {
    width: 16px;
    height: 16px;
    stroke: var(--c-white);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 14px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 0;
}

.breadcrumb a, .breadcrumb span {
    font-size: 13px;
    color: var(--c-gray);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--c-white);
}

.breadcrumb svg {
    width: 10px;
    height: 10px;
    stroke: #555;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: var(--c-gray2);
    border: 1px solid var(--c-border);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 12px;
    color: var(--c-gray);
}

body {
    padding-bottom: 64px;
}

@media (max-width: 1024px) {
    .bonus-cards {
        flex-wrap: wrap;
    }

    .bonus-card {
        flex: 1 1 calc(50% - 8px);
    }

    .pros-cons {
        flex-direction: column;
    }
}

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

    .burger {
        display: flex;
    }

    .screenshots-grid {
        display: none;
    }

    .screenshots-slider {
        display: block;
    }

    .bonus-cards {
        display: none;
    }

    .bonus-slider {
        display: block;
    }

    .author-block {
        flex-direction: column;
        gap: 12px;
    }

    .footer-top {
        flex-direction: column;
        gap: 24px;
    }

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

    .sticky-widget {
        flex-wrap: wrap;
    }

    .widget-text {
        flex: 1 1 auto;
        min-width: 0;
    }

    .section {
        padding: 40px 0;
    }

    .technical-content .tc-inner {
        padding: 20px 16px;
    }

    .hero-slide-content {
        padding: 40px 16px;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
    }

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

    .bonus-card {
        flex: 1 1 100%;
    }

    .header-right .online-count {
        display: none;
    }

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

.wp-block {
    display: none;
}

.elementor-kit-1 {
    --e-global-color-primary: #e50539;
}

.js-reg {
    cursor: pointer;
}

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

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

.screenshots-slider {
    display: none;
    position: relative;
    overflow: hidden;
}

.bonus-slider {
    display: none;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .screenshots-slider, .bonus-slider {
        display: block;
    }

    .screenshots-slider .slider-track .screenshot-item,
    .bonus-slider .slider-track .bonus-card {
        flex: 0 0 100%;
    }
}

.yhdgf {
    max-width: 980px;
    margin: 48px auto;
    padding: 40px;
    background: linear-gradient(180deg, var(--c-nav), #111);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.yhdgf h1 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 20px;
    color: var(--c-white);
}

.yhdgf h2 {
    font-size: clamp(20px, 3vw, 26px);
    margin: 32px 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--c-border);
    color: var(--c-white);
}

.yhdgf h3 {
    font-size: 18px;
    margin: 24px 0 10px;
    color: var(--c-white);
}

.yhdgf p {
    margin-bottom: 14px;
    color: #b0b0b0;
    font-size: 15px;
    line-height: 1.7;
}

.yhdgf ul {
    margin: 14px 0;
    padding-left: 20px;
}

.yhdgf li {
    margin-bottom: 6px;
    color: #b0b0b0;
    font-size: 15px;
    line-height: 1.6;
}

.yhdgf a {
    color: var(--c-red);
    font-weight: 600;
    word-break: break-all;
    overflow-wrap: anywhere;
}

@media (max-width: 768px) {
    .yhdgf {
        margin: 26px 12px;
        padding: 22px 16px;
    }

    .yhdgf h1 {
        font-size: 22px;
        line-height: 1.3;
    }

    .yhdgf h2 {
        font-size: 18px;
        margin-top: 24px;
    }

    .yhdgf h3 {
        font-size: 16px;
    }

    .yhdgf p,
    .yhdgf li {
        font-size: 14px;
        line-height: 1.65;
    }
}

@media (max-width: 480px) {
    .yhdgf {
        margin: 18px 10px;
        padding: 18px 14px;
    }

    .yhdgf h1 {
        font-size: 20px;
    }

    .yhdgf h2 {
        font-size: 17px;
    }
}