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

:root {
    --c-bg: #15161a;
    --c-header: #16171b;
    --c-primary: #13ca90;
    --c-secondary: #3d18a4;
    --c-text: #e8eaf0;
    --c-text-muted: #9499a8;
    --c-border: #2a2b33;
    --c-card: #1c1d23;
    --c-card-hover: #22232c;
    --c-primary-dark: #0fa876;
    --c-secondary-dark: #2e1280;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .35);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, .45);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, .55);
    --transition: .25s ease;
    --font: 'Satoshi', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    background: var(--c-bg);
    color: var(--c-text);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden
}

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

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

a:hover {
    color: var(--c-primary)
}

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

h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem)
}

h2 {
    font-size: clamp(1.4rem, 3vw, 2rem)
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem)
}

p {
    margin-bottom: 1rem;
    line-height: 1.65
}

ul, ol {
    padding-left: 1.4rem;
    margin-bottom: 1rem
}

li {
    margin-bottom: .4rem;
    line-height: 1.6
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.2rem
}

th, td {
    text-align: left;
    padding: .75rem 1rem;
    border: 1px solid var(--c-border);
    font-size: .93rem
}

th {
    background: var(--c-header);
    color: var(--c-text);
    font-weight: 600
}

tr:nth-child(even) td {
    background: rgba(255, 255, 255, .03)
}

tr:hover td {
    background: rgba(255, 255, 255, .05)
}

.f8x2k9 {
    display: none
}

.wp-embed-responsive {
    position: relative
}

.widget_recent_entries {
    list-style: none;
    padding: 0
}

.elementor-hidden {
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    left: -9999px
}

.wp-block-spacer {
    height: 0 !important;
    overflow: hidden;
    display: none
}

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

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

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.box {
    padding: 0
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .6rem 1.35rem;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-weight: 600;
    font-size: .92rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
    line-height: 1.4
}

.btn--primary {
    background: var(--c-primary);
    color: #0a0f0d
}

.btn--primary:hover {
    background: var(--c-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(19, 202, 144, .35);
    color: #0a0f0d
}

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

.btn--secondary:hover {
    background: var(--c-secondary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(61, 24, 164, .4);
    color: #fff
}

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

.btn--outline:hover {
    background: var(--c-primary);
    color: #0a0f0d
}

.btn--lg {
    padding: .85rem 2rem;
    font-size: 1rem;
    border-radius: var(--radius-md)
}

.btn--sm {
    padding: .4rem .9rem;
    font-size: .82rem
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .8rem 0;
    min-height: 68px
}

.header-logo {
    flex-shrink: 0
}

.header-logo img {
    height: 26px;
    width: auto;
    object-fit: contain
}

.header-nav {
    display: flex;
    align-items: center;
    gap: .25rem;
    list-style: none;
    flex: 1;
    justify-content: center
}

.header-nav a {
    display: flex;
    align-items: center;
    gap: .35rem;
    color: var(--c-text-muted);
    padding: .5rem .75rem;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 500;
    transition: all var(--transition)
}

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

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

.header-buttons {
    display: flex;
    align-items: center;
    gap: .55rem;
    flex-shrink: 0
}

.online-count {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--c-text-muted);
    font-size: .82rem;
    padding: .35rem .75rem;
    background: rgba(19, 202, 144, .08);
    border: 1px solid rgba(19, 202, 144, .18);
    border-radius: 50px;
    white-space: nowrap
}

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

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

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

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

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

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

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/img/hero-true.png');
    background-size: cover;
    background-position: center;
    filter: brightness(.35)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(21, 22, 26, .92) 40%, rgba(19, 202, 144, .08) 100%)
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
    width: 100%
}

.hero-content {
    max-width: 640px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(19, 202, 144, .12);
    border: 1px solid rgba(19, 202, 144, .28);
    color: var(--c-primary);
    border-radius: 50px;
    padding: .35rem 1rem;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    letter-spacing: .03em;
    text-transform: uppercase
}

.hero h1 {
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .5)
}

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

.hero-desc {
    color: rgba(232, 234, 240, .8);
    font-size: 1.05rem;
    margin-bottom: 1.8rem;
    max-width: 520px;
    line-height: 1.65
}

.hero-promo {
    background: rgba(61, 24, 164, .15);
    border: 1.5px dashed rgba(61, 24, 164, .5);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.4rem;
    margin-bottom: 1.8rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap
}

.hero-promo__label {
    color: var(--c-text-muted);
    font-size: .85rem;
    font-weight: 500
}

