:root {
    --clr-bg: #03828E;
    --clr-nav: #2B2B43;
    --clr-nav-dark: #1e1e30;
    --clr-cyan: #4FD8E8;
    --clr-cyan-hov: #38c4d4;
    --clr-green: #35DA02;
    --clr-green-hov: #2bbf02;
    --clr-text: #e8f4f5;
    --clr-text-dim: #a8c8cc;
    --clr-text-dark: #1a2a2c;
    --clr-white: #ffffff;
    --clr-card: rgba(255, 255, 255, 0.07);
    --clr-card-border: rgba(79, 216, 232, 0.18);
    --clr-ftr-text: #b0cdd0;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.22);
    --shadow-btn: 0 4px 16px rgba(0, 0, 0, 0.28);
    --transition: all 0.28s cubic-bezier(.4, 0, .2, 1);
    --font-head: 'Fredoka', 'Rubik', sans-serif;
    --font-body: 'Poppins', 'Rubik', sans-serif;
}

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

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

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

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

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

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

.box {
    border-radius: var(--radius-md);
}

.hdr {
    background: var(--clr-nav);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.hdr-box {
    padding: 0;
}

.hdr-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
}

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

.hdr-logo img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    border-radius: 10px;
}

.hdr-logo-text {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-white);
    line-height: 1.25;
    white-space: nowrap;
}

.hdr-logo-text em {
    color: var(--clr-cyan);
    font-style: normal;
}

.hdr-nav-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

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

.hdr-nav__link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--clr-text-dim);
    transition: var(--transition);
    white-space: nowrap;
}

.hdr-nav__link:hover, .hdr-nav__link:focus-visible {
    background: rgba(79, 216, 232, 0.12);
    color: var(--clr-cyan);
}

.hdr-lang-wrap {
    position: relative;
}

.hdr-lang__btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    color: var(--clr-text);
    font-size: 0.82rem;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hdr-lang__btn:hover {
    background: rgba(79, 216, 232, 0.15);
    color: var(--clr-cyan);
}

.hdr-lang__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--clr-nav-dark);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-sm);
    min-width: 160px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: var(--transition);
    z-index: 200;
}

.hdr-lang__dropdown.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.hdr-lang__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 0.84rem;
    color: var(--clr-text-dim);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hdr-lang__item:last-child {
    border-bottom: none;
}

.hdr-lang__item:hover, .hdr-lang__item.active {
    background: rgba(79, 216, 232, 0.1);
    color: var(--clr-cyan);
}

.hdr-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hdr-online {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: rgba(53, 218, 2, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(53, 218, 2, 0.25);
    font-size: 0.75rem;
    color: var(--clr-green);
    white-space: nowrap;
}

.hdr-online__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--clr-green);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    border: 2px solid transparent;
    font-family: var(--font-body);
}

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

.btn--md {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn--lg {
    padding: 13px 28px;
    font-size: 1rem;
}

.btn--cyan {
    background: var(--clr-cyan);
    color: var(--clr-text-dark);
    border-color: var(--clr-cyan);
}

.btn--cyan:hover, .btn--cyan:focus-visible {
    background: var(--clr-cyan-hov);
    border-color: var(--clr-cyan-hov);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 216, 232, 0.4);
}

.btn--green {
    background: var(--clr-green);
    color: var(--clr-text-dark);
    border-color: var(--clr-green);
}

.btn--green:hover, .btn--green:focus-visible {
    background: var(--clr-green-hov);
    border-color: var(--clr-green-hov);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(53, 218, 2, 0.4);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.07);
    width: 38px;
    height: 38px;
    justify-content: center;
    transition: var(--transition);
}

.burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

.hero-block {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 520px;
    display: flex;
    align-items: center;
    margin: 16px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 36, 42, 0.88) 0%, rgba(3, 36, 42, 0.5) 60%, rgba(3, 36, 42, 0.15) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 48px 56px;
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(79, 216, 232, 0.15);
    border: 1px solid var(--clr-cyan);
    color: var(--clr-cyan);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--clr-white);
    line-height: 1.2;
    margin-bottom: 16px;
    text-balance: balance;
}

.hero-highlight {
    color: var(--clr-cyan);
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(232, 244, 245, 0.85);
    margin-bottom: 28px;
    line-height: 1.55;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(79, 216, 232, 0.2);
    width: fit-content;
}

.hs-item {
    padding: 12px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hs-item strong {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-cyan);
    font-family: var(--font-head);
}

