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

:root {
    --c-blue: #07498f;
    --c-dark: #002246;
    --c-btn-blue: #4690e0;
    --c-btn-orange: #fa5000;
    --c-white: #fff;
    --c-text: #e8eef7;
    --c-gold: #f5c518;
    --c-card: #0a3a6e;
    --c-card2: #0c4280;
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --ff: Montserrat, sans-serif;
    --shadow: 0 4px 24px rgba(0, 0, 0, .35)
}

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

body {
    font-family: var(--ff);
    background: var(--c-blue);
    color: var(--c-text);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden
}

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

a {
    color: var(--c-btn-blue);
    text-decoration: none;
    transition: color .2s
}

a:hover {
    color: #7ab4f0
}

ul {
    list-style: none
}

.xb4k2 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem
}

.xq91m {
    position: relative;
    overflow: hidden
}

.xf3p7 {
    opacity: 0;
    pointer-events: none
}

.xn88z {
    border-radius: var(--r-lg);
    padding: 2rem
}

.xj2d5 {
    display: none
}

.xr6t1 {
    transform: translateY(0)
}

.xw0s9 {
    font-size: .75rem;
    letter-spacing: .05em
}

.xv4k8 {
    background: rgba(255, 255, 255, .03)
}

.xm1q3 {
    max-width: 1200px
}

.xe9r2 {
    border: 1px solid rgba(255, 255, 255, .08)
}

.wp-content-placeholder {
    display: none
}

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

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

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

.x-hdr {
    background: linear-gradient(0deg, #07498f 0%, #002246 100%);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .5)
}

.x-hdr__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .75rem 0;
    flex-wrap: wrap
}

.x-hdr__logo img {
    height: 44px;
    width: auto;
    object-fit: contain
}

.x-hdr__nav {
    display: flex;
    align-items: center;
    gap: .25rem
}

.x-hdr__nav a {
    color: var(--c-text);
    font-size: .85rem;
    font-weight: 500;
    padding: .4rem .75rem;
    border-radius: var(--r-sm);
    transition: background .2s, color .2s
}

.x-hdr__nav a:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff
}

.x-hdr__right {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0
}

.x-online {
    font-size: .78rem;
    color: #a8c9f0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: .4rem
}

.x-online__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4cde82;
    animation: pulse 1.8s infinite
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    border: none;
    cursor: pointer;
    font-family: var(--ff);
    font-weight: 700;
    border-radius: var(--r-sm);
    transition: filter .2s, transform .15s;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: .02em
}

.btn:hover {
    filter: brightness(1.12);
    transform: translateY(-1px)
}

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

.btn--login {
    background: var(--c-btn-blue);
    color: #fff;
    padding: .5rem 1.1rem;
    font-size: .85rem
}

.btn--signup {
    background: var(--c-btn-orange);
    color: #fff;
    padding: .5rem 1.25rem;
    font-size: .85rem
}

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

.btn--xl {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: var(--r-md)
}

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

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

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

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

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

.x-nav-mobile {
    display: none;
    flex-direction: column;
    background: linear-gradient(0deg, #07498f 0%, #002246 100%);
    padding: 1rem;
    gap: .5rem
}

.x-nav-mobile.open {
    display: flex
}

.x-nav-mobile a {
    color: #fff;
    padding: .6rem 1rem;
    border-radius: var(--r-sm);
    font-weight: 500;
    font-size: .9rem
}

.x-nav-mobile a:hover {
    background: rgba(255, 255, 255, .1)
}

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

.x-hero__bg {
    position: absolute;
    inset: 0;
    background: url('/banner.jpg') center/cover no-repeat;
    z-index: 0
}

.x-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 34, 70, .92) 0%, rgba(7, 73, 143, .5) 60%, rgba(7, 73, 143, .1) 100%);
    z-index: 1
}

.x-hero__content {
    position: relative;
    z-index: 2;
    padding: 3rem 0
}