.hero-promo__code {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--c-primary);
    letter-spacing: .06em;
    font-family: monospace
}

.hero-promo__copy {
    background: none;
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    padding: .35rem .75rem;
    border-radius: var(--radius-sm);
    font-size: .8rem;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font)
}

.hero-promo__copy:hover {
    border-color: var(--c-primary);
    color: var(--c-primary)
}

.hero-actions {
    display: flex;
    gap: .9rem;
    flex-wrap: wrap;
    align-items: center
}

.hero-bonus {
    color: var(--c-text-muted);
    font-size: .88rem;
    margin-top: .8rem
}

.hero-bonus strong {
    color: var(--c-primary)
}

.section {
    padding: 3.5rem 0
}

.section--alt {
    background: rgba(255, 255, 255, .018)
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem
}

.section-header h2 {
    margin-bottom: .6rem
}

.section-header p {
    color: var(--c-text-muted);
    max-width: 560px;
    margin: 0 auto
}

.section-tag {
    display: inline-block;
    background: rgba(19, 202, 144, .1);
    color: var(--c-primary);
    border-radius: 50px;
    padding: .25rem .9rem;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: .6rem
}

.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem;
    justify-content: center
}

.adv-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.4rem;
    flex: 1 1 240px;
    max-width: 300px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden
}

.adv-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(19, 202, 144, .05), transparent);
    opacity: 0;
    transition: opacity var(--transition)
}

.adv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(19, 202, 144, .25)
}

.adv-card:hover::before {
    opacity: 1
}

.adv-icon {
    width: 48px;
    height: 48px;
    background: rgba(19, 202, 144, .12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem
}

.adv-icon svg {
    width: 24px;
    height: 24px;
    color: var(--c-primary)
}

.adv-card h3 {
    font-size: 1rem;
    margin-bottom: .45rem;
    color: var(--c-text)
}

.adv-card p {
    color: var(--c-text-muted);
    font-size: .88rem;
    margin: 0;
    line-height: 1.55
}

.mirrors-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border)
}

.mirrors-table-wrap table {
    margin: 0;
    border: none
}

.mirrors-table-wrap th, .mirrors-table-wrap td {
    border-left: none;
    border-right: none;
    border-color: var(--c-border)
}

.mirrors-table-wrap th:first-child, .mirrors-table-wrap td:first-child {
    border-left: none
}

.mirrors-table-wrap th:last-child, .mirrors-table-wrap td:last-child {
    border-right: none
}

.mirror-status {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: #13ca90;
    font-size: .85rem;
    font-weight: 600
}

.mirror-status::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #13ca90;
    border-radius: 50%;
    animation: pulse 1.8s infinite
}

.mirror-ts {
    color: var(--c-text-muted);
    font-size: .8rem;
    margin-top: .3rem
}

.app-section-inner {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    flex-wrap: wrap
}

.app-info {
    flex: 1 1 340px
}

.app-info-table {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--c-border);
    margin-bottom: 1.4rem
}

.app-info-table table {
    margin: 0;
    border: none
}

.app-info-table th, .app-info-table td {
    border: none;
    border-bottom: 1px solid var(--c-border)
}

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

.app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.2rem
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    background: var(--c-card);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: .7rem 1.2rem;
    transition: all var(--transition);
    cursor: pointer;
    color: var(--c-text);
    text-decoration: none
}

.app-badge:hover {
    border-color: var(--c-primary);
    color: var(--c-text);
    background: var(--c-card-hover)
}

.app-badge svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    color: var(--c-primary)
}

.app-badge-text {
    display: flex;
    flex-direction: column;
    gap: .1rem
}

.app-badge-text small {
    color: var(--c-text-muted);
    font-size: .72rem
}

.app-badge-text strong {
    font-size: .92rem;
    font-weight: 600
}

.demo-section-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.game-tabs {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    margin-bottom: .5rem
}

.game-tab {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    padding: .5rem 1.1rem;
    border-radius: 50px;
    font-size: .85rem;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font)
}

.game-tab.active, .game-tab:hover {
    background: var(--c-secondary);
    border-color: var(--c-secondary);
    color: #fff
}

.demo-iframe-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border);
    background: #0e0f12
}

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

.demo-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1.2rem 1.5rem;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg)
}

.demo-cta p {
    margin: 0;
    color: var(--c-text-muted);
    font-size: .92rem
}

.review-content {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative
}

