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

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

body {
    font-family: 'Inter', sans-serif;
    background: #041529;
    color: #d8e3f0;
    line-height: 1.65;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased
}

a {
    color: #ed6c70;
    text-decoration: none;
    transition: color .2s
}

a:hover {
    color: #f08a8d
}

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

ul, ol {
    list-style: none
}

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

input, textarea, select {
    font-family: inherit
}

table {
    border-collapse: collapse;
    width: 100%
}

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

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

.site-main {
    flex: 1
}

.site-header {
    background: #071b36;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .45);
    border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.hdr-x7k2 {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    flex-wrap: nowrap
}

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

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

.hdr-nav-wrap {
    flex: 1;
    display: flex;
    align-items: center
}

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

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

.hdr-nav-link:hover, .hdr-nav-link:focus {
    background: rgba(255, 255, 255, .08);
    color: #fff
}

.hdr-nav-link svg {
    flex-shrink: 0;
    opacity: .7
}

.hdr-status-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
    margin-left: auto;
    flex-shrink: 0
}

.hdr-online-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    font-weight: 600;
    color: #4caf94
}

.hdr-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf94;
    animation: pulse-dot 2s infinite
}

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

.hdr-player-count {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .72rem;
    color: #8aa8cc
}

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

.btn-hdr {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 600;
    transition: all .2s;
    white-space: nowrap
}

.btn-login {
    background: transparent;
    color: #fbfafc;
    border: 1.5px solid rgba(251, 250, 252, .3)
}

.btn-login:hover {
    background: rgba(251, 250, 252, .1);
    border-color: rgba(251, 250, 252, .6);
    color: #fff
}

.btn-signup {
    background: #ed6c70;
    color: #fff;
    border: 1.5px solid #ed6c70
}

.btn-signup:hover {
    background: #e8575b;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(237, 108, 112, .4)
}

.hdr-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 6px;
    transition: background .2s
}

.hdr-burger:hover {
    background: rgba(255, 255, 255, .1)
}

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

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

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

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

.hdr-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(4, 21, 41, .7);
    z-index: 998
}

.hdr-mobile-overlay.active {
    display: block
}

.hero-section {
    position: relative;
    overflow: hidden
}

.hero-slider {
    position: relative;
    height: 480px;
    overflow: hidden
}

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

.hero-slide.active {
    opacity: 1;
    z-index: 1
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(4, 21, 41, .92) 40%, rgba(4, 21, 41, .4))
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 640px
}

.hero-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .5)
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    background: #ed6c70;
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    font-size: .95rem;
    border: none;
    cursor: pointer;
    transition: all .22s;
    text-decoration: none
}

.btn-primary:hover {
    background: #e8575b;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(237, 108, 112, .45);
    color: #fff
}

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

.btn-hero {
    font-size: 1rem;
    padding: 15px 30px
}

.hero-prev, .hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(7, 27, 54, .7);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s
}

.hero-prev {
    left: 20px
}

.hero-next {
    right: 20px
}

.hero-prev:hover, .hero-next:hover {
    background: rgba(237, 108, 112, .8);
    border-color: #ed6c70
}

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

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

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

.breadcrumb-wrap {
    margin: 20px 0 0
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.breadcrumb-item a {
    color: #8aa8cc;
    font-size: .83rem;
    transition: color .2s
}

.breadcrumb-item a:hover {
    color: #ed6c70
}

.breadcrumb-item.active span {
    color: #d8e3f0;
    font-size: .83rem
}

.breadcrumb-sep svg {
    color: #8aa8cc;
    opacity: .5
}

.content-wrap {
    padding: 24px 0 60px;
    display: flex;
    flex-direction: column;
    gap: 28px
}

.content-wrap--info {
    padding: 24px 0 60px
}

[class^="bx-"], [class*=" bx-"] {
    background: #071b36;
    border-radius: 14px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .07);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .3)
}

.block-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.block-title svg {
    color: #ed6c70;
    flex-shrink: 0
}

.toc-block {
    background: linear-gradient(135deg, #071b36 0%, #0a2340 100%)
}

.toc-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 9px
}

.toc-title svg {
    color: #ed6c70
}

.toc-list {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(200px, 1fr));
    gap: 8px
}

