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

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

body {
    font-family: 'Roboto', sans-serif;
    background: #1e1450;
    color: #e8e4f8;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden
}

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

a {
    color: #ffce1c;
    text-decoration: none;
    transition: color .25s ease
}

a:hover {
    color: #fff
}

ul, ol {
    list-style: none
}

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

input, textarea, select {
    font-family: inherit;
    font-size: 1rem
}

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

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

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

.site-header {
    background: #372873;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .45);
    position: sticky;
    top: 0;
    z-index: 1000
}

.header-inner {
    padding: 12px 0
}

.hdr-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap
}

.hdr-logo-wrap {
    flex-shrink: 0
}

.hdr-logo img {
    height: 44px;
    width: auto
}

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

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

.hdr-nav-link {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    border-radius: 8px;
    color: #d4cef5;
    font-size: .88rem;
    font-weight: 500;
    transition: background .2s, color .2s;
    white-space: nowrap
}

.hdr-nav-link:hover {
    background: rgba(255, 206, 28, .12);
    color: #ffce1c
}

.nav-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0
}

.hdr-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0
}

.hdr-online-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: #a8a0d4;
    background: rgba(255, 255, 255, .05);
    padding: 5px 10px;
    border-radius: 20px;
    white-space: nowrap
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf50;
    animation: pulse 1.8s ease-in-out infinite
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, .5)
    }
    50% {
        box-shadow: 0 0 0 6px rgba(76, 175, 80, 0)
    }
}

.online-count {
    color: #fff;
    font-weight: 600
}

.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, .07);
    color: #d4cef5;
    font-size: .82rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, .1);
    transition: background .2s;
    white-space: nowrap
}

.hdr-lang-btn:hover {
    background: rgba(255, 255, 255, .13)
}

.hdr-lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #2a1f6b;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 10px;
    min-width: 180px;
    display: none;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
    overflow: hidden
}

.hdr-lang-dropdown.open {
    display: block
}

.hdr-lang-dropdown li {
    padding: 10px 14px;
    cursor: pointer;
    font-size: .85rem;
    color: #d4cef5;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background .15s
}

.hdr-lang-dropdown li:hover, .hdr-lang-dropdown li.active {
    background: rgba(255, 206, 28, .12);
    color: #ffce1c
}

.lang-flag {
    font-size: 1.1rem
}

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

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1)
}

.burger-line {
    width: 22px;
    height: 2px;
    background: #d4cef5;
    border-radius: 2px;
    transition: transform .3s, opacity .3s
}

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-weight: 600;
    border-radius: 8px;
    transition: transform .18s, box-shadow .18s, background .18s, color .18s;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    font-family: 'Roboto', sans-serif;
    text-decoration: none
}

.btn:hover {
    transform: translateY(-2px)
}

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

.btn--primary {
    background: #ffce1c;
    color: #1e1450;
    box-shadow: 0 4px 14px rgba(255, 206, 28, .35)
}

.btn--primary:hover {
    background: #ffd740;
    color: #1e1450;
    box-shadow: 0 6px 20px rgba(255, 206, 28, .5)
}

.btn--secondary {
    background: #196d8f;
    color: #fff;
    box-shadow: 0 4px 14px rgba(25, 109, 143, .35)
}

.btn--secondary:hover {
    background: #1e83ad;
    color: #fff
}

.btn--xs {
    padding: 5px 12px;
    font-size: .78rem;
    border-radius: 6px
}

.btn--sm {
    padding: 7px 15px;
    font-size: .85rem
}

.btn--md {
    padding: 10px 22px;
    font-size: .95rem
}

.btn--lg {
    padding: 14px 30px;
    font-size: 1.05rem
}

.btn--full {
    width: 100%;
    display: flex
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 420px
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none
}

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

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 20, 80, .85) 0%, rgba(55, 40, 115, .6) 50%, rgba(30, 20, 80, .3) 100%)
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 206, 28, .2);
    border: 1px solid rgba(255, 206, 28, .5);
    color: #ffce1c;
    font-size: .78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    letter-spacing: .5px;
    text-transform: uppercase
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 14px
}

.hero-highlight {
    color: #ffce1c
}

.hero-subtitle {
    font-size: 1.05rem;
    color: #c8c0f0;
    margin-bottom: 28px;
    line-height: 1.5
}

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

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(55, 40, 115, .7);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background .2s
}

.hero-nav:hover {
    background: rgba(255, 206, 28, .25)
}

.hero-nav--prev {
    left: 14px
}

.hero-nav--next {
    right: 14px
}

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

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

.hero-dot.active {
    background: #ffce1c;
    width: 24px;
    border-radius: 5px
}

.breadcrumbs-wrap {
    padding: 12px 0
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: .82rem
}

.breadcrumbs a {
    color: #a8a0d4;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color .2s
}

.breadcrumbs a:hover {
    color: #ffce1c
}

.breadcrumb-sep {
    color: #5a5090
}

.content-block {
    background: #28197a;
    border-radius: 14px;
    padding: 28px 24px;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, .06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .25)
}

.block-header {
    margin-bottom: 22px
}

.block-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px
}