.author-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.4rem;
    background: rgba(19, 202, 144, .05);
    border: 1px solid rgba(19, 202, 144, .15);
    border-radius: var(--radius-lg);
    margin-bottom: 2rem
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(61, 24, 164, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--c-primary);
    flex-shrink: 0;
    border: 2px solid rgba(19, 202, 144, .25)
}

.author-info h4 {
    margin: 0 0 .2rem;
    font-size: 1rem
}

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

.author-links {
    display: flex;
    gap: .6rem;
    margin-top: .5rem;
    flex-wrap: wrap
}

.author-links a {
    color: var(--c-secondary);
    font-size: .8rem;
    display: flex;
    align-items: center;
    gap: .3rem
}

.author-links a:hover {
    color: var(--c-primary)
}

.review-body {
    color: var(--c-text);
    line-height: 1.7
}

.review-body h2, .review-body h3, .review-body h4 {
    color: var(--c-text);
    margin: 1.6rem 0 .7rem
}

.review-body p {
    margin-bottom: 1rem;
    color: rgba(232, 234, 240, .88)
}

.review-body ul, .review-body ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem
}

.review-body li {
    margin-bottom: .5rem;
    color: rgba(232, 234, 240, .85)
}

.review-body a {
    color: var(--c-secondary)
}

.review-body a:hover {
    color: var(--c-primary)
}

.review-body table {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--c-border)
}

.review-body table th {
    background: var(--c-header)
}

.review-body strong, .review-body b {
    color: #fff;
    font-weight: 600
}

.review-body em, .review-body i {
    color: var(--c-text-muted)
}

.review-body blockquote {
    border-left: 3px solid var(--c-primary);
    padding: .8rem 1.2rem;
    margin: 1.2rem 0;
    background: rgba(19, 202, 144, .05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--c-text-muted)
}

.review-body hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 1.5rem 0
}

.review-body img {
    border-radius: var(--radius-md);
    max-width: 100%
}

.review-body code {
    background: var(--c-header);
    padding: .15rem .45rem;
    border-radius: 4px;
    font-size: .85em;
    color: var(--c-primary)
}

.review-body pre {
    background: var(--c-header);
    padding: 1rem;
    border-radius: var(--radius-sm);
    overflow-x: auto;
    margin-bottom: 1rem
}

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

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

.faq-item.open {
    border-color: rgba(19, 202, 144, .3)
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: .97rem;
    color: var(--c-text);
    user-select: none
}

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

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

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

.faq-item.open .faq-a {
    max-height: 400px
}

.faq-a-inner {
    padding: 0 1.5rem 1.2rem;
    color: var(--c-text-muted);
    font-size: .93rem;
    line-height: 1.65
}

.comments-inner {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: flex-start
}

.comments-list {
    flex: 1 1 400px
}

.comment-form-wrap {
    flex: 1 1 340px
}

.comment-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 1.3rem;
    margin-bottom: .9rem
}

.comment-card-head {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .6rem
}

.comment-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(61, 24, 164, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    color: var(--c-primary);
    flex-shrink: 0
}

.comment-meta strong {
    display: block;
    font-size: .9rem;
    color: var(--c-text)
}

.comment-meta span {
    color: var(--c-text-muted);
    font-size: .8rem
}

.comment-stars {
    display: flex;
    gap: 2px;
    margin-bottom: .45rem
}

.comment-stars svg {
    width: 14px;
    height: 14px;
    color: #f5a623
}

.comment-card p {
    margin: 0;
    font-size: .9rem;
    color: rgba(232, 234, 240, .85);
    line-height: 1.55
}

.comment-form {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    padding: 1.8rem
}

.comment-form h3 {
    margin-bottom: 1.2rem;
    font-size: 1.05rem
}

.form-group {
    margin-bottom: 1rem
}

.form-group label {
    display: block;
    margin-bottom: .4rem;
    font-size: .87rem;
    color: var(--c-text-muted);
    font-weight: 500
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    background: var(--c-bg);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: .65rem 1rem;
    color: var(--c-text);
    font-family: var(--font);
    font-size: .92rem;
    transition: border-color var(--transition);
    outline: none;
    -webkit-appearance: none
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--c-primary)
}

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

.form-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: .25rem;
    margin-bottom: .3rem
}

.form-stars input {
    display: none
}

.form-stars label {
    cursor: pointer;
    font-size: 1.4rem;
    color: var(--c-border);
    transition: color var(--transition)
}

.form-stars input:checked ~ label, .form-stars label:hover, .form-stars label:hover ~ label {
    color: #f5a623
}

