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

:root {
    --clr-bg: #1A1B20;
    --clr-bg2: #212229;
    --clr-bg3: #262832;
    --clr-green: #20AA2E;
    --clr-green-dark: #189925;
    --clr-text: #E8E9EE;
    --clr-muted: #9A9BAA;
    --clr-border: #2F3140;
    --clr-card: #1E1F27;
    --clr-gold: #F5C542;
    --rad-sm: 6px;
    --rad-md: 12px;
    --rad-lg: 20px;
    --trans: 0.25s ease
}

html {
    scroll-behavior: smooth;
    background: var(--clr-bg)
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.65;
    font-size: 15px;
    min-width: 320px;
    overflow-x: hidden
}

a {
    color: var(--clr-green);
    text-decoration: none;
    transition: color var(--trans)
}

a:hover {
    color: #4dcf5b
}

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

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

h1 {
    font-size: clamp(1.5rem, 4vw, 2.6rem);
    margin-bottom: .75rem
}

h2 {
    font-size: clamp(1.25rem, 3vw, 2rem);
    margin-bottom: .6rem
}

h3 {
    font-size: clamp(1.05rem, 2.5vw, 1.4rem);
    margin-bottom: .5rem
}

p {
    margin-bottom: .9rem
}

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

li {
    margin-bottom: .35rem
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: .93rem
}

table th {
    background: var(--clr-bg3);
    color: var(--clr-text);
    font-weight: 700;
    padding: .65rem .9rem;
    text-align: left;
    border: 1px solid var(--clr-border)
}

table td {
    padding: .6rem .9rem;
    border: 1px solid var(--clr-border);
    text-align: left
}

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border-radius: var(--rad-sm);
    transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1
}

.btn--green {
    background: var(--clr-green);
    color: #fff
}

.btn--green:hover {
    background: var(--clr-green-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 170, 46, .35)
}

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

.btn--dark:hover {
    background: #30333f;
    color: #fff;
    transform: translateY(-2px)
}

.btn--sm {
    padding: .45rem .9rem;
    font-size: .8rem
}

.btn--md {
    padding: .6rem 1.2rem;
    font-size: .9rem
}

.btn--lg {
    padding: .8rem 1.7rem;
    font-size: 1rem
}

.btn--xl {
    padding: 1rem 2.2rem;
    font-size: 1.05rem;
    border-radius: var(--rad-md)
}

.btn--full {
    width: 100%
}

.site-header {
    background: var(--clr-bg);
    border-bottom: 1px solid var(--clr-border);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow var(--trans)
}

.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, .45)
}

.hdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .65rem 0;
    flex-wrap: nowrap
}

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

.hdr-nav {
    display: flex;
    align-items: center;
    gap: .2rem;
    flex: 1;
    justify-content: center
}

.hdr-nav a {
    color: var(--clr-muted);
    font-size: .85rem;
    font-weight: 600;
    padding: .45rem .7rem;
    border-radius: var(--rad-sm);
    transition: color var(--trans), background var(--trans)
}

.hdr-nav a:hover {
    color: var(--clr-text);
    background: rgba(255, 255, 255, .06)
}

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

.hdr-online {
    font-size: .78rem;
    color: var(--clr-muted);
    display: flex;
    align-items: center;
    gap: .35rem;
    white-space: nowrap
}

.hdr-online span.dot {
    width: 7px;
    height: 7px;
    background: var(--clr-green);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s infinite
}

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

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

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform .3s, opacity .3s
}

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

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

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

.mob-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 27, 32, .97);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s
}

.mob-menu.open {
    opacity: 1;
    pointer-events: all
}

.mob-menu a {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-text);
    padding: .6rem 1.2rem
}

.mob-menu .mob-btns {
    display: flex;
    flex-direction: column;
    gap: .7rem;
    width: 220px;
    margin-top: .8rem
}

.mob-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: none;
    border: none;
    color: var(--clr-text);
    font-size: 1.6rem;
    cursor: pointer
}

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

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

.hero-slide {
    display: none;
    position: relative
}

.hero-slide.active {
    display: block
}

.hero-slide img {
    width: 100%;
    max-height: 520px;
    object-fit: cover
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26, 27, 32, .88) 0%, rgba(26, 27, 32, .2) 100%);
    display: flex;
    align-items: center
}

.hero-content {
    max-width: 560px;
    padding: 2.5rem 2rem
}