.hs-item span {
    font-size: 0.72rem;
    color: var(--clr-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hs-sep {
    width: 1px;
    background: rgba(79, 216, 232, 0.2);
    margin: 8px 0;
    align-self: stretch;
}

.main-content {
    padding: 16px 0 32px;
}

.content.box {
    background: transparent;
}

.game-meta-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: var(--clr-nav);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--clr-card-border);
    margin-bottom: 20px;
}

.gms-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.84rem;
}

.gms-item:last-child {
    border-right: none;
}

.gms-item svg {
    color: var(--clr-cyan);
    flex-shrink: 0;
}

.gms-label {
    color: var(--clr-text-dim);
}

.gms-val {
    font-weight: 600;
    color: var(--clr-white);
}

.gms-val--highlight {
    color: var(--clr-green);
    font-size: 1rem;
}

.main-h1 {
    font-family: var(--font-head);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 24px;
    line-height: 1.25;
    text-balance: balance;
}

.section-block {
    background: var(--clr-nav);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-card-border);
    padding: 40px 36px;
    margin: 0 0 20px;
    box-shadow: var(--shadow-card);
}

.section-hd {
    margin-bottom: 32px;
    text-align: center;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 8px;
    text-balance: balance;
}

.section-sub {
    color: var(--clr-text-dim);
    font-size: 0.95rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.feat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    transition: var(--transition);
}

.feat-card:hover {
    background: rgba(79, 216, 232, 0.08);
    border-color: rgba(79, 216, 232, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.feat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(79, 216, 232, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--clr-cyan);
}

.feat-title {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--clr-white);
    margin-bottom: 10px;
}

.feat-desc {
    font-size: 0.87rem;
    color: var(--clr-text-dim);
    line-height: 1.6;
}

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

.pros-block, .cons-block {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pc-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.pc-title--pros {
    color: var(--clr-green);
}

.pc-title--cons {
    color: #ff7070;
}

.pc-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 0;
    font-size: 0.87rem;
    color: var(--clr-text-dim);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pc-list li:last-child {
    border-bottom: none;
}

.pc-list svg {
    flex-shrink: 0;
}

.winners-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
}

.winners-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.winners-table th {
    background: rgba(79, 216, 232, 0.12);
    color: var(--clr-cyan);
    font-weight: 600;
    text-align: left;
    padding: 13px 16px;
    border-bottom: 2px solid rgba(79, 216, 232, 0.25);
    white-space: nowrap;
}

.winners-table td {
    padding: 11px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--clr-text-dim);
}

.winners-table tbody tr:hover {
    background: rgba(79, 216, 232, 0.05);
}

.winners-table .rank-1 td {
    color: #FFD700;
}

.winners-table .rank-2 td {
    color: #C0C0C0;
}

.winners-table .rank-3 td {
    color: #CD7F32;
}

.win-amount {
    color: var(--clr-green) !important;
    font-weight: 700;
}

.win-multi {
    color: var(--clr-cyan) !important;
    font-weight: 600;
}

.mobile-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.mob-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
}

.mob-table {
    width: 100%;
    min-width: 280px;
    border-collapse: collapse;
    font-size: 0.87rem;
}

.mob-table th {
    background: rgba(255, 255, 255, 0.06);
    color: var(--clr-text-dim);
    font-weight: 600;
    text-align: left;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
    width: 45%;
}

.mob-table td {
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--clr-white);
    font-weight: 500;
}

.mob-dl-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 16px;
}

.mob-dl-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.mob-dl-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.06);
    color: var(--clr-white);
    text-decoration: none;
}

.mob-dl-btn:hover {
    border-color: var(--clr-cyan);
    background: rgba(79, 216, 232, 0.1);
    transform: translateX(4px);
}

.mob-dl-btn--appstore {
    border-color: rgba(79, 216, 232, 0.3);
}

.mob-dl-btn--playmarket {
    border-color: rgba(53, 218, 2, 0.3);
}

.mob-dl-btn--apk {
    border-color: rgba(255, 165, 0, 0.3);
}

.mob-dl-sub {
    display: block;
    font-size: 0.72rem;
    color: var(--clr-text-dim);
}

.mob-dl-store {
    display: block;
    font-size: 1rem;
    font-weight: 700;
}

.mob-dl-note {
    font-size: 0.78rem;
    color: var(--clr-text-dim);
    line-height: 1.5;
}

.demo-tabs {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 20px;
    width: fit-content;
}