.form-success {
    background: rgba(19, 202, 144, .1);
    border: 1px solid rgba(19, 202, 144, .3);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.5rem;
    text-align: center;
    color: var(--c-primary);
    display: none
}

.form-success.show {
    display: block
}

.site-footer {
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    padding: 3rem 0 1.5rem;
    margin-top: auto
}

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

.footer-brand {
    flex: 1 1 260px
}

.footer-brand img {
    height: 40px;
    width: auto;
    margin-bottom: 1rem
}

.footer-brand p {
    color: var(--c-text-muted);
    font-size: .87rem;
    line-height: 1.6;
    max-width: 280px
}

.footer-flag {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: .8rem;
    font-size: .83rem;
    color: var(--c-text-muted)
}

.footer-socials {
    display: flex;
    gap: .55rem;
    margin-top: 1rem;
    flex-wrap: wrap
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    color: var(--c-text-muted)
}

.footer-socials a:hover {
    background: var(--c-secondary);
    color: #fff
}

.footer-socials svg {
    width: 17px;
    height: 17px
}

.footer-nav-col {
    flex: 0 1 auto
}

.footer-nav-col h4 {
    color: var(--c-text);
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: .9rem;
    text-transform: uppercase;
    letter-spacing: .05em
}

.footer-nav-col ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem
}

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

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

.footer-divider {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 1.5rem 0
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem
}

.footer-logo-group {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    align-items: center
}

.footer-logo-group-label {
    color: var(--c-text-muted);
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-right: .5rem
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: .35rem .7rem;
    font-size: .78rem;
    color: var(--c-text-muted);
    font-weight: 500
}

.footer-badge svg {
    width: 15px;
    height: 15px;
    color: var(--c-primary);
    flex-shrink: 0
}

.footer-responsible {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    align-items: center;
    padding: 1rem 1.4rem;
    background: rgba(255, 255, 255, .03);
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border);
    margin-bottom: 1.5rem
}

.footer-responsible-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: .3rem .65rem;
    font-size: .75rem;
    color: var(--c-text-muted);
    font-weight: 600
}

.footer-responsible-badge svg {
    width: 14px;
    height: 14px
}

.footer-legal {
    color: var(--c-text-muted);
    font-size: .78rem;
    line-height: 1.6;
    text-align: center;
    padding-top: 1rem
}

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

.footer-legal a:hover {
    color: var(--c-primary)
}

.footer-copyright {
    text-align: center;
    color: var(--c-text-muted);
    font-size: .8rem;
    margin-top: .75rem
}

.promo-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    padding: .75rem 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, .5);
    transform: translateY(100%);
    animation: slideUp .5s .8s ease forwards
}

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

.promo-widget-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--c-text-muted);
    cursor: pointer;
    padding: .3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition)
}

.promo-widget-close:hover {
    color: var(--c-text)
}

.promo-widget-close svg {
    width: 18px;
    height: 18px
}

.promo-widget__text {
    color: var(--c-text-muted);
    font-size: .85rem;
    font-weight: 500
}

.promo-widget__code {
    font-family: monospace;
    font-weight: 800;
    font-size: 1rem;
    color: var(--c-primary);
    letter-spacing: .06em;
    background: rgba(19, 202, 144, .08);
    padding: .2rem .6rem;
    border-radius: 4px;
    border: 1px dashed rgba(19, 202, 144, .35)
}

.promo-widget__copy {
    background: none;
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    padding: .3rem .7rem;
    border-radius: var(--radius-sm);
    font-size: .78rem;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font)
}

.promo-widget__copy:hover {
    border-color: var(--c-primary);
    color: var(--c-primary)
}

.info-page {
    padding: 3rem 0
}

.info-page .content.box {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    margin: 0
}

.info-page h1 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--c-border)
}

.info-page p {
    color: rgba(232, 234, 240, .85);
    margin-bottom: 1rem
}

.info-page h2, .info-page h3 {
    color: var(--c-text);
    margin: 1.5rem 0 .7rem
}

.info-page ul, .info-page ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem
}

.info-page li {
    margin-bottom: .4rem;
    color: rgba(232, 234, 240, .85)
}

.info-page a {
    color: var(--c-secondary)
}

.info-page a:hover {
    color: var(--c-primary)
}

.info-page table {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--c-border)
}

@media (max-width: 1024px) {
    .header-nav {
        gap: 0
    }

    .header-nav a {
        font-size: .83rem;
        padding: .45rem .55rem
    }
}