.hero-content h1 {
    font-size: clamp(1.6rem, 4.5vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .5)
}

.hero-content p {
    color: rgba(232, 233, 238, .85);
    font-size: 1rem;
    margin-bottom: 1.6rem;
    line-height: 1.6
}

.hero-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px
}

.hero-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    padding: 0;
    transition: background var(--trans)
}

.hero-dots button.active {
    background: var(--clr-green)
}

.hero-prev, .hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 27, 32, .7);
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    font-size: 1.4rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background var(--trans)
}

.hero-prev {
    left: 12px
}

.hero-next {
    right: 12px
}

.hero-prev:hover, .hero-next:hover {
    background: var(--clr-green)
}

.section-block {
    padding: 3rem 0
}

.sec-title {
    font-size: clamp(1.2rem, 3vw, 1.75rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .6rem
}

.sec-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1.2em;
    background: var(--clr-green);
    border-radius: 3px;
    flex-shrink: 0
}

.block-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--rad-lg);
    padding: 1.6rem;
    margin-bottom: 1.5rem
}

.block-card + .block-card {
    margin-top: 0
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.toc-list li a {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem .7rem;
    border-radius: var(--rad-sm);
    color: var(--clr-muted);
    font-size: .9rem;
    transition: background var(--trans), color var(--trans)
}

.toc-list li a:hover {
    background: rgba(255, 255, 255, .06);
    color: var(--clr-text)
}

.toc-list li a::before {
    content: counter(toc-counter);
    counter-increment: toc-counter;
    min-width: 1.6rem;
    height: 1.6rem;
    background: var(--clr-bg3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    font-weight: 700;
    color: var(--clr-green);
    flex-shrink: 0
}

.toc-list {
    counter-reset: toc-counter
}

.mirrors-live {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .9rem;
    font-size: .88rem;
    color: var(--clr-muted)
}

.mirrors-live strong {
    color: var(--clr-green)
}

.mirror-status {
    display: inline-block;
    padding: .22rem .6rem;
    border-radius: 30px;
    font-size: .75rem;
    font-weight: 700;
    background: rgba(32, 170, 46, .15);
    color: var(--clr-green)
}

.mirror-status.offline {
    background: rgba(220, 53, 69, .12);
    color: #dc3545
}

.tournaments-grid {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    padding-bottom: .5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none
}

.tournaments-grid::-webkit-scrollbar {
    display: none
}

.tournament-card {
    flex: 0 0 300px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--rad-lg);
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: .7rem;
    transition: transform var(--trans), box-shadow var(--trans)
}

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

.tc-badge {
    display: inline-block;
    background: linear-gradient(135deg, #20AA2E, #189925);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    padding: .3rem .75rem;
    border-radius: 30px;
    letter-spacing: .04em;
    width: fit-content
}

.tc-prize {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-gold)
}

.tc-timer {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    color: var(--clr-muted)
}

.tc-timer strong {
    color: var(--clr-text);
    font-variant-numeric: tabular-nums
}

.app-badges {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    margin-top: 1.1rem
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--clr-bg3);
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    padding: .7rem 1.1rem;
    border-radius: var(--rad-md);
    font-size: .85rem;
    font-weight: 700;
    text-decoration: none;
    transition: background var(--trans), transform var(--trans)
}

.app-badge:hover {
    background: #30333f;
    transform: translateY(-2px);
    color: #fff
}

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

.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--rad-lg);
    border: 1px solid var(--clr-border)
}

.video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.slot-machine {
    text-align: center;
    padding: 1.5rem 1rem
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0
}

.slot-reel {
    width: 80px;
    height: 80px;
    background: var(--clr-bg3);
    border: 2px solid var(--clr-border);
    border-radius: var(--rad-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    overflow: hidden;
    transition: border-color .3s
}

.slot-reel.spinning {
    border-color: var(--clr-green);
    animation: reel-shake .15s infinite alternate
}

@keyframes reel-shake {
    from {
        transform: translateY(-3px)
    }
    to {
        transform: translateY(3px)
    }
}

.slot-win {
    background: linear-gradient(135deg, rgba(32, 170, 46, .18), rgba(32, 170, 46, .06));
    border: 1px solid var(--clr-green);
    border-radius: var(--rad-lg);
    padding: 1.2rem 1.5rem;
    margin-top: 1.2rem;
    display: none
}

.slot-win.show {
    display: block;
    animation: fadeInUp .4s ease
}

.slot-win h3 {
    color: var(--clr-green);
    margin-bottom: .5rem
}

.slot-result-msg {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .3rem
}

.slot-lose {
    color: #dc3545;
    font-size: .95rem;
    font-weight: 600;
    margin-top: .7rem;
    min-height: 1.5rem
}

.review-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.1rem;
    margin-bottom: 2rem
}

.review-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--rad-lg);
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    transition: box-shadow var(--trans)
}

.review-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3)
}

.rc-head {
    display: flex;
    align-items: center;
    gap: .75rem
}

.rc-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-border)
}

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

.rc-stars svg {
    width: 16px;
    height: 16px
}

.rc-name {
    font-weight: 700;
    font-size: .9rem
}

.rc-date {
    font-size: .75rem;
    color: var(--clr-muted)
}

.rc-text {
    font-size: .87rem;
    color: rgba(232, 233, 238, .8);
    line-height: 1.6
}

.review-form {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--rad-lg);
    padding: 1.6rem;
    max-width: 540px
}

.review-form h3 {
    margin-bottom: 1.1rem
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    margin-bottom: .9rem
}

.form-group label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--clr-muted)
}

.form-group input, .form-group textarea {
    background: var(--clr-bg3);
    border: 1px solid var(--clr-border);
    border-radius: var(--rad-sm);
    color: var(--clr-text);
    font-family: 'Montserrat', sans-serif;
    font-size: .9rem;
    padding: .65rem .9rem;
    outline: none;
    transition: border-color var(--trans)
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--clr-green)
}

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

.form-success {
    background: rgba(32, 170, 46, .12);
    border: 1px solid var(--clr-green);
    border-radius: var(--rad-sm);
    color: var(--clr-green);
    padding: .8rem 1rem;
    font-size: .9rem;
    font-weight: 600;
    display: none;
    margin-top: .8rem
}

.form-success.show {
    display: block;
    animation: fadeInUp .3s ease
}

.content-block .text h2 {
    margin-top: 2rem;
    margin-bottom: .8rem
}

.content-block .text h3 {
    margin-top: 1.5rem;
    margin-bottom: .6rem;
    color: var(--clr-green)
}

.content-block .text p {
    line-height: 1.8
}

.content-block .text ul, .content-block .text ol {
    padding-left: 1.6rem;
    margin-bottom: 1rem
}

.content-block .text li {
    margin-bottom: .45rem;
    line-height: 1.7
}

.content-block .text table {
    margin: 1rem 0
}

.content-block .text a {
    color: var(--clr-green);
    text-decoration: underline
}

.content-block .text blockquote {
    border-left: 3px solid var(--clr-green);
    padding: .6rem 1rem;
    background: var(--clr-bg3);
    border-radius: 0 var(--rad-sm) var(--rad-sm) 0;
    margin: 1rem 0;
    font-style: italic
}

.content-block .text img {
    border-radius: var(--rad-md);
    margin: 1rem 0
}

.content-block .text hr {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 1.5rem 0
}

.author-box {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--rad-lg);
    padding: 1.3rem;
    margin: 2rem 0
}

.author-box img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-border);
    flex-shrink: 0
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: .3rem
}

.author-info p {
    font-size: .83rem;
    color: var(--clr-muted);
    margin: 0
}

.author-info a {
    font-size: .82rem
}

.site-footer {
    background: var(--clr-bg);
    border-top: 1px solid var(--clr-border);
    padding: 3rem 0 1.5rem
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between
}

.footer-logo img {
    height: 40px
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem .9rem
}

.footer-nav a {
    font-size: .85rem;
    color: var(--clr-muted);
    transition: color var(--trans)
}

.footer-nav a:hover {
    color: var(--clr-text)
}

.footer-providers {
    margin: 1rem 0
}

.fp-label {
    font-size: .78rem;
    color: var(--clr-muted);
    margin-bottom: .6rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase
}

.fp-list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem
}

.fp-chip {
    background: var(--clr-bg3);
    border: 1px solid var(--clr-border);
    border-radius: 4px;
    padding: .3rem .65rem;
    font-size: .75rem;
    color: var(--clr-muted);
    font-weight: 600
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 1rem 0
}