.demo-tab {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--clr-text-dim);
    transition: var(--transition);
}

.demo-tab--active, .demo-tab:hover {
    background: var(--clr-cyan);
    color: var(--clr-text-dark);
}

.demo-panel--hidden {
    display: none;
}

.demo-frame-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--clr-card-border);
    background: #000;
    aspect-ratio: 16/9;
    position: relative;
}

.demo-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.demo-footer-note {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--clr-text-dim);
}

.real-play-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-card-border);
    max-width: 520px;
    margin: 0 auto;
}

.rpc-icon {
    color: var(--clr-cyan);
    margin-bottom: 20px;
    opacity: 0.7;
}

.rpc-title {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 12px;
}

.rpc-text {
    color: var(--clr-text-dim);
    font-size: 0.92rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.rpc-perks {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    text-align: left;
    width: 100%;
    max-width: 320px;
}

.rpc-perks li {
    font-size: 0.9rem;
    color: var(--clr-text-dim);
    display: flex;
    align-items: center;
    gap: 8px;
}

.rpc-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
}

.rpc-btn-secondary {
    width: 100%;
    justify-content: center;
}

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

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition);
}

.review-card:hover {
    border-color: rgba(79, 216, 232, 0.35);
    background: rgba(79, 216, 232, 0.05);
}

.rv-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.rv-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-cyan), var(--clr-nav));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--clr-white);
    font-size: 1rem;
    flex-shrink: 0;
}

.rv-meta {
    flex: 1;
}

.rv-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-white);
}

.rv-stars {
    display: flex;
    gap: 2px;
    margin-top: 3px;
}

.rv-date {
    font-size: 0.76rem;
    color: var(--clr-text-dim);
    margin-top: 2px;
}

.rv-text {
    font-size: 0.86rem;
    color: var(--clr-text-dim);
    line-height: 1.6;
}

.author-section {
    display: flex;
    justify-content: flex-start;
}

.author-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--clr-card-border);
    max-width: 640px;
    width: 100%;
}

.author-ava {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-cyan), #2B2B43);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-white);
    flex-shrink: 0;
}

.author-label {
    font-size: 0.75rem;
    color: var(--clr-text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.author-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 8px;
    font-family: var(--font-head);
}

.author-bio {
    font-size: 0.87rem;
    color: var(--clr-text-dim);
    line-height: 1.6;
    margin-bottom: 12px;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--clr-cyan);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.author-link:hover {
    color: var(--clr-cyan-hov);
    gap: 9px;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(79, 216, 232, 0.25);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 17px 20px;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-white);
    font-family: var(--font-body);
    transition: var(--transition);
}

.faq-q:hover {
    color: var(--clr-cyan);
}

.faq-q--open {
    color: var(--clr-cyan);
}

.faq-icon {
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-q--open .faq-icon {
    transform: rotate(180deg);
}

.faq-a {
    padding: 0 20px 18px;
    font-size: 0.9rem;
    color: var(--clr-text-dim);
    line-height: 1.7;
}

.faq-a--hidden {
    display: none;
}

.faq-a p + p {
    margin-top: 10px;
}

.ftr-wrap {
    background: var(--clr-nav-dark);
    border-top: 1px solid rgba(79, 216, 232, 0.15);
    padding: 48px 0 24px;
    margin-top: 16px;
}

.ftr-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 36px;
    margin-bottom: 36px;
}

.ftr-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    text-decoration: none;
}

.ftr-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.ftr-logo-text {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-white);
    line-height: 1.25;
}

.ftr-logo-text em {
    color: var(--clr-cyan);
    font-style: normal;
}

.ftr-desc {
    font-size: 0.82rem;
    color: var(--clr-ftr-text);
    line-height: 1.6;
    margin-bottom: 14px;
}

.ftr-age {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ftr-age__badge {
    background: #ff4444;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 5px;
    letter-spacing: 0.5px;
}

.ftr-age__text {
    font-size: 0.78rem;
    color: var(--clr-ftr-text);
}

.ftr-nav-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--clr-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.ftr-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ftr-nav a {
    font-size: 0.85rem;
    color: var(--clr-ftr-text);
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.4;
}

.ftr-nav a:hover {
    color: var(--clr-cyan);
    padding-left: 4px;
}

.ftr-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 8px;
}

.pay-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
}

.ftr-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: var(--clr-ftr-text);
}

.ftr-provider {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 20px;
}

.ftr-provider__label {
    font-size: 0.82rem;
    color: var(--clr-ftr-text);
}