.x-hero__badge {
    display: inline-block;
    background: var(--c-btn-orange);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .3rem .8rem;
    border-radius: var(--r-sm);
    margin-bottom: 1rem
}

.x-hero__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: .75rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .5)
}

.x-hero__sub {
    font-size: 1.05rem;
    color: #c9dff5;
    margin-bottom: 1.75rem;
    max-width: 560px
}

.x-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center
}

.x-hero__bonus {
    font-size: .85rem;
    color: #a8c9f0;
    margin-top: .5rem
}

.x-hero__bonus strong {
    color: #f5c518
}

.x-section {
    padding: 3rem 0
}

.x-section--alt {
    background: rgba(0, 0, 0, .15)
}

.x-section__title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: .5rem;
    line-height: 1.3
}

.x-section__sub {
    color: #a8c9f0;
    margin-bottom: 1.75rem;
    font-size: .95rem
}

.x-section__head {
    margin-bottom: 1.75rem
}

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

.x-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--c-card);
    min-width: 340px
}

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

.x-table tr:hover {
    background: rgba(255, 255, 255, .05)
}

.x-table tr:last-child {
    border-bottom: none
}

.x-table td {
    padding: .85rem 1.1rem;
    font-size: .9rem;
    vertical-align: top;
    text-align: left
}

.x-table td:first-child {
    color: #a8c9f0;
    font-weight: 600;
    width: 42%;
    white-space: nowrap
}

.x-table td:last-child {
    color: #e8eef7;
    font-weight: 500
}

.x-table__rating {
    color: var(--c-gold);
    font-size: 1.1rem;
    letter-spacing: 2px
}

.x-shots {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 1.25rem
}

.x-shot {
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .3s;
    cursor: pointer
}

.x-shot:hover {
    transform: scale(1.03)
}

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

.x-shot__cap {
    background: var(--c-card);
    padding: .6rem .9rem;
    font-size: .82rem;
    color: #a8c9f0;
    text-align: center
}

.x-winners {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow)
}

.x-winner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--c-card);
    padding: .7rem 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    transition: background .15s
}

.x-winner:nth-child(even) {
    background: var(--c-card2)
}

.x-winner:hover {
    background: rgba(70, 144, 224, .15)
}

.x-winner:last-child {
    border-bottom: none
}

.x-winner__pos {
    font-size: .8rem;
    font-weight: 700;
    color: #a8c9f0;
    min-width: 28px;
    text-align: center
}

.x-winner__pos--top {
    color: var(--c-gold)
}

.x-winner__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-btn-blue), var(--c-btn-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.x-winner__name {
    flex: 1;
    font-size: .88rem;
    font-weight: 600;
    color: #e8eef7
}

.x-winner__amount {
    font-size: .92rem;
    font-weight: 700;
    color: #4cde82
}

.x-winner__game {
    font-size: .75rem;
    color: #7a9cbf;
    margin-left: auto;
    white-space: nowrap
}

.x-tours {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 1.25rem
}

.x-tour {
    background: var(--c-card);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform .3s, box-shadow .3s
}

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

.x-tour__head {
    background: linear-gradient(135deg, var(--c-btn-blue), #1a5fa8);
    padding: 1.1rem 1.25rem
}

.x-tour__head--2 {
    background: linear-gradient(135deg, #7b3fa0, #4a1fa8)
}

.x-tour__head--3 {
    background: linear-gradient(135deg, var(--c-btn-orange), #c23d00)
}

.x-tour__label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    margin-bottom: .3rem
}

.x-tour__title {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3
}

.x-tour__body {
    padding: 1.1rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.x-tour__desc {
    font-size: .85rem;
    color: #a8c9f0;
    line-height: 1.6
}

.x-tour__prize {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--c-gold)
}

.x-tour__prize span {
    font-size: .8rem;
    color: #7a9cbf;
    font-weight: 500
}

.x-tour__timer {
    display: flex;
    gap: .5rem;
    align-items: center;
    font-size: .8rem;
    color: #a8c9f0
}

.x-tour__timer-val {
    background: rgba(0, 0, 0, .25);
    border-radius: 6px;
    padding: .2rem .5rem;
    font-weight: 700;
    color: #fff;
    font-size: .9rem;
    min-width: 32px;
    text-align: center
}

.x-tour__cta {
    margin-top: auto;
    padding-top: .75rem
}

.x-demo {
    background: var(--c-card);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow)
}

.x-demo__frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0
}

.x-demo__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block
}