.block-subtitle {
    color: #a8a0d4;
    font-size: .88rem;
    margin-top: 4px
}

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -4px;
    padding: 0 4px
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 400px;
    font-size: .9rem
}

thead th {
    background: #372873;
    color: #d4cef5;
    padding: 11px 14px;
    text-align: left;
    font-weight: 600;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .4px;
    border-bottom: 2px solid rgba(255, 206, 28, .3)
}

tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    transition: background .15s
}

tbody tr:hover {
    background: rgba(255, 255, 255, .04)
}

tbody td, tbody th {
    padding: 10px 14px;
    color: #d4cef5;
    text-align: left
}

tbody th {
    color: #a8a0d4;
    font-weight: 500;
    width: 40%;
    white-space: nowrap
}

.mirror-date-live {
    color: #ffce1c;
    font-weight: 600
}

.mirror-url {
    font-family: monospace;
    font-size: .88rem;
    color: #82c7e8;
    background: rgba(25, 109, 143, .2);
    padding: 3px 8px;
    border-radius: 5px
}

.mirror-ts {
    font-size: .78rem;
    color: #7a72a8
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3px
}

.status--active {
    background: rgba(76, 175, 80, .2);
    color: #81c784;
    border: 1px solid rgba(76, 175, 80, .3)
}

.status--active::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #81c784
}

.status--warning {
    background: rgba(255, 193, 7, .15);
    color: #ffca28;
    border: 1px solid rgba(255, 193, 7, .3)
}

.speed-bar {
    display: inline-flex;
    width: 60px;
    height: 6px;
    background: rgba(255, 255, 255, .1);
    border-radius: 3px;
    overflow: hidden;
    vertical-align: middle;
    margin-right: 4px
}

.speed-bar span {
    background: linear-gradient(90deg, #196d8f, #ffce1c);
    border-radius: 3px;
    transition: width .6s ease
}

.screenshots-slider {
    position: relative;
    overflow: hidden;
    border-radius: 10px
}

.screenshots-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px
}

.screenshots-track::-webkit-scrollbar {
    display: none
}

.screenshot-item {
    flex: 0 0 calc(33.333% - 12px);
    scroll-snap-align: start;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, .1)
}

.screenshot-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block
}

.screenshot-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(30, 20, 80, .85));
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    padding: 20px 10px 8px;
    text-align: center
}

.ss-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(55, 40, 115, .8);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background .2s
}

.ss-nav:hover {
    background: #196d8f
}

.ss-nav--prev {
    left: 8px
}

.ss-nav--next {
    right: 8px
}

.tournaments-slider {
    position: relative
}

.tournaments-track {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 16px
}

.tournament-card {
    background: #1e1450;
    border: 1px solid rgba(255, 206, 28, .2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .25s, box-shadow .25s;
    position: relative;
    overflow: hidden
}

.tournament-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(55, 40, 115, .4), transparent);
    pointer-events: none
}

.tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 206, 28, .15)
}

.tc-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ffce1c;
    color: #1e1450;
    font-size: .7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .4px
}

.tc-badge--live {
    background: #f44336
}

.tc-badge--esports {
    background: #9c27b0;
    color: #fff
}

.tc-badge--vip {
    background: linear-gradient(135deg, #c9a227, #ffce1c);
    color: #1e1450
}

.tc-img {
    display: flex;
    justify-content: center;
    padding: 8px 0
}

.tc-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3
}

.tc-desc {
    font-size: .83rem;
    color: #a8a0d4;
    line-height: 1.5;
    flex: 1
}

.tc-prize {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .85rem;
    color: #c8c0f0;
    font-weight: 500
}

.prize-amount {
    color: #ffce1c;
    font-weight: 700
}

.tc-timer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: #7a72a8
}

.countdown {
    color: #82c7e8;
    font-weight: 600;
    font-variant-numeric: tabular-nums
}

.tour-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(55, 40, 115, .8);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background .2s;
    display: none
}

.app-layout {
    display: grid;
    grid-template-columns:1fr auto;
    gap: 28px;
    align-items: start
}

.app-download {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px
}

.app-img img {
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
    max-height: 300px;
    width: auto
}

.app-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #372873;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: background .2s, border-color .2s, transform .18s;
    min-width: 200px
}

.app-btn:hover {
    background: #432f90;
    border-color: #ffce1c;
    transform: translateX(3px);
    color: #fff
}

.app-btn span {
    display: flex;
    flex-direction: column;
    line-height: 1.2
}

.app-btn small {
    font-size: .7rem;
    color: #a8a0d4;
    font-weight: 400
}

.app-btn--apk {
    background: rgba(25, 109, 143, .3);
    border-color: rgba(25, 109, 143, .5)
}

.app-btn--apk:hover {
    background: rgba(25, 109, 143, .5)
}

.wheel-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px
}

.wheel-container {
    position: relative;
    width: 360px;
    height: 360px
}

.wheel-arrow {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .5))
}

#wheelCanvas {
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 206, 28, .25), 0 8px 32px rgba(0, 0, 0, .4);
    transition: transform .1s;
    display: block
}

.wheel-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px
}