.ftr-provider__link img {
    width: 110px;
    height: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

.ftr-provider__link:hover img {
    opacity: 1;
}

.ftr-legal {
    font-size: 0.78rem;
    color: rgba(176, 205, 208, 0.6);
    line-height: 1.65;
    margin-bottom: 16px;
}

.ftr-legal a {
    color: var(--clr-cyan);
    opacity: 0.8;
    text-decoration: underline;
}

.ftr-legal a:hover {
    opacity: 1;
}

.ftr-copy {
    font-size: 0.78rem;
    color: rgba(176, 205, 208, 0.45);
    text-align: center;
}

.widget-bonus {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    transition: var(--transition);
    width: calc(100% - 32px);
    max-width: 600px;
}

.widget-bonus.wb-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(20px);
}

.wb-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--clr-nav-dark);
    border: 2px solid var(--clr-green);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(53, 218, 2, 0.2);
}

.wb-text {
    flex: 1;
}

.wb-title {
    display: block;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-white);
}

.wb-sub {
    display: block;
    font-size: 0.82rem;
    color: var(--clr-green);
}

.wb-btn {
    flex-shrink: 0;
    text-decoration: none;
}

.wb-close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--clr-text-dim);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.wb-close:hover {
    background: rgba(255, 100, 100, 0.2);
    color: #ff7070;
}

.tech-page .section-block {
    margin-bottom: 0;
}

.tech-content h2 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    color: var(--clr-cyan);
    margin: 28px 0 12px;
    font-weight: 700;
}

.tech-content h3 {
    font-size: 1.05rem;
    color: var(--clr-white);
    margin: 20px 0 8px;
    font-weight: 600;
}

.tech-content p {
    font-size: 0.9rem;
    color: var(--clr-text-dim);
    line-height: 1.7;
    margin-bottom: 14px;
}

.tech-content ul {
    list-style: none;
    margin-bottom: 14px;
}

.tech-content ul li {
    font-size: 0.9rem;
    color: var(--clr-text-dim);
    padding: 6px 0 6px 18px;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.tech-content ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--clr-cyan);
}

.tech-content a {
    color: var(--clr-cyan);
    text-decoration: underline;
    transition: var(--transition);
}

.tech-content a:hover {
    color: var(--clr-cyan-hov);
}

.tech-content strong {
    color: var(--clr-white);
    font-weight: 600;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    font-size: 0.82rem;
    color: var(--clr-text-dim);
}

.breadcrumbs a {
    color: var(--clr-cyan);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--clr-white);
}

.bc-sep {
    color: rgba(255, 255, 255, 0.3);
}

.entry-content h1 {
    margin-bottom: 24px;
}

.text table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.88rem;
}

.text table th, .text table td {
    padding: 10px 14px;
    text-align: left;
    border: 1px solid rgba(79, 216, 232, 0.2);
}

.text table th {
    background: rgba(79, 216, 232, 0.1);
    color: var(--clr-cyan);
    font-weight: 600;
}

.text table td {
    color: var(--clr-text-dim);
}

.text table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.text p {
    color: var(--clr-text-dim);
    line-height: 1.7;
    margin-bottom: 14px;
}

.text h2 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    color: var(--clr-white);
    margin: 28px 0 14px;
}

.text h3 {
    font-size: 1.1rem;
    color: var(--clr-cyan);
    margin: 22px 0 10px;
}

.text ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 14px;
}

.text ul li {
    color: var(--clr-text-dim);
    padding: 4px 0;
    font-size: 0.9rem;
}

.text a {
    color: var(--clr-cyan);
    text-decoration: underline;
}

.qf3e2b {
    display: none;
}

.wp-content-placeholder-img {
    width: 0;
    height: 0;
    overflow: hidden;
    position: absolute;
}

.eltr-hidden-node {
    visibility: hidden;
    width: 0;
    height: 0;
}