@media (max-width: 768px) {
    .header-nav {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--c-header);
        border-bottom: 1px solid var(--c-border);
        flex-direction: column;
        gap: 0;
        padding: .5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease, opacity .25s;
        opacity: 0;
        z-index: 999;
        pointer-events: none;
        justify-content: flex-start
    }

    .header-nav.open {
        max-height: 400px;
        opacity: 1;
        pointer-events: all
    }

    .header-nav a {
        padding: .8rem 1rem;
        border-radius: var(--radius-sm);
        font-size: .93rem;
        gap: .5rem
    }

    .burger {
        display: flex
    }

    .online-count {
        display: none
    }

    .section {
        padding: 2.5rem 0
    }

    .advantages-grid {
        gap: .75rem
    }

    .adv-card {
        max-width: 100%
    }

    .hero {
        min-height: 420px
    }

    .hero-inner {
        padding: 2.5rem 0
    }

    .footer-top {
        gap: 1.5rem
    }

    .app-section-inner {
        flex-direction: column
    }

    .comments-inner {
        flex-direction: column
    }

    .promo-widget {
        gap: .6rem
    }

    .demo-iframe-wrap iframe {
        height: 380px
    }
}

@media (max-width: 480px) {
    .hero-promo {
        flex-direction: column;
        align-items: flex-start;
        gap: .6rem
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch
    }

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

    .footer-logos {
        gap: .6rem
    }

    .demo-iframe-wrap iframe {
        height: 300px
    }

    .promo-widget {
        padding: .6rem 48px .6rem 12px
    }
}

.nysres {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 24px 0;
    padding: 32px;
    background: var(--c-card, #1c1d23);
    border: 1px solid var(--c-border, #2a2b33);
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .35);
    overflow: hidden;
    box-sizing: border-box;
}

.nysres,
.nysres * {
    box-sizing: border-box;
}

.nysres > * {
    min-width: 0;
    max-width: 100%;
}

.nysres img,
.nysres picture,
.nysres svg,
.nysres video,
.nysres canvas,
.nysres embed,
.nysres object {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
}

.nysres iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: 320px;
    border: 0;
}

.nysres h1,
.nysres h2,
.nysres h3,
.nysres h4,
.nysres h5,
.nysres h6,
.nysres p,
.nysres li,
.nysres a,
.nysres span,
.nysres strong,
.nysres td,
.nysres th {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.nysres ul,
.nysres ol {
    max-width: 100%;
    padding-left: 22px;
}

.nysres a {
    word-break: break-all;
}

.nysres pre {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 14px;
    overflow-x: auto;
    white-space: pre;
    border-radius: 10px;
}

.nysres code {
    max-width: 100%;
    white-space: pre-wrap;
    word-break: break-word;
}

.nysres table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}

.nysres table th,
.nysres table td {
    padding: 12px 14px;
    border: 1px solid var(--c-border, #2a2b33);
}

.nysres:has(table) {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
    .nysres {
        width: 100%;
        max-width: 100%;
        margin: 18px 0;
        padding: 22px 16px;
        border-radius: 14px;
        overflow: hidden;
    }

    .nysres h1 {
        font-size: 26px;
        line-height: 1.2;
    }

    .nysres h2 {
        font-size: 22px;
        line-height: 1.25;
    }

    .nysres h3 {
        font-size: 19px;
        line-height: 1.3;
    }

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

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

    .nysres iframe {
        min-height: 260px;
        aspect-ratio: 16/9;
    }

    .nysres .btn,
    .nysres button,
    .nysres input,
    .nysres select,
    .nysres textarea {
        max-width: 100%;
    }

    .nysres input,
    .nysres select,
    .nysres textarea {
        width: 100%;
        min-width: 0;
        font-size: 16px;
    }

    .nysres table {
        min-width: 560px;
        font-size: 13px;
    }

    .nysres table th,
    .nysres table td {
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .nysres {
        margin: 14px 0;
        padding: 18px 12px;
        border-radius: 12px;
    }

    .nysres h1 {
        font-size: 23px;
    }

    .nysres h2 {
        font-size: 20px;
    }

    .nysres h3 {
        font-size: 18px;
    }

    .nysres p,
    .nysres li {
        font-size: 14px;
    }

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

    .nysres iframe {
        min-height: 220px;
    }
}

.site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99999;
    background: var(--c-header, #16171b);
    border-bottom: 1px solid var(--c-border, #2a2b33);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

body {
    padding-top: 68px;
}

@media (max-width: 768px) {
    body {
        padding-top: 64px;
    }

    .site-header {
        height: 64px;
    }

    .header-inner {
        min-height: 64px;
    }
}