.wheel-result {
    min-height: 80px;
    text-align: center;
    padding: 16px;
    border-radius: 10px;
    font-size: 1.05rem;
    width: 100%;
    max-width: 400px
}

.wheel-result.win {
    background: rgba(76, 175, 80, .15);
    border: 1px solid rgba(76, 175, 80, .4);
    color: #a5d6a7
}

.wheel-result.lose {
    background: rgba(244, 67, 54, .1);
    border: 1px solid rgba(244, 67, 54, .3);
    color: #ef9a9a
}

.wheel-win-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffce1c;
    margin-bottom: 6px
}

.review-block .block-header {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.author-block {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: rgba(255, 255, 255, .04);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .08)
}

.author-avatar img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffce1c
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.author-name {
    font-weight: 700;
    color: #fff;
    font-size: .95rem
}

.author-title {
    font-size: .78rem;
    color: #a8a0d4
}

.author-links {
    display: flex;
    gap: 10px;
    font-size: .78rem
}

.author-links a {
    color: #82c7e8
}

.review-content {
    font-size: .95rem;
    line-height: 1.7;
    color: #d4cef5
}

.review-content h1 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3
}

.review-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffce1c;
    margin: 28px 0 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 206, 28, .2)
}

.review-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #c8c0f0;
    margin: 20px 0 8px
}

.review-content p {
    margin-bottom: 14px
}

.review-content ul, .review-content ol {
    margin: 12px 0 16px 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.review-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding-left: 0
}

.review-content ul li::before {
    content: '›';
    color: #ffce1c;
    font-weight: 700;
    flex-shrink: 0
}

.review-content ol {
    counter-reset: ol-cnt;
    list-style: none
}

.review-content ol li {
    counter-increment: ol-cnt;
    display: flex;
    align-items: flex-start;
    gap: 8px
}

.review-content ol li::before {
    content: counter(ol-cnt) '.';
    color: #ffce1c;
    font-weight: 700;
    flex-shrink: 0;
    min-width: 20px
}

.review-content table {
    margin: 16px 0;
    font-size: .88rem
}

.review-content a {
    color: #82c7e8;
    text-decoration: underline
}

.review-content a:hover {
    color: #ffce1c
}

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

.review-content blockquote {
    border-left: 3px solid #ffce1c;
    padding: 10px 16px;
    background: rgba(255, 206, 28, .06);
    border-radius: 0 8px 8px 0;
    margin: 16px 0;
    font-style: italic;
    color: #c8c0f0
}

.review-content dl dt {
    font-weight: 700;
    color: #ffce1c;
    margin-top: 14px
}

.review-content dl dd {
    margin-left: 16px;
    color: #d4cef5
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px
}

.rating-big {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffce1c;
    line-height: 1
}

.rating-stars {
    display: flex;
    gap: 2px
}

.rating-count {
    font-size: .82rem;
    color: #a8a0d4
}

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

.review-card {
    background: #1e1450;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color .2s
}

.review-card:hover {
    border-color: rgba(255, 206, 28, .3)
}

.rc-header {
    display: flex;
    align-items: center;
    gap: 12px
}

.rc-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 206, 28, .4)
}

.rc-meta {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.rc-name {
    font-weight: 600;
    color: #fff;
    font-size: .88rem
}

.rc-stars {
    display: flex;
    gap: 1px
}

.rc-text {
    font-size: .85rem;
    color: #b0a8d4;
    line-height: 1.55;
    flex: 1
}

.rc-date {
    font-size: .75rem;
    color: #5a5090
}

.review-form-wrap {
    background: #1e1450;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 24px
}

.review-form-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px
}

.review-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 28px;
    text-align: center;
    background: rgba(76, 175, 80, .08);
    border: 1px solid rgba(76, 175, 80, .3);
    border-radius: 10px
}

.review-success h4 {
    color: #a5d6a7;
    font-size: 1.1rem;
    font-weight: 700
}

.review-success p {
    color: #a8a0d4;
    font-size: .88rem
}

.review-success.visible {
    display: flex
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.form-group label {
    font-size: .85rem;
    font-weight: 600;
    color: #c8c0f0
}

.form-group input, .form-group textarea, .form-group select {
    background: #1e1450;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 8px;
    padding: 10px 14px;
    color: #fff;
    font-size: .92rem;
    transition: border-color .2s, box-shadow .2s;
    width: 100%
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #ffce1c;
    box-shadow: 0 0 0 3px rgba(255, 206, 28, .12)
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: #5a5090
}

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

.req {
    color: #ffce1c
}

.star-picker {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px
}

.star-picker label {
    cursor: pointer;
    color: #3a3270
}

.star-picker label svg {
    fill: currentColor;
    transition: color .15s
}

.star-picker input:checked ~ label, .star-picker label:hover, .star-picker label:hover ~ label {
    color: #ffce1c
}

.site-footer {
    background: #372873;
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 40px 0 0
}

.ftr-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-bottom: 0
}