.yoast-breadcrumbs-placeholder {
    display: none;
}

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

    .ftr-top {
        grid-template-columns: 1fr 1fr;
    }

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

    .mobile-content-grid {
        grid-template-columns: 1fr;
    }

    .hdr-nav {
        display: none;
    }

    .hdr-nav-wrap {
        flex: 1;
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    .hdr-inner {
        grid-template-columns: auto 1fr;
    }

    .hdr-nav-wrap {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--clr-nav-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        gap: 4px;
        border-bottom: 1px solid var(--clr-card-border);
        z-index: 99;
    }

    .hdr-nav-wrap.open {
        display: flex;
    }

    .hdr-nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .hdr-nav__link {
        width: 100%;
        padding: 11px 14px;
    }

    .hdr-lang-wrap {
        width: 100%;
    }

    .burger {
        display: flex;
    }

    .hdr-online {
        display: none;
    }

    .hdr-actions {
        gap: 6px;
    }

    .hero-content {
        padding: 32px 20px;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .hs-sep {
        display: none;
    }

    .hs-item {
        padding: 10px 14px;
    }

    .section-block {
        padding: 28px 18px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

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

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

    .ftr-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gms-item {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .wb-inner {
        flex-wrap: wrap;
        gap: 10px;
    }

    .hdr-lang__dropdown {
        right: auto;
        left: 0;
    }
}

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

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

    .demo-tabs {
        width: 100%;
    }

    .demo-tab {
        flex: 1;
        justify-content: center;
    }

    .author-card {
        flex-direction: column;
    }
}

.nopjmd {
    width: 100%;
    max-width: 100%;
    padding: 40px;
    background: linear-gradient(180deg, rgba(43, 43, 67, 0.96) 0%, rgba(30, 30, 48, 0.98) 100%);
    border: 2px solid rgba(79, 216, 232, 0.22);
    border-radius: 28px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.34);
    overflow: hidden;
    position: relative;
}

.nopjmd::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(79, 216, 232, 0.12), transparent 45%);
    pointer-events: none;
}

.nopjmd > * {
    position: relative;
    z-index: 2;
}

.nopjmd h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 28px;
    color: #ffffff;
    font-weight: 800;
    word-break: break-word;
}

.nopjmd h2 {
    font-size: clamp(1.35rem, 3vw, 2rem);
    line-height: 1.3;
    margin-top: 42px;
    margin-bottom: 18px;
    color: #4FD8E8;
    font-weight: 700;
    word-break: break-word;
}

.nopjmd h3 {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-top: 28px;
    margin-bottom: 14px;
    color: #35DA02;
    font-weight: 700;
    word-break: break-word;
}

.nopjmd p {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 18px;
    color: rgba(232, 244, 245, 0.92);
    overflow-wrap: break-word;
}

.nopjmd strong {
    color: #ffffff;
    font-weight: 700;
}

.nopjmd a {
    color: #4FD8E8;
    text-decoration: none;
    overflow-wrap: anywhere;
    word-break: break-word;
    transition: 0.3s ease;
    border-bottom: 1px solid rgba(79, 216, 232, 0.35);
}

.nopjmd a:hover {
    color: #35DA02;
    border-color: #35DA02;
}

.nopjmd ul,
.nopjmd ol {
    padding-left: 22px;
    margin-bottom: 24px;
}

.nopjmd li {
    color: rgba(232, 244, 245, 0.88);
    margin-bottom: 10px;
    line-height: 1.75;
    overflow-wrap: break-word;
}

.nopjmd table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
}

.nopjmd table th {
    background: rgba(79, 216, 232, 0.14);
    color: #4FD8E8;
    padding: 14px 16px;
    text-align: left;
    font-size: 0.95rem;
    border: 1px solid rgba(79, 216, 232, 0.18);
}