.toc-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    background: rgba(255, 255, 255, .04);
    border-radius: 8px;
    color: #b8d0e8;
    font-size: .86rem;
    font-weight: 500;
    transition: all .2s;
    border: 1px solid rgba(255, 255, 255, .06)
}

.toc-list li a:hover {
    background: rgba(237, 108, 112, .12);
    color: #ed6c70;
    border-color: rgba(237, 108, 112, .3);
    transform: translateX(3px)
}

.toc-list li a svg {
    color: #ed6c70;
    opacity: .8;
    flex-shrink: 0
}

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

.table-scroll-wrap::-webkit-scrollbar {
    height: 5px
}

.table-scroll-wrap::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .05)
}

.table-scroll-wrap::-webkit-scrollbar-thumb {
    background: #ed6c70;
    border-radius: 3px
}

.info-table, .payments-table, .app-table {
    width: 100%;
    font-size: .9rem
}

.info-table tr, .app-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

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

.info-table td, .app-table td {
    padding: 12px 14px;
    vertical-align: middle
}

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

.info-param {
    color: #8aa8cc;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 200px
}

.info-param svg {
    color: #ed6c70;
    flex-shrink: 0
}

td.td-highlight {
    color: #ed6c70;
    font-weight: 700
}

.payments-table {
    min-width: 700px
}

.payments-table thead tr {
    background: rgba(237, 108, 112, .12)
}

.payments-table th {
    padding: 12px 14px;
    text-align: left;
    font-size: .83rem;
    font-weight: 600;
    color: #ed6c70;
    white-space: nowrap;
    border-bottom: 2px solid rgba(237, 108, 112, .3)
}

.payments-table td {
    padding: 12px 14px;
    font-size: .88rem;
    color: #c8d8ec;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    vertical-align: middle
}

.payments-table tbody tr:hover {
    background: rgba(255, 255, 255, .03)
}

.pay-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: .78rem;
    font-weight: 600;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .12)
}

.pay-visa {
    background: rgba(26, 75, 183, .2);
    border-color: rgba(26, 75, 183, .5)
}

.pay-mc {
    background: rgba(255, 95, 0, .15);
    border-color: rgba(255, 95, 0, .4)
}

.pay-skrill {
    background: rgba(135, 31, 160, .2);
    border-color: rgba(135, 31, 160, .4)
}

.pay-neteller {
    background: rgba(30, 161, 214, .2);
    border-color: rgba(30, 161, 214, .4)
}

.pay-psc {
    background: rgba(0, 102, 153, .2);
    border-color: rgba(0, 102, 153, .4)
}

.pay-crypto {
    background: rgba(247, 147, 26, .15);
    border-color: rgba(247, 147, 26, .4)
}

.pay-revolut {
    background: rgba(91, 60, 233, .2);
    border-color: rgba(91, 60, 233, .4)
}

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

.screenshot-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    cursor: pointer;
    transition: transform .22s, box-shadow .22s;
    position: relative
}

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

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

.screenshot-caption {
    padding: 10px 14px;
    background: rgba(7, 27, 54, .9);
    font-size: .82rem;
    color: #b8d0e8;
    font-weight: 500
}

.screenshots-slider-nav {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 14px
}

.ss-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    padding: 0;
    transition: all .2s
}

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

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

.tournament-card {
    background: rgba(255, 255, 255, .04);
    border-radius: 12px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .09);
    transition: transform .22s, box-shadow .22s, border-color .22s;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .4);
    border-color: rgba(237, 108, 112, .3)
}

.tournament-card-header {
    display: flex;
    align-items: center;
    gap: 10px
}

.tournament-badge {
    padding: 3px 10px;
    background: rgba(237, 108, 112, .15);
    color: #ed6c70;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    border: 1px solid rgba(237, 108, 112, .3)
}

.tournament-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3
}

.tournament-desc {
    font-size: .87rem;
    color: #9ab4cc;
    line-height: 1.55;
    flex: 1
}

.tournament-meta {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.tournament-prize {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .87rem;
    color: #b8d0e8
}

.tournament-prize strong {
    color: #f5c518;
    font-size: 1rem
}

.tournament-timer {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .87rem;
    color: #8aa8cc
}

.timer-val {
    font-family: 'Inter', monospace;
    font-weight: 700;
    color: #4caf94;
    font-size: .95rem
}

.btn-tournament {
    width: 100%;
    justify-content: center;
    padding: 11px 20px
}

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

.app-table td {
    padding: 10px 14px
}

.app-download-text {
    color: #9ab4cc;
    font-size: .9rem;
    margin-bottom: 20px;
    line-height: 1.6
}

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

.btn-app {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, .06);
    border-radius: 10px;
    border: 1.5px solid rgba(255, 255, 255, .12);
    color: #fff;
    text-decoration: none;
    transition: all .22s
}