.ftr-top {
    display: grid;
    grid-template-columns:2fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.ftr-brand {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.ftr-logo img {
    height: 40px;
    width: auto
}

.ftr-country {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: #a8a0d4
}

.ftr-tagline {
    font-size: .83rem;
    color: #7a72a8;
    line-height: 1.55;
    max-width: 340px
}

.ftr-social {
    display: flex;
    gap: 10px;
    margin-top: 4px
}

.ftr-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #a8a0d4;
    transition: background .2s, color .2s
}

.ftr-social-link:hover {
    background: #196d8f;
    color: #fff
}

.ftr-col-title {
    font-size: .85rem;
    font-weight: 700;
    color: #d4cef5;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px
}

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

.ftr-nav-list a {
    font-size: .85rem;
    color: #7a72a8;
    transition: color .2s
}

.ftr-nav-list a:hover {
    color: #ffce1c
}

.ftr-section-title {
    font-size: .82rem;
    font-weight: 700;
    color: #d4cef5;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px;
    text-align: center
}

.ftr-payment-logos {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center
}

.ftr-logo-badge {
    border-radius: 6px;
    overflow: hidden;
    transition: opacity .2s
}

.ftr-logo-badge:hover {
    opacity: .8
}

.ftr-trust-logos {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center
}

.ftr-trust-badge {
    border-radius: 6px;
    overflow: hidden;
    transition: opacity .2s
}

.ftr-trust-badge:hover {
    opacity: .8
}

.ftr-provider-logos {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center
}

.ftr-provider-badge {
    padding: 5px 14px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    font-size: .78rem;
    color: #a8a0d4;
    transition: border-color .2s, color .2s
}

.ftr-provider-badge:hover {
    border-color: #ffce1c;
    color: #ffce1c
}

.ftr-payment-section, .ftr-trust-section, .ftr-providers-section {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.ftr-legal {
    padding: 18px 0 24px
}

.ftr-legal-text {
    font-size: .75rem;
    color: #5a5090;
    line-height: 1.55;
    margin-bottom: 8px
}

.ftr-legal-text a {
    color: #7a72a8;
    text-decoration: underline
}

.ftr-legal-text a:hover {
    color: #ffce1c
}

.ftr-copyright {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    flex-direction: column;
    gap: 6px
}

.ftr-copyright p {
    font-size: .75rem;
    color: #3a3270;
    text-align: center
}

.ftr-copyright a {
    color: #4a4285;
    transition: color .2s
}

.ftr-copyright a:hover {
    color: #a8a0d4
}

.promo-widget {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 500;
    background: #372873;
    border: 1px solid rgba(255, 206, 28, .5);
    border-radius: 14px;
    padding: 16px 20px;
    min-width: 280px;
    max-width: 340px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
    animation: slideUpWidget .5s ease .8s both
}

@keyframes slideUpWidget {
    from {
        transform: translateX(-50%) translateY(100px);
        opacity: 0
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1
    }
}

.promo-widget.hidden {
    display: none
}

.widget-close {
    position: absolute;
    top: 8px;
    right: 10px;
    color: #7a72a8;
    font-size: 1.2rem;
    line-height: 1;
    padding: 2px 4px;
    border-radius: 4px;
    transition: color .2s
}

.widget-close:hover {
    color: #fff
}

.widget-badge {
    display: inline-block;
    background: rgba(255, 206, 28, .2);
    border: 1px solid rgba(255, 206, 28, .4);
    color: #ffce1c;
    font-size: .7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 8px
}

.widget-label {
    font-size: .8rem;
    color: #a8a0d4;
    margin-bottom: 6px
}

.widget-code-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px
}

.widget-code {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffce1c;
    font-family: monospace;
    letter-spacing: 2px;
    background: rgba(255, 206, 28, .1);
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px dashed rgba(255, 206, 28, .4)
}

.widget-copy {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: #196d8f;
    border-radius: 6px;
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    transition: background .2s
}

.widget-copy:hover {
    background: #1e83ad
}

.widget-desc {
    font-size: .78rem;
    color: #a8a0d4;
    margin-bottom: 10px
}

.info-content-block {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto
}

.info-page-content {
    font-size: .95rem;
    line-height: 1.7;
    color: #d4cef5
}

.info-page-content h1 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px
}

.info-page-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffce1c;
    margin: 24px 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 206, 28, .2)
}

.info-page-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #c8c0f0;
    margin: 16px 0 6px
}

.info-page-content p {
    margin-bottom: 12px
}

.info-page-content ul, .info-page-content ol {
    margin: 10px 0 14px;
    padding-left: 18px
}

.info-page-content ul li {
    list-style: disc;
    color: #d4cef5;
    margin-bottom: 6px
}

.info-page-content ol li {
    list-style: decimal;
    color: #d4cef5;
    margin-bottom: 6px
}

.info-page-content table {
    margin: 16px 0;
    font-size: .88rem
}

.info-page-content a {
    color: #82c7e8;
    text-decoration: underline
}

.info-page-content a:hover {
    color: #ffce1c
}

.info-page-content strong, .info-page-content b {
    color: #fff;
    font-weight: 600
}

.info-page-content dl dt {
    font-weight: 700;
    color: #ffce1c;
    margin-top: 12px
}

.info-page-content dl dd {
    margin-left: 14px;
    color: #d4cef5;
    margin-bottom: 6px
}