.nopjmd table td {
    padding: 14px 16px;
    color: rgba(232, 244, 245, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.nopjmd table tr:hover td {
    background: rgba(79, 216, 232, 0.06);
}

.nopjmd img {
    width: 100%;
    max-width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(79, 216, 232, 0.16);
    margin: 24px 0;
}

.nopjmd blockquote {
    padding: 20px 24px;
    border-left: 4px solid #4FD8E8;
    background: rgba(79, 216, 232, 0.08);
    border-radius: 18px;
    margin: 24px 0;
    color: rgba(232, 244, 245, 0.92);
}

.nopjmd pre {
    width: 100%;
    overflow-x: auto;
    padding: 20px;
    border-radius: 18px;
    background: #171726;
    border: 1px solid rgba(79, 216, 232, 0.14);
}

.nopjmd code {
    color: #4FD8E8;
    font-size: 0.92rem;
}

.nopjmd::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.nopjmd::-webkit-scrollbar-thumb {
    background: #4FD8E8;
    border-radius: 20px;
}

.nopjmd::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.nopjmd-table-scroll {
    width: 100%;
    overflow-x: auto;
    border-radius: 20px;
    margin: 24px 0;
    border: 1px solid rgba(79, 216, 232, 0.14);
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {

    .nopjmd {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .nopjmd h1 {
        font-size: 1.7rem;
        margin-bottom: 22px;
    }

    .nopjmd h2 {
        font-size: 1.25rem;
        margin-top: 32px;
    }

    .nopjmd h3 {
        font-size: 1.08rem;
    }

    .nopjmd p,
    .nopjmd li {
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .nopjmd table {
        min-width: 560px;
    }

    .nopjmd table th,
    .nopjmd table td {
        padding: 12px;
        font-size: 0.84rem;
    }

    .nopjmd blockquote {
        padding: 18px;
    }

    .nopjmd pre {
        padding: 16px;
    }
}

@media (max-width: 480px) {

    .nopjmd {
        padding: 18px 14px;
        border-radius: 18px;
    }

    .nopjmd h1 {
        font-size: 1.45rem;
    }

    .nopjmd h2 {
        font-size: 1.12rem;
    }

    .nopjmd p,
    .nopjmd li {
        font-size: 0.9rem;
    }

    .nopjmd table {
        min-width: 500px;
    }

    .nopjmd img {
        border-radius: 14px;
    }
}

.bbx-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #2B2B43;
    border-bottom: 1px solid rgba(79, 216, 232, 0.18);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
}

.bbx-header__inner {
    width: 100%;
    max-width: 1200px;
    min-height: 68px;
    margin: 0 auto;
    padding: 10px 16px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
}

.bbx-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: #ffffff;
    text-decoration: none;
}

.bbx-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex: 0 0 auto;
    border-radius: 12px;
}

.bbx-logo span {
    font-family: 'Fredoka', 'Rubik', sans-serif;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.05;
    white-space: nowrap;
}

.bbx-logo em {
    display: block;
    font-style: normal;
    color: #4FD8E8;
    font-size: 13px;
}

.bbx-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 0;
}

.bbx-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 13px;
    border-radius: 10px;
    color: #a8c8cc;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.25s ease;
}

.bbx-nav a:hover,
.bbx-nav a.is-active {
    color: #4FD8E8;
    background: rgba(79, 216, 232, 0.12);
}

.bbx-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-width: 0;
}

.bbx-online {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 11px;
    border: 1px solid rgba(53, 218, 2, 0.26);
    border-radius: 999px;
    background: rgba(53, 218, 2, 0.1);
    color: #35DA02;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.bbx-online span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #35DA02;
    box-shadow: 0 0 10px rgba(53, 218, 2, 0.8);
    animation: bbxPulse 1.6s infinite;
}

@keyframes bbxPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.35);
        opacity: 0.55;
    }
}

.bbx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 15px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.25s ease;
}

.bbx-btn--cyan {
    background: #4FD8E8;
    color: #1a2a2c;
}

.bbx-btn--green {
    background: #35DA02;
    color: #1a2a2c;
}

.bbx-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.bbx-burger {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(79, 216, 232, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.bbx-burger span {
    width: 21px;
    height: 2px;
    border-radius: 8px;
    background: #e8f4f5;
    transition: 0.25s ease;
}

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

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

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

body.bbx-menu-open {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .bbx-header__inner {
        grid-template-columns: auto 1fr auto;
    }

    .bbx-nav {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 8px;
        padding: 16px;
        background: #1e1e30;
        border-bottom: 1px solid rgba(79, 216, 232, 0.2);
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
    }

    .bbx-nav.is-open {
        display: flex;
    }

    .bbx-nav a {
        justify-content: flex-start;
        width: 100%;
        padding: 14px 16px;
        font-size: 15px;
        background: rgba(255, 255, 255, 0.04);
    }

    .bbx-burger {
        display: inline-flex;
    }
}

@media (max-width: 680px) {
    .bbx-header__inner {
        min-height: 64px;
        padding: 8px 12px;
        gap: 10px;
    }

    .bbx-nav {
        top: 64px;
    }

    .bbx-logo img {
        width: 42px;
        height: 42px;
    }

    .bbx-logo span {
        font-size: 14px;
    }

    .bbx-logo em {
        font-size: 11px;
    }

    .bbx-online {
        display: none;
    }

    .bbx-btn {
        min-height: 34px;
        padding: 8px 11px;
        font-size: 12px;
    }

    .bbx-burger {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 420px) {
    .bbx-logo span {
        display: none;
    }

    .bbx-actions {
        gap: 6px;
    }

    .bbx-btn {
        padding: 8px 9px;
        font-size: 11px;
    }
}