.pay-chip {
    background: var(--clr-bg3);
    border: 1px solid var(--clr-border);
    border-radius: var(--rad-sm);
    padding: .4rem .75rem;
    font-size: .82rem;
    font-weight: 700;
    color: var(--clr-text)
}

.footer-legal {
    border-top: 1px solid var(--clr-border);
    padding-top: 1.2rem;
    font-size: .78rem;
    color: var(--clr-muted);
    line-height: 1.7
}

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

.footer-legal a:hover {
    color: var(--clr-text)
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 98;
    background: var(--clr-bg3);
    border-top: 2px solid var(--clr-green);
    padding: .75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap
}

.sw-text {
    font-size: .88rem;
    color: var(--clr-text);
    font-weight: 600
}

.sw-text strong {
    color: var(--clr-green)
}

.sw-close {
    background: none;
    border: none;
    color: var(--clr-muted);
    cursor: pointer;
    font-size: 1.2rem;
    padding: .25rem .4rem;
    margin-left: .5rem;
    line-height: 1
}

.sw-close:hover {
    color: var(--clr-text)
}

.info-page {
    padding: 3rem 0
}

.info-page h1 {
    margin-bottom: 1.5rem
}

.info-page h2 {
    margin-top: 2rem;
    margin-bottom: .7rem;
    font-size: 1.3rem
}

.info-page p {
    line-height: 1.8;
    margin-bottom: .9rem;
    color: rgba(232, 233, 238, .85)
}

.info-page ul {
    padding-left: 1.5rem;
    margin-bottom: .9rem
}

.info-page li {
    margin-bottom: .4rem;
    line-height: 1.7;
    color: rgba(232, 233, 238, .85)
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    color: var(--clr-muted);
    padding: 1rem 0 .5rem;
    flex-wrap: wrap
}

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

.breadcrumb a:hover {
    color: var(--clr-text)
}

.breadcrumb span {
    color: var(--clr-muted)
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: .7rem
}

.faq-item {
    border: 1px solid var(--clr-border);
    border-radius: var(--rad-md);
    overflow: hidden
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .9rem 1.1rem;
    cursor: pointer;
    font-weight: 700;
    font-size: .93rem;
    background: var(--clr-card);
    transition: background var(--trans);
    user-select: none;
    gap: .5rem
}

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

.faq-q svg {
    flex-shrink: 0;
    transition: transform .3s
}

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

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .3s ease;
    font-size: .9rem;
    color: rgba(232, 233, 238, .8);
    line-height: 1.7;
    padding: 0 1.1rem;
    background: var(--clr-bg)
}

.faq-item.open .faq-a {
    max-height: 600px;
    padding: .9rem 1.1rem
}

.badge-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 2px solid var(--clr-muted);
    border-radius: 50%;
    font-size: .72rem;
    font-weight: 800;
    color: var(--clr-muted);
    flex-shrink: 0
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

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

.fade-in.visible {
    opacity: 1;
    transform: none
}

.rr-x7k2 {
    display: none;
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.wp-block-image {
    margin: 1rem 0;
    border-radius: var(--rad-md)
}

.has-text-align-center {
    text-align: center
}

.elementor-invisible {
    visibility: hidden
}

.post-thumbnail {
    display: none
}

.entry-footer {
    display: none
}

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

    .burger {
        display: flex
    }

    .mob-menu {
        display: flex
    }
}

@media (max-width: 700px) {
    .hero-content {
        padding: 1.5rem 1rem
    }

    .hero-content h1 {
        font-size: 1.5rem
    }

    .tournaments-grid {
        gap: .85rem
    }

    .tournament-card {
        flex: 0 0 260px
    }

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

    .footer-top {
        flex-direction: column;
        gap: 1.3rem
    }

    .hdr-online {
        display: none
    }

    .slot-reel {
        width: 65px;
        height: 65px;
        font-size: 1.8rem
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.25rem
    }

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

    .sticky-widget {
        padding: .6rem .75rem;
        gap: .6rem
    }
}

.yvscs {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--rad-lg);
    padding: 2rem;
    margin: 2rem auto;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .32);
    color: var(--clr-text);
    overflow: hidden;
}

.yvscs h1,
.yvscs h2,
.yvscs h3,
.yvscs h4 {
    color: var(--clr-text);
    font-weight: 800;
    line-height: 1.25;
}

.yvscs h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin: 0 0 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--clr-border);
}

.yvscs h2 {
    font-size: clamp(1.25rem, 3vw, 1.7rem);
    margin: 2rem 0 .8rem;
    padding-left: .9rem;
    border-left: 4px solid var(--clr-green);
}

.yvscs h3 {
    font-size: clamp(1.05rem, 2.4vw, 1.28rem);
    margin: 1.5rem 0 .6rem;
    color: var(--clr-green);
}

.yvscs p {
    color: rgba(232, 233, 238, .86);
    font-size: .98rem;
    line-height: 1.8;
    margin: 0 0 1rem;
}

.yvscs strong,
.yvscs b {
    color: #fff;
    font-weight: 800;
}

.yvscs a {
    color: var(--clr-green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.yvscs ul,
.yvscs ol {
    margin: 1rem 0 1.3rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: .65rem;
}

.yvscs li {
    position: relative;
    padding: .75rem .9rem .75rem 2.45rem;
    background: var(--clr-bg3);
    border: 1px solid var(--clr-border);
    border-radius: var(--rad-md);
    color: rgba(232, 233, 238, .86);
    line-height: 1.55;
}

.yvscs li::before {
    content: "";
    position: absolute;
    left: .9rem;
    top: 1rem;
    width: .65rem;
    height: .65rem;
    border-radius: 50%;
    background: var(--clr-green);
    box-shadow: 0 0 0 4px rgba(32, 170, 46, .13);
}

.yvscs table {
    width: 100%;
    min-width: 720px;
    border-collapse: separate;
    border-spacing: 0;
    margin: 1.3rem 0;
    border: 1px solid var(--clr-border);
    border-radius: var(--rad-md);
    overflow: hidden;
    background: var(--clr-bg);
}

.yvscs table th {
    background: var(--clr-bg3);
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .85rem 1rem;
    border: 0;
    border-bottom: 1px solid var(--clr-border);
    white-space: nowrap;
}

.yvscs table td {
    padding: .85rem 1rem;
    color: rgba(232, 233, 238, .84);
    border: 0;
    border-bottom: 1px solid var(--clr-border);
    white-space: nowrap;
}

.yvscs table tr:last-child td {
    border-bottom: 0;
}

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

.yvscs blockquote {
    margin: 1.4rem 0;
    padding: 1rem 1.2rem;
    background: rgba(32, 170, 46, .08);
    border-left: 4px solid var(--clr-green);
    border-radius: 0 var(--rad-md) var(--rad-md) 0;
    color: rgba(232, 233, 238, .86);
}

@media (max-width: 768px) {

    .yvscs {
        width: calc(100% - 24px);
        max-width: calc(100% - 24px);
        padding: 1.1rem;
        margin: 1.2rem auto;
        border-radius: 16px;
        overflow: hidden;
    }

    .yvscs h1 {
        font-size: 1.45rem;
        line-height: 1.25;
    }

    .yvscs h2 {
        font-size: 1.2rem;
        line-height: 1.3;
        margin-top: 1.6rem;
        padding-left: .75rem;
    }

    .yvscs h3 {
        font-size: 1.02rem;
    }

    .yvscs p {
        font-size: .92rem;
        line-height: 1.72;
    }

    .yvscs ul,
    .yvscs ol {
        gap: .55rem;
    }

    .yvscs li {
        padding: .7rem .75rem .7rem 2.1rem;
        font-size: .88rem;
    }

    .yvscs li::before {
        left: .75rem;
        top: .95rem;
    }

    .yvscs table {
        display: block;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        border-radius: 12px;
    }

    .yvscs table thead,
    .yvscs table tbody {
        display: table;
        width: max-content;
        min-width: 680px;
    }

    .yvscs table th,
    .yvscs table td {
        padding: .7rem .8rem;
        font-size: .8rem;
    }

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

    .yvscs table::-webkit-scrollbar-track {
        background: var(--clr-bg3);
        border-radius: 999px;
    }

    .yvscs table::-webkit-scrollbar-thumb {
        background: var(--clr-green);
        border-radius: 999px;
    }
}

@media (max-width: 480px) {

    .yvscs {
        width: calc(100% - 20px);
        max-width: calc(100% - 20px);
        padding: 1rem;
    }

    .yvscs h1 {
        font-size: 1.28rem;
    }

    .yvscs h2 {
        font-size: 1.08rem;
    }

    .yvscs p,
    .yvscs li {
        font-size: .86rem;
    }
}