.wp-block-unused {
    display: none !important
}

.elementor-section-hidden {
    visibility: hidden;
    height: 0;
    overflow: hidden
}

.wp-post-image-hidden {
    width: 1px;
    height: 1px;
    position: absolute;
    overflow: hidden;
    opacity: 0
}

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

    .app-layout {
        grid-template-columns:1fr
    }

    .app-download {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center
    }
}

@media (max-width: 900px) {
    .ftr-top {
        grid-template-columns:1fr 1fr;
        gap: 24px
    }

    .ftr-nav-col:last-child {
        grid-column: span 2
    }

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

    .screenshot-item {
        flex: 0 0 calc(50% - 8px)
    }
}

@media (max-width: 768px) {
    .hdr-nav-wrap {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: #1e1450;
        z-index: 900;
        padding: 80px 20px 30px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: left .3s ease;
        box-shadow: 4px 0 24px rgba(0, 0, 0, .5);
        overflow-y: auto
    }

    .hdr-nav-wrap.open {
        left: 0
    }

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

    .hdr-nav-link {
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem
    }

    .burger {
        display: flex
    }

    .hdr-online-counter {
        display: none
    }

    .hero-content {
        padding: 40px 0
    }

    .hero-title {
        font-size: 1.7rem
    }

    .hero-ctas {
        flex-direction: column;
        gap: 10px
    }

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

    .hero-nav {
        width: 36px;
        height: 36px
    }

    .tournaments-track {
        grid-template-columns:1fr;
        gap: 14px
    }

    .tour-nav {
        display: flex
    }

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

    .screenshot-item {
        flex: 0 0 calc(80% - 8px)
    }

    .app-layout {
        grid-template-columns:1fr
    }

    .wheel-container {
        width: 300px;
        height: 300px
    }

    #wheelCanvas {
        width: 300px !important;
        height: 300px !important
    }

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

    .ftr-nav-col:last-child {
        grid-column: span 1
    }
}

@media (max-width: 480px) {
    .content-block {
        padding: 18px 14px
    }

    .hero-section {
        min-height: 320px
    }

    .hero-slider {
        min-height: 320px
    }

    .hero-title {
        font-size: 1.4rem
    }

    .hdr-auth-btns .btn--sm {
        padding: 6px 10px;
        font-size: .78rem
    }

    .promo-widget {
        min-width: 260px;
        max-width: calc(100vw - 24px);
        bottom: 12px
    }

    .wheel-container {
        width: 270px;
        height: 270px
    }

    #wheelCanvas {
        width: 270px !important;
        height: 270px !important
    }

    .app-btns {
        align-items: stretch
    }

    .app-btn {
        min-width: unset
    }
}

.q5n1v {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.q5n1v *,
.q5n1v *::before,
.q5n1v *::after {
    box-sizing: border-box;
    min-width: 0;
}

.q5n1v .app-layout {
    display: grid;
    grid-template-columns:minmax(0, 1fr) 260px;
    gap: 28px;
    align-items: start;
}

.q5n1v .app-info {
    min-width: 0;
    width: 100%;
}

.q5n1v .table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0;
    padding: 0;
}

.q5n1v .app-table {
    width: 100%;
    min-width: 560px;
}

.q5n1v .app-download {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    width: 100%;
}

.q5n1v .app-img {
    width: 100%;
    display: flex;
    justify-content: center;
}

.q5n1v .app-img img {
    width: 180px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
}

.q5n1v .app-btns {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.q5n1v .app-btn {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    padding: 12px 16px;
}

.q5n1v .app-btn span {
    min-width: 0;
}

.q5n1v .app-btn small {
    white-space: normal;
}

@media (max-width: 900px) {

    .q5n1v .app-layout {
        grid-template-columns:1fr;
        gap: 24px;
    }

    .q5n1v .app-download {
        flex-direction: column;
        align-items: center;
    }

    .q5n1v .app-img img {
        width: 150px;
    }

    .q5n1v .app-btns {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .q5n1v .app-btn {
        min-height: 64px;
        padding: 10px 12px;
    }

}

@media (max-width: 640px) {

    .q5n1v {
        padding: 18px 14px;
    }

    .q5n1v .block-header {
        margin-bottom: 18px;
    }

    .q5n1v .block-title {
        font-size: 1.1rem;
        line-height: 1.35;
    }

    .q5n1v .block-title svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .q5n1v .block-subtitle {
        font-size: .82rem;
        line-height: 1.5;
    }

    .q5n1v .app-layout {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .q5n1v .app-info,
    .q5n1v .app-download {
        width: 100%;
    }

    .q5n1v .table-wrap {
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 10px;
    }

    .q5n1v .app-table {
        min-width: 500px;
        font-size: .82rem;
    }

    .q5n1v .app-table th,
    .q5n1v .app-table td {
        padding: 9px 10px;
    }

    .q5n1v .app-table th {
        width: 42%;
        white-space: normal;
    }

    .q5n1v .app-download {
        flex-direction: column;
        align-items: stretch;
    }

    .q5n1v .app-img {
        order: 1;
    }

    .q5n1v .app-btns {
        order: 2;
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .q5n1v .app-img img {
        width: 130px;
        margin: 0 auto;
    }

    .q5n1v .app-btn {
        width: 100%;
        min-height: 58px;
        justify-content: flex-start;
        padding: 11px 14px;
    }

    .q5n1v .app-btn svg {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
    }

}

@media (max-width: 420px) {

    .q5n1v {
        padding: 16px 12px;
    }

    .q5n1v .app-table {
        min-width: 460px;
        font-size: .78rem;
    }

    .q5n1v .app-table th,
    .q5n1v .app-table td {
        padding: 8px 9px;
    }

    .q5n1v .app-img img {
        width: 115px;
    }

    .q5n1v .app-btn {
        font-size: .86rem;
    }

    .q5n1v .app-btn small {
        font-size: .66rem;
    }

}

.kjst {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 32px;
    background: #28197a;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
    color: #d4cef5;
    overflow: hidden;
}

.kjst *,
.kjst *::before,
.kjst *::after {
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
}

.kjst > *:first-child {
    margin-top: 0;
}

.kjst > *:last-child {
    margin-bottom: 0;
}

.kjst h1,
.kjst h2,
.kjst h3,
.kjst h4,
.kjst h5,
.kjst h6 {
    color: #fff;
    line-height: 1.3;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.kjst h1 {
    margin: 0 0 24px;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.kjst h2 {
    margin: 32px 0 14px;
    padding-bottom: 9px;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    color: #ffce1c;
    border-bottom: 1px solid rgba(255, 206, 28, .22);
}

.kjst h3 {
    margin: 24px 0 10px;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #fff;
}

.kjst h4 {
    margin: 20px 0 8px;
    font-size: 1.05rem;
}

.kjst p {
    margin: 0 0 16px;
    color: #d4cef5;
    font-size: .96rem;
    line-height: 1.75;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.kjst ul,
.kjst ol {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 14px 0 20px;
    padding-left: 22px;
    color: #d4cef5;
}

.kjst ul {
    list-style: disc;
}

.kjst ol {
    list-style: decimal;
}

.kjst li {
    padding-left: 3px;
    line-height: 1.65;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.kjst li::marker {
    color: #ffce1c;
    font-weight: 700;
}

.kjst a {
    color: #82c7e8;
    text-decoration: underline;
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.kjst a:hover {
    color: #ffce1c;
}

.kjst strong,
.kjst b {
    color: #fff;
    font-weight: 700;
}

.kjst blockquote {
    margin: 20px 0;
    padding: 16px 18px;
    background: rgba(255, 206, 28, .07);
    border-left: 4px solid #ffce1c;
    border-radius: 0 10px 10px 0;
    color: #d4cef5;
    overflow: hidden;
}

.kjst img,
.kjst video,
.kjst svg,
.kjst canvas {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
}

.kjst img,
.kjst video {
    margin: 20px auto;
    border-radius: 12px;
}

.kjst iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 12px;
}

.kjst table {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 22px 0;
    border-collapse: collapse;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ffce1c #1e1450;
}

.kjst table::-webkit-scrollbar {
    height: 7px;
}

.kjst table::-webkit-scrollbar-track {
    background: #1e1450;
    border-radius: 10px;
}

.kjst table::-webkit-scrollbar-thumb {
    background: #ffce1c;
    border-radius: 10px;
}

.kjst table thead,
.kjst table tbody {
    width: 100%;
}

.kjst table th,
.kjst table td {
    min-width: 170px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .1);
    text-align: left;
    vertical-align: top;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.kjst table th {
    background: #372873;
    color: #ffce1c;
    font-weight: 700;
}

.kjst table td {
    color: #d4cef5;
}

.kjst table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .035);
}

.kjst pre {
    width: 100%;
    max-width: 100%;
    margin: 18px 0;
    padding: 16px;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-word;
    background: #1e1450;
    border-radius: 10px;
}

.kjst code {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (max-width: 768px) {

    .kjst {
        padding: 22px 16px;
        border-radius: 15px;
    }

    .kjst h1 {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .kjst h2 {
        margin-top: 28px;
        font-size: 1.4rem;
    }

    .kjst h3 {
        font-size: 1.15rem;
    }

    .kjst p,
    .kjst li {
        font-size: .92rem;
        line-height: 1.7;
    }

    .kjst ul,
    .kjst ol {
        padding-left: 20px;
    }

    .kjst table {
        font-size: .84rem;
    }

    .kjst table th,
    .kjst table td {
        min-width: 155px;
        padding: 10px 11px;
    }

    .kjst iframe {
        min-height: 280px;
    }
}

@media (max-width: 480px) {

    .kjst {
        padding: 18px 12px;
        border-radius: 13px;
    }

    .kjst h1 {
        font-size: 1.5rem;
    }

    .kjst h2 {
        font-size: 1.25rem;
    }

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

    .kjst p,
    .kjst li {
        font-size: .88rem;
    }

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

    .kjst table th,
    .kjst table td {
        min-width: 145px;
        padding: 9px 10px;
    }

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

.nx-header,
.nx-header *,
.nx-header *::before,
.nx-header *::after {
    box-sizing: border-box;
}

.nx-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(30, 20, 80, .96);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.nx-container {
    width: 100%;
    max-width: 1240px;
    min-height: 72px;
    margin: 0 auto;
    padding: 10px 16px;
    display: grid;
    grid-template-columns:auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
}

.nx-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.nx-logo img {
    display: block;
    width: auto;
    max-width: 150px;
    height: 46px;
    object-fit: contain;
}

.nx-nav {
    min-width: 0;
}

.nx-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nx-menu li {
    margin: 0;
    padding: 0;
}

.nx-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 14px;
    color: #d8d2f5;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: .9rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s ease,
    background .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

.nx-menu a:hover,
.nx-menu a:focus-visible {
    color: #ffce1c;
    background: rgba(255, 206, 28, .08);
    border-color: rgba(255, 206, 28, .16);
    transform: translateY(-1px);
}

.nx-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    min-width: 0;
}

.nx-online {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    color: #b8b0dc;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    font-size: .76rem;
    line-height: 1;
    white-space: nowrap;
}

.nx-online span:not(.nx-online-dot) {
    color: #fff;
    font-weight: 700;
}

.nx-online-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, .15);
    animation: nxPulse 1.8s ease-in-out infinite;
}

@keyframes nxPulse {
    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(74, 222, 128, .15);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(74, 222, 128, 0);
    }
}

.nx-desktop-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 16px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: .84rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s ease,
    color .2s ease,
    border-color .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.nx-btn:hover {
    transform: translateY(-2px);
}

.nx-btn-login {
    color: #fff;
    background: #196d8f;
    border-color: #196d8f;
    box-shadow: 0 5px 16px rgba(25, 109, 143, .25);
}

.nx-btn-login:hover {
    color: #fff;
    background: #2386ad;
    border-color: #2386ad;
}

.nx-btn-register {
    color: #1e1450;
    background: #ffce1c;
    border-color: #ffce1c;
    box-shadow: 0 5px 16px rgba(255, 206, 28, .25);
}

.nx-btn-register:hover {
    color: #1e1450;
    background: #ffdc55;
    border-color: #ffdc55;
}

.nx-mobile-buttons {
    display: none;
}

.nx-burger {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    color: #fff;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    cursor: pointer;
    transition: background .2s ease,
    border-color .2s ease;
}

.nx-burger:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 206, 28, .25);
}

.nx-burger span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: transform .3s ease,
    opacity .3s ease;
}

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

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

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

@media (max-width: 1080px) {

    .nx-container {
        gap: 14px;
    }

    .nx-menu {
        gap: 2px;
    }

    .nx-menu a {
        padding: 9px 10px;
        font-size: .84rem;
    }

    .nx-online {
        display: none;
    }

    .nx-btn {
        padding: 9px 12px;
    }
}

@media (max-width: 860px) {

    .nx-container {
        min-height: 66px;
        grid-template-columns:auto 1fr auto;
        padding: 9px 14px;
    }

    .nx-logo img {
        max-width: 118px;
        height: 40px;
    }

    .nx-nav {
        position: fixed;
        top: 66px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        padding: 20px 16px 30px;
        background: #1e1450;
        overflow-y: auto;
        overscroll-behavior: contain;
        transform: translateX(-100%);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: transform .3s ease,
        opacity .25s ease,
        visibility .3s ease;
        z-index: 9998;
    }

    .nx-nav.is-open {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .nx-menu {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 10px;
    }

    .nx-menu li {
        width: 100%;
    }

    .nx-menu a {
        width: 100%;
        min-height: 52px;
        justify-content: flex-start;
        padding: 14px 16px;
        color: #fff;
        background: rgba(255, 255, 255, .05);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 12px;
        font-size: 1rem;
        white-space: normal;
    }

    .nx-menu a:hover,
    .nx-menu a:focus-visible {
        color: #ffce1c;
        background: rgba(255, 206, 28, .08);
        border-color: rgba(255, 206, 28, .22);
        transform: none;
    }

    .nx-mobile-buttons {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: 12px;
        width: 100%;
        margin-top: 22px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .nx-mobile-buttons .nx-btn {
        width: 100%;
        min-height: 48px;
        font-size: .92rem;
    }

    .nx-right {
        gap: 8px;
    }

    .nx-burger {
        display: flex;
    }
}

@media (max-width: 480px) {

    .nx-container {
        min-height: 62px;
        padding: 8px 10px;
        gap: 8px;
    }

    .nx-logo img {
        max-width: 96px;
        height: 36px;
    }

    .nx-nav {
        top: 62px;
        padding: 16px 12px 24px;
    }

    .nx-menu {
        gap: 8px;
    }

    .nx-menu a {
        min-height: 48px;
        padding: 13px 14px;
        font-size: .94rem;
    }

    .nx-mobile-buttons {
        grid-template-columns:1fr;
        gap: 10px;
    }

    .nx-burger {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }
}

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

@media (min-width: 861px) {

    .nx-nav {
        transform: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.nx-header,
.nx-header *,
.nx-header *::before,
.nx-header *::after {
    box-sizing: border-box;
}

.nx-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    z-index: 9999;
    margin: 0;
    padding: 0;
    background: #1e1450;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 5px 24px rgba(0, 0, 0, .35);
}

.nx-container {
    width: 100%;
    max-width: 1240px;
    min-height: 72px;
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nx-logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.nx-logo img {
    display: block;
    width: auto;
    max-width: 150px;
    height: 46px;
    object-fit: contain;
}

.nx-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
}

.nx-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: auto;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nx-menu li {
    margin: 0;
    padding: 0;
}

.nx-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    color: #d8d2f5;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: .9rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: .2s ease;
}

.nx-menu a:hover {
    color: #ffce1c;
    background: rgba(255, 206, 28, .1);
    border-color: rgba(255, 206, 28, .2);
}

.nx-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex: 0 0 auto;
}

.nx-online {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    color: #b8b0dc;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    font-size: .76rem;
    line-height: 1;
    white-space: nowrap;
}

.nx-online span:not(.nx-online-dot) {
    color: #fff;
    font-weight: 700;
}

.nx-online-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, .18);
}

.nx-desktop-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 15px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: .84rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}

.nx-btn-login {
    color: #fff;
    background: #196d8f;
    border-color: #196d8f;
}

.nx-btn-register {
    color: #1e1450;
    background: #ffce1c;
    border-color: #ffce1c;
}

.nx-mobile-buttons {
    display: none;
}

.nx-burger {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    min-width: 44px;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 10px;
    cursor: pointer;
    z-index: 10002;
}

.nx-burger span {
    display: block;
    width: 23px;
    height: 2px;
    flex: 0 0 2px;
    margin: 0;
    padding: 0;
    border-radius: 4px;
    background: #fff;
    opacity: 1;
    visibility: visible;
    transition: transform .25s ease, opacity .25s ease;
}

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

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

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

@media (max-width: 900px) {

    .nx-header {
        width: 100% !important;
        max-width: 100% !important;
    }

    .nx-container {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 64px;
        margin: 0 !important;
        padding: 8px 12px;
        gap: 10px;
    }

    .nx-logo {
        min-width: 0;
        max-width: calc(100% - 60px);
    }

    .nx-logo img {
        width: auto;
        max-width: 118px;
        height: 40px;
    }

    .nx-right {
        margin-left: auto;
        flex: 0 0 auto;
    }

    .nx-online {
        display: none !important;
    }

    .nx-burger {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .nx-nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100% !important;
        max-width: 100% !important;
        height: calc(100dvh - 64px);
        margin: 0;
        padding: 18px 14px 30px;
        display: block;
        background: #1e1450;
        overflow-x: hidden;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(-100%);
        transition: transform .28s ease, opacity .2s ease, visibility .28s ease;
        z-index: 10000;
    }

    .nx-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }

    .nx-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 9px;
        width: 100%;
    }

    .nx-menu li {
        width: 100%;
    }

    .nx-menu a {
        width: 100%;
        min-height: 50px;
        justify-content: flex-start;
        padding: 14px 16px;
        color: #fff;
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 11px;
        font-size: 1rem;
        white-space: normal;
    }

    .nx-mobile-buttons {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: 10px;
        width: 100%;
        margin-top: 20px;
        padding-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .nx-mobile-buttons .nx-btn {
        width: 100%;
        min-width: 0;
        min-height: 48px;
    }

    body.nx-menu-open {
        overflow: hidden;
        touch-action: none;
    }
}

@media (max-width: 480px) {

    .nx-container {
        min-height: 60px;
        padding: 7px 10px;
    }

    .nx-logo img {
        max-width: 105px;
        height: 36px;
    }

    .nx-burger {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .nx-nav {
        top: 60px;
        height: calc(100dvh - 60px);
        padding: 14px 12px 24px;
    }

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

html {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
}

body {
    position: relative !important;
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    left: 0 !important;
    right: 0 !important;
    overflow-x: hidden !important;
}

body.home-page {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
}

.wrapper,
.wrapper.p9x3k,
.p9x3k {
    position: relative !important;
    left: 50% !important;
    right: auto !important;
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    margin-left: -50vw !important;
    margin-right: 0 !important;
    padding: 0 !important;
    transform: none !important;
}

.nx-header,
.hero-section,
.hero-slider,
#main-content,
.site-footer {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.nx-container {
    width: 100% !important;
    max-width: 1240px !important;
    margin: 0 auto !important;
}

@media (max-width: 900px) {

    html,
    body,
    body.home-page {
        width: 100vw !important;
        min-width: 100vw !important;
        max-width: 100vw !important;
    }

    .wrapper,
    .wrapper.p9x3k,
    .p9x3k {
        left: 50% !important;
        width: 100vw !important;
        min-width: 100vw !important;
        max-width: 100vw !important;
        margin-left: -50vw !important;
    }

    .nx-header,
    .hero-section,
    .hero-slider,
    #main-content,
    .site-footer {
        width: 100vw !important;
        min-width: 100vw !important;
        max-width: 100vw !important;
    }

    .nx-container {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 8px 12px !important;
    }

    #main-content > .container,
    body > .container,
    .wrapper > .container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .nx-burger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    
    .nx-online {
        display: none !important;
    }
}