.btn-app:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(237, 108, 112, .5);
    transform: translateY(-2px);
    color: #fff
}

.btn-app svg {
    flex-shrink: 0;
    color: #d8e3f0
}

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

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

.btn-app-text strong {
    font-size: .95rem;
    font-weight: 700
}

.btn-appstore svg, .btn-playstore svg {
    color: #fff
}

.btn-apk {
    border-color: rgba(237, 108, 112, .35)
}

.slot-game-wrap {
    display: flex;
    justify-content: center
}

.slot-machine {
    background: linear-gradient(145deg, #0a2340, #06192e);
    border-radius: 16px;
    padding: 32px;
    border: 2px solid rgba(237, 108, 112, .3);
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .5)
}

.slot-reels {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px
}

.slot-reel {
    width: 88px;
    height: 88px;
    background: #041529;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: all .2s;
    overflow: hidden
}

.slot-reel.spinning {
    animation: reel-spin .12s linear infinite
}

@keyframes reel-spin {
    0% {
        transform: scaleY(1)
    }
    25% {
        transform: scaleY(0.8)
    }
    50% {
        transform: scaleY(1)
    }
    75% {
        transform: scaleY(0.9)
    }
    100% {
        transform: scaleY(1)
    }
}

.slot-symbol {
    line-height: 1;
    user-select: none
}

.slot-result {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 10px;
    transition: all .3s;
    padding: 12px
}

.slot-result.win {
    background: rgba(76, 175, 148, .15);
    color: #4caf94;
    border: 1px solid rgba(76, 175, 148, .3)
}

.slot-result.lose {
    background: rgba(237, 108, 112, .1);
    color: #ed6c70;
    border: 1px solid rgba(237, 108, 112, .2)
}

.btn-spin {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 1rem
}

.btn-spin:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none
}

.slot-result .btn-claim {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: #ed6c70;
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-size: .85rem;
    margin-top: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s
}

.slot-result .btn-claim:hover {
    background: #e8575b;
    transform: translateY(-1px)
}

.author-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, .04);
    border-radius: 12px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .08);
    margin-bottom: 24px
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(237, 108, 112, .15);
    border: 2px solid rgba(237, 108, 112, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ed6c70
}

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

.author-name a {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none
}

.author-name a:hover {
    color: #ed6c70
}

.author-title {
    color: #8aa8cc;
    font-size: .82rem;
    font-weight: 500
}

.author-bio {
    color: #9ab4cc;
    font-size: .83rem;
    line-height: 1.5;
    margin-top: 4px
}

.review-content h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.25
}

.review-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e0ecf8;
    margin: 28px 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.review-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #d0e0f0;
    margin: 22px 0 10px
}

.review-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #c8d8ec;
    margin: 16px 0 8px
}

.review-content p {
    color: #c0d0e4;
    line-height: 1.75;
    margin-bottom: 16px;
    font-size: .95rem
}

.review-content ul, .review-content ol {
    margin: 0 0 16px 22px;
    display: flex;
    flex-direction: column;
    gap: 7px
}

.review-content ul {
    list-style: disc
}

.review-content ol {
    list-style: decimal
}

.review-content li {
    color: #c0d0e4;
    line-height: 1.65;
    font-size: .95rem
}

.review-content a {
    color: #ed6c70
}

.review-content a:hover {
    color: #f08a8d;
    text-decoration: underline
}

.review-content strong, .review-content b {
    color: #e8f0f8;
    font-weight: 700
}

.review-content em, .review-content i {
    color: #b8d0e8
}

.review-content blockquote {
    border-left: 4px solid #ed6c70;
    padding: 14px 20px;
    background: rgba(237, 108, 112, .08);
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
    color: #b8d0e8;
    font-style: italic
}

.review-content table {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    font-size: .88rem
}

.review-content table th {
    background: rgba(237, 108, 112, .15);
    color: #ed6c70;
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(237, 108, 112, .25);
    font-weight: 600
}

.review-content table td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    color: #c0d0e4
}

.review-content table tr:hover {
    background: rgba(255, 255, 255, .03)
}

.review-content hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin: 24px 0
}

.review-content img {
    border-radius: 8px;
    margin: 16px 0;
    max-width: 100%
}

.review-content code {
    background: rgba(255, 255, 255, .08);
    padding: 2px 7px;
    border-radius: 4px;
    font-size: .85em;
    color: #ed6c70;
    font-family: 'Inter', monospace
}

.review-content pre {
    background: rgba(255, 255, 255, .05);
    border-radius: 8px;
    padding: 16px;
    overflow-x: auto;
    margin: 16px 0
}

.info-page-content {
    padding: 28px
}

.info-page-content h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px
}

.step-item {
    display: flex;
    gap: 18px;
    align-items: flex-start
}

.step-num {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ed6c70;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(237, 108, 112, .45)
}

.step-content strong {
    display: block;
    color: #fff;
    font-size: .97rem;
    font-weight: 700;
    margin-bottom: 5px
}

.step-content p {
    color: #9ab4cc;
    font-size: .88rem;
    line-height: 1.6;
    margin: 0
}

.register-cta {
    display: flex;
    justify-content: center;
    margin-top: 8px
}

.btn-register-big {
    font-size: 1.05rem;
    padding: 16px 36px
}

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

.faq-item {
    border-radius: 10px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    overflow: hidden;
    transition: border-color .2s
}

.faq-item.open {
    border-color: rgba(237, 108, 112, .3)
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    color: #e0ecf8;
    font-size: .95rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: color .2s;
    background: transparent;
    border: none;
    cursor: pointer
}

.faq-question:hover {
    color: #ed6c70
}

.faq-chevron {
    transition: transform .3s;
    flex-shrink: 0;
    color: #ed6c70
}

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

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

.faq-answer p {
    padding: 0 20px 16px;
    color: #9ab4cc;
    font-size: .9rem;
    line-height: 1.7;
    margin: 0
}

.faq-item.open .faq-answer {
    max-height: 300px
}

.site-footer {
    background: #071b36;
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: auto
}

.ftr-x9p1 {
    padding: 48px 0 24px
}

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

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

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

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

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

.ftr-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .07);
    color: #8aa8cc;
    transition: all .2s;
    border: 1px solid rgba(255, 255, 255, .1)
}

.ftr-social-link:hover {
    background: rgba(237, 108, 112, .2);
    color: #ed6c70;
    border-color: rgba(237, 108, 112, .4)
}

.ftr-email {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .83rem;
    color: #8aa8cc;
    text-decoration: none;
    transition: color .2s
}

.ftr-email:hover {
    color: #ed6c70
}

.ftr-links-group {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 32px
}

.ftr-links-title {
    display: block;
    color: #fff;
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: 14px
}

.ftr-links-list {
    display: flex;
    flex-direction: column;
    gap: 9px
}

.ftr-links-list a {
    color: #8aa8cc;
    font-size: .85rem;
    transition: color .2s;
    text-decoration: none
}

.ftr-links-list a:hover {
    color: #ed6c70
}

.ftr-payments, .ftr-providers, .ftr-trust {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .07)
}

.ftr-section-title {
    display: block;
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 14px
}

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

.ftr-pay-badge, .ftr-prov-badge {
    padding: 5px 12px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    font-size: .78rem;
    color: #9ab4cc;
    font-weight: 500
}

.ftr-trust-row {
    gap: 16px
}

.ftr-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    color: #8aa8cc;
    font-weight: 500
}

.ftr-18plus {
    background: rgba(237, 108, 112, .15);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
    font-weight: 800;
    color: #ed6c70;
    font-size: .85rem
}

.ftr-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .07)
}

.ftr-copyright {
    text-align: center
}

.ftr-copyright p {
    color: #6a8099;
    font-size: .8rem;
    line-height: 1.6
}

.ftr-legal {
    margin-top: 8px;
    color: #4a6278 !important;
    font-size: .76rem !important
}

.promo-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    background: #071b36;
    border-radius: 14px;
    border: 1.5px solid rgba(237, 108, 112, .4);
    padding: 18px 20px;
    max-width: 300px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .6);
    transform: translateY(0);
    transition: transform .3s;
    animation: promo-in .5s ease .8s both
}

@keyframes promo-in {
    from {
        transform: translateY(120%);
        opacity: 0
    }
    to {
        transform: translateY(0);
        opacity: 1
    }
}

.promo-widget.hidden {
    transform: translateY(120%)
}

.promo-widget-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #8aa8cc;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s
}

.promo-widget-close:hover {
    background: rgba(237, 108, 112, .2);
    color: #ed6c70
}

.promo-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .78rem;
    color: #8aa8cc;
    font-weight: 600;
    margin-bottom: 10px
}

.promo-code-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(237, 108, 112, .1);
    border: 1px dashed rgba(237, 108, 112, .5);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 12px
}

.promo-code-val {
    font-weight: 800;
    font-size: 1.1rem;
    color: #ed6c70;
    letter-spacing: 1px;
    flex: 1
}

.promo-copy-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: rgba(237, 108, 112, .2);
    color: #ed6c70;
    border-radius: 6px;
    font-size: .75rem;
    font-weight: 600;
    border: 1px solid rgba(237, 108, 112, .4);
    transition: all .2s
}

.promo-copy-btn:hover {
    background: rgba(237, 108, 112, .35)
}

.promo-copy-btn.copied {
    background: rgba(76, 175, 148, .2);
    color: #4caf94;
    border-color: rgba(76, 175, 148, .4)
}

.promo-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 11px 18px;
    font-size: .88rem
}

[data-v0-anim="fade-up"] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .5s ease, transform .5s ease
}

[data-v0-anim="fade-up"].visible {
    opacity: 1;
    transform: translateY(0)
}

.x8p3r {
    display: none;
    visibility: hidden;
    height: 0;
    overflow: hidden
}

.wp-nonce-field {
    display: none
}

.yst-breadcrumb {
    display: none
}

@media (max-width: 1024px) {
    .hdr-nav-wrap {
        display: none
    }

    .hdr-status-wrap {
        display: none
    }

    .hdr-burger {
        display: flex
    }

    .hdr-nav-wrap.active {
        display: flex;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #071b36;
        z-index: 999;
        flex-direction: column;
        padding: 24px 20px;
        overflow-y: auto
    }

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

    .hdr-nav-link {
        font-size: 1rem;
        padding: 14px 16px;
        border-radius: 10px;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, .05)
    }

    .hdr-status-wrap.active {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 16px;
        background: rgba(255, 255, 255, .04);
        border-radius: 10px;
        margin-top: 12px;
        width: 100%
    }

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

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

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

    .screenshots-slider-nav {
        display: flex
    }

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

@media (max-width: 768px) {
    .hdr-x7k2 {
        padding: 10px 0
    }

    .hdr-logo img {
        height: 36px
    }

    .hero-slider {
        height: 380px
    }

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

    .hero-subtitle {
        font-size: .92rem
    }

    .btn-hero {
        font-size: .88rem;
        padding: 12px 20px
    }

    [class^="bx-"], [class*=" bx-"] {
        padding: 20px 16px
    }

    .block-title {
        font-size: 1.15rem
    }

    .toc-list {
        grid-template-columns:1fr
    }

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

    .ftr-links-group {
        grid-template-columns:1fr 1fr
    }

    .review-content h1 {
        font-size: 1.4rem
    }

    .review-content h2 {
        font-size: 1.2rem
    }

    .promo-widget {
        right: 12px;
        bottom: 12px;
        left: 12px;
        max-width: none
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 320px
    }

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

    .hero-prev, .hero-next {
        display: none
    }

    .screenshots-grid {
        display: flex;
        flex-direction: column
    }

    .slot-reel {
        width: 72px;
        height: 72px;
        font-size: 2.4rem
    }

    .app-buttons {
        gap: 10px
    }

    .ftr-links-group {
        grid-template-columns:1fr
    }
}

@media (max-width: 1024px) {
    body.menu-open {
        overflow: hidden;
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .site-header .container {
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .hdr-x7k2 {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-width: 0;
        gap: 10px;
        padding: 10px 0;
    }

    .hdr-logo-wrap {
        flex: 1 1 auto;
        min-width: 0;
    }

    .hdr-logo {
        display: inline-flex;
        align-items: center;
        max-width: 100%;
    }

    .hdr-logo img {
        width: auto;
        height: 38px;
        max-width: 145px;
        object-fit: contain;
    }

    .hdr-status-wrap {
        display: none !important;
    }

    .hdr-buttons {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 0 0 auto;
        gap: 7px;
        margin-left: auto;
    }

    .btn-hdr {
        min-height: 38px;
        padding: 8px 11px;
        gap: 5px;
        border-radius: 8px;
        font-size: 0.74rem;
        line-height: 1;
    }

    .btn-hdr svg {
        width: 13px;
        height: 13px;
    }


    .hdr-burger {
        position: relative;
        z-index: 1002;
        display: flex !important;
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, 0.13);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.06);
        transition: background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
    }

    .hdr-burger:hover,
    .hdr-burger:focus-visible,
    .hdr-burger.active {
        background: rgba(237, 108, 112, 0.16);
        border-color: rgba(237, 108, 112, 0.5);
    }

    .hdr-burger:active {
        transform: scale(0.96);
    }

    .burger-line {
        display: block;
        width: 22px;
        height: 2px;
        flex-shrink: 0;
        border-radius: 10px;
        background: #fff;
        transform-origin: center;
        transition: transform 0.28s ease,
        opacity 0.2s ease;
    }

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

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

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

    .hdr-nav-wrap {
        position: fixed !important;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        z-index: 1001;
        display: flex !important;
        width: min(88vw, 360px);
        max-width: 100%;
        padding: 84px 16px 24px;
        overflow-y: auto;
        overscroll-behavior: contain;
        background: linear-gradient(
                180deg,
                rgba(7, 27, 54, 0.99) 0%,
                rgba(4, 21, 41, 0.99) 100%
        );
        border-left: 1px solid rgba(255, 255, 255, 0.09);
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.55);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform 0.32s ease,
        opacity 0.25s ease,
        visibility 0.32s ease;
    }

    .hdr-nav-wrap.active {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

    .hdr-nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 8px;
    }

    .hdr-nav li {
        width: 100%;
    }

    .hdr-nav-link {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 50px;
        gap: 12px;
        padding: 13px 14px;
        color: #d8e3f0;
        font-size: 0.94rem;
        font-weight: 600;
        line-height: 1.3;
        white-space: normal;
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.035);
    }

    .hdr-nav-link svg {
        width: 19px;
        height: 19px;
        flex: 0 0 19px;
        color: #ed6c70;
        opacity: 1;
    }

    .hdr-nav-link:hover,
    .hdr-nav-link:focus-visible,
    .hdr-nav-link.active {
        color: #fff;
        background: rgba(237, 108, 112, 0.13);
        border-color: rgba(237, 108, 112, 0.32);
        transform: none;
    }

    .hdr-mobile-overlay {
        position: fixed;
        inset: 0;
        z-index: 999;
        display: block;
        background: rgba(4, 21, 41, 0.74);
        backdrop-filter: blur(3px);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.28s ease,
        visibility 0.28s ease;
    }

    .hdr-mobile-overlay.active {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }
}

@media (max-width: 480px) {
    .site-header .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hdr-x7k2 {
        gap: 7px;
        padding: 8px 0;
    }

    .hdr-logo img {
        max-width: 118px;
        height: 34px;
    }

    .hdr-buttons {
        gap: 5px;
    }

    .btn-signup {
        min-height: 36px;
        padding: 7px 9px;
        font-size: 0.68rem;
    }

    .btn-signup svg {
        display: none;
    }

    .hdr-burger {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
        padding: 7px;
        border-radius: 8px;
    }

    .burger-line {
        width: 20px;
    }

    .hdr-nav-wrap {
        width: min(92vw, 340px);
        padding: 72px 12px 20px;
    }

    .hdr-nav-link {
        min-height: 48px;
        padding: 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) {
    .site-header {
        position: sticky;
        top: 0;
        z-index: 10000;
        isolation: isolate;
    }

    .hdr-x7k2 {
        position: relative;
        z-index: 10003;
    }

    .hdr-nav-wrap {
        z-index: 10002 !important;
        filter: none !important;
        opacity: 1;
    }

    .hdr-nav-wrap.active {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .hdr-mobile-overlay {
        z-index: 10001 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .hdr-burger {
        z-index: 10004 !important;
    }

    .hdr-logo-wrap,
    .hdr-buttons {
        position: relative;
        z-index: 10004;
    }
}