.x-demo__info {
    padding: 1.25rem
}

.x-demo__info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .4rem
}

.x-demo__info p {
    font-size: .85rem;
    color: #a8c9f0
}

.x-content-block {
    background: var(--c-card);
    border-radius: var(--r-md);
    padding: 2rem;
    box-shadow: var(--shadow);
    line-height: 1.85
}

.x-content-block h2, .x-content-block h3, .x-content-block h4 {
    color: #fff;
    margin: 1.5rem 0 .75rem;
    line-height: 1.3
}

.x-content-block h2 {
    font-size: 1.4rem
}

.x-content-block h3 {
    font-size: 1.15rem
}

.x-content-block h4 {
    font-size: 1rem
}

.x-content-block p {
    color: #c9dff5;
    margin-bottom: 1rem;
    font-size: .95rem
}

.x-content-block ul, .x-content-block ol {
    margin: .75rem 0 1rem 1.5rem;
    color: #c9dff5;
    font-size: .95rem
}

.x-content-block ul {
    list-style: disc
}

.x-content-block ol {
    list-style: decimal
}

.x-content-block li {
    margin-bottom: .4rem
}

.x-content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: .9rem
}

.x-content-block table th {
    background: rgba(70, 144, 224, .2);
    color: #fff;
    padding: .6rem .8rem;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, .15)
}

.x-content-block table td {
    padding: .5rem .8rem;
    border: 1px solid rgba(255, 255, 255, .1);
    color: #c9dff5
}

.x-content-block a {
    color: var(--c-btn-blue)
}

.x-content-block strong, .x-content-block b {
    color: #fff
}

.x-content-block blockquote {
    border-left: 3px solid var(--c-btn-blue);
    padding: .5rem 1rem;
    margin: 1rem 0;
    background: rgba(70, 144, 224, .1);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    color: #a8c9f0;
    font-style: italic
}

.x-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--c-card2);
    border-radius: var(--r-md);
    padding: 1.25rem;
    margin-top: 1.5rem;
    box-shadow: var(--shadow)
}

.x-author__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4690e0, #002246);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0
}

.x-author__info {
    flex: 1
}

.x-author__name {
    font-weight: 700;
    color: #fff;
    font-size: .95rem
}

.x-author__role {
    font-size: .8rem;
    color: #7a9cbf;
    margin-bottom: .2rem
}

.x-author__link {
    font-size: .8rem;
    color: var(--c-btn-blue)
}

.x-faq {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.x-faq-item {
    background: var(--c-card);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
    transition: box-shadow .2s
}

.x-faq-item.open {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .35)
}

.x-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 700;
    font-size: .95rem;
    color: #fff;
    user-select: none;
    transition: background .2s
}

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

.x-faq-q::after {
    content: "+";
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--c-btn-blue);
    flex-shrink: 0;
    transition: transform .3s
}

.x-faq-item.open .x-faq-q::after {
    transform: rotate(45deg)
}

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

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

.x-faq-a__inner {
    padding: 0 1.25rem 1.1rem;
    color: #c9dff5;
    font-size: .9rem;
    line-height: 1.75;
    border-top: 1px solid rgba(255, 255, 255, .07)
}

.x-ftr {
    background: linear-gradient(0deg, #07498f 0%, #002246 100%);
    padding: 2.5rem 0 1.5rem;
    margin-top: auto
}

.x-ftr__top {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem
}

.x-ftr__logo img {
    height: 40px;
    width: auto;
    margin-bottom: .75rem
}

.x-ftr__desc {
    font-size: .8rem;
    color: #7a9cbf;
    max-width: 280px;
    line-height: 1.6
}

.x-ftr__col h4 {
    font-size: .85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .75rem;
    text-transform: uppercase;
    letter-spacing: .06em
}

.x-ftr__col ul li {
    margin-bottom: .4rem
}

.x-ftr__col ul li a {
    font-size: .83rem;
    color: #a8c9f0;
    transition: color .2s
}

.x-ftr__col ul li a:hover {
    color: #fff
}

.x-ftr__logos {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: center
}

.x-ftr__logos span {
    background: rgba(255, 255, 255, .1);
    border-radius: 6px;
    padding: .25rem .6rem;
    font-size: .72rem;
    font-weight: 600;
    color: #a8c9f0;
    white-space: nowrap
}

.x-ftr__sep {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin: 1.5rem 0
}

.x-ftr__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap
}

.x-ftr__copy {
    font-size: .78rem;
    color: #5e7ea0;
    line-height: 1.6
}

.x-ftr__legal {
    font-size: .72rem;
    color: #3d5a80;
    max-width: 600px;
    line-height: 1.5
}

.x-ftr__age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #3d5a80;
    font-size: .75rem;
    font-weight: 700;
    color: #3d5a80;
    flex-shrink: 0
}

.x-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: linear-gradient(90deg, #002246 0%, #07498f 50%, #002246 100%);
    border-top: 2px solid var(--c-btn-orange);
    padding: .6rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5);
    animation: slideUp .5s ease .8s both
}

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

.x-widget__text {
    font-size: .85rem;
    color: #c9dff5;
    font-weight: 500
}

.x-widget__text strong {
    color: var(--c-gold)
}

.x-widget__close {
    background: none;
    border: none;
    color: #5e7ea0;
    cursor: pointer;
    font-size: 1.1rem;
    padding: .25rem;
    line-height: 1;
    flex-shrink: 0;
    transition: color .2s
}

.x-widget__close:hover {
    color: #fff
}

body {
    padding-bottom: 68px
}

.x-slider-wrap {
    position: relative;
    overflow: hidden
}

.x-slider-track {
    display: flex;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1)
}

.x-slider-prev, .x-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 34, 70, .8);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background .2s;
    font-size: .9rem
}

.x-slider-prev:hover, .x-slider-next:hover {
    background: var(--c-btn-blue)
}

.x-slider-prev {
    left: .5rem
}

.x-slider-next {
    right: .5rem
}

.x-slider-dots {
    display: flex;
    justify-content: center;
    gap: .4rem;
    margin-top: .75rem
}

.x-slider-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    cursor: pointer;
    transition: background .2s
}

.x-slider-dots span.active {
    background: var(--c-btn-blue)
}

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

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

@media (max-width: 900px) {
    .x-tours {
        grid-template-columns:1fr;
        max-width: 480px;
        margin: 0 auto
    }

    .x-shots {
        grid-template-columns:1fr
    }
}

@media (max-width: 768px) {
    .x-hdr__nav {
        display: none
    }

    .burger {
        display: flex
    }

    .x-hero {
        min-height: 400px
    }

    .x-tours {
        grid-template-columns:1fr;
        max-width: 100%
    }

    .x-shot {
        min-width: 280px
    }
}

@media (max-width: 480px) {
    .x-hdr__inner {
        gap: .5rem
    }

    .x-hero__title {
        font-size: 1.5rem
    }

    .btn--xl {
        padding: .8rem 1.5rem;
        font-size: .95rem
    }

    .x-widget {
        flex-wrap: wrap;
        gap: .5rem;
        padding: .5rem .75rem
    }

    .x-widget__text {
        font-size: .78rem;
        text-align: center
    }

    body {
        padding-bottom: 90px
    }

    .x-ftr__top {
        flex-direction: column;
        gap: 1.5rem
    }
}

@media (min-width: 901px) {
    .x-slider-prev, .x-slider-next {
        display: none
    }
}
