:root {
    --c-bg: #042522;
    --c-header: #053029;
    --c-btn-login: #013D33;
    --c-btn-reg: #B30AD7;
    --c-text: #e8f0ef;
    --c-text-muted: #9ab8b4;
    --c-accent: #B30AD7;
    --c-border: #0a4a3e;
    --c-card: #063630;
    --c-card2: #052e28;
    --radius: 12px;
    --radius-sm: 8px;
    --trans: .25s ease
}

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

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

body {
    background: var(--c-bg);
    color: var(--c-text);
    font-family: 'Open Sans', 'Roboto', Arial, sans-serif;
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden
}

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

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

a:hover {
    color: #d44aff
}

.x7k2p {
    display: none
}

.m3n9q {
    visibility: hidden;
    position: absolute;
    left: -9999px
}

.wp-block-group {
    display: block
}

.elementor-widget {
    display: block
}

.entry-content {
    display: block
}

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

.xw-grid-2 {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 24px
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    border: none;
    transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: .3px
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .35)
}

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

.btn-login {
    background: var(--c-btn-login);
    color: #a8e6cf;
    border: 1px solid #0a5a4a
}

.btn-login:hover {
    background: #024a3d;
    color: #c8f0e0
}

.btn-reg {
    background: var(--c-btn-reg);
    color: #fff;
    box-shadow: 0 4px 15px rgba(179, 10, 215, .35)
}

.btn-reg:hover {
    background: #c40af0;
    box-shadow: 0 6px 22px rgba(179, 10, 215, .55);
    color: #fff
}

.btn-lg {
    padding: 14px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius)
}

.btn-sm {
    padding: 7px 16px;
    font-size: .82rem
}

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

.btn-outline:hover {
    background: var(--c-btn-reg);
    color: #fff
}

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

.xw-header-inner {
    display: grid;
    grid-template-columns:auto 1fr auto auto;
    align-items: center;
    gap: 20px;
    padding: 12px 20px;
    max-width: 1280px;
    margin: 0 auto
}

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

.xw-logo:hover {
    opacity: .85
}

.xw-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap
}

.xw-nav a {
    color: var(--c-text-muted);
    font-size: .88rem;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background var(--trans), color var(--trans);
    font-weight: 600
}

.xw-nav a:hover {
    background: rgba(255, 255, 255, .08);
    color: var(--c-text)
}

.xw-header-right {
    display: flex;
    align-items: center;
    gap: 10px
}

.xw-online {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .8rem;
    color: var(--c-text-muted);
    white-space: nowrap
}

.xw-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
    animation: blink 1.6s infinite
}

@keyframes blink {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .4
    }
}

.xw-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background var(--trans)
}

.xw-burger span {
    width: 24px;
    height: 2px;
    background: #0a1e1c;
    border-radius: 2px;
    transition: all var(--trans);
    display: block
}

.xw-burger:hover {
    background: rgba(255, 255, 255, .08)
}

.xw-burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

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

.xw-burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

.xw-mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    padding: 16px 20px;
    gap: 8px
}

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

.xw-mobile-nav a {
    color: var(--c-text-muted);
    font-size: .95rem;
    padding: 10px 14px;
    border-radius: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-weight: 600
}

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

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

.xw-hero-slider {
    display: flex;
    width: 100%;
    min-height: 520px;
    position: relative
}

.xw-hero-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity .7s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 520px
}

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

.xw-hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(.45)
}

.xw-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 20px;
    width: 100%
}

.xw-hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .6)
}

.xw-hero-content p {
    font-size: 1.1rem;
    color: #cde8e4;
    margin-bottom: 28px;
    max-width: 560px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .5)
}

.xw-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

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

.xw-hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    transition: background var(--trans), transform var(--trans)
}

.xw-hero-dot.active {
    background: #B30AD7;
    transform: scale(1.3)
}

.xw-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(0, 0, 0, .45);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--trans)
}

.xw-hero-arrow:hover {
    background: rgba(179, 10, 215, .6)
}

.xw-hero-prev {
    left: 16px
}

.xw-hero-next {
    right: 16px
}

.xw-section {
    padding: 60px 0
}

.xw-section-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff
}

.xw-section-sub {
    color: var(--c-text-muted);
    font-size: .95rem;
    margin-bottom: 32px
}

.xw-section-head {
    margin-bottom: 32px
}

.xw-block {
    background: var(--c-card);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--c-border);
    position: relative;
    overflow: hidden
}

.xw-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-btn-login), var(--c-btn-reg));
    opacity: .7
}

.xw-block2 {
    background: var(--c-card2);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--c-border)
}

.xw-block3 {
    background: linear-gradient(135deg, #063a33 0%, #042e27 100%);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--c-border)
}

.xw-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-sm)
}

.xw-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
    text-align: left
}

.xw-table th {
    background: var(--c-btn-login);
    color: #9ef0d4;
    font-size: .85rem;
    padding: 12px 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px
}

.xw-table td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--c-border);
    font-size: .9rem;
    vertical-align: middle
}

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

.xw-table tr:hover td {
    background: rgba(255, 255, 255, .03)
}

.xw-table a {
    color: #4dd8b0;
    font-weight: 600
}

.xw-table a:hover {
    color: #7feece
}

.xw-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #0d4a3a;
    color: #4dd8b0;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 700
}

.xw-badge-green {
    background: #0a3d2e;
    color: #2ecc71
}

.xw-mirror-time {
    font-size: .78rem;
    color: var(--c-text-muted);
    margin-top: 10px
}

.xw-slider-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius)
}

.xw-slider-track {
    display: flex;
    transition: transform .4s ease;
    gap: 20px
}

.xw-slide-item {
    flex: 0 0 calc(33.333% - 14px);
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative
}

.xw-slide-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease
}

.xw-slide-item:hover img {
    transform: scale(1.04)
}

.xw-slider-controls {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 16px
}

.xw-slider-btn {
    background: var(--c-btn-login);
    border: none;
    color: #9ef0d4;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--trans)
}

.xw-slider-btn:hover {
    background: var(--c-btn-reg)
}

.xw-card {
    background: var(--c-card2);
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    overflow: hidden;
    transition: transform var(--trans), box-shadow var(--trans);
    display: flex;
    flex-direction: column
}

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

.xw-card-img {
    position: relative;
    overflow: hidden;
    height: 180px
}

.xw-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease
}

.xw-card:hover .xw-card-img img {
    transform: scale(1.06)
}

.xw-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--c-btn-reg);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 700
}

.xw-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.xw-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3
}

.xw-card-desc {
    font-size: .85rem;
    color: var(--c-text-muted);
    margin-bottom: 14px;
    flex: 1
}

.xw-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px
}

.xw-card-prize {
    font-size: 1.1rem;
    font-weight: 800;
    color: #B30AD7;
    text-shadow: 0 0 12px rgba(179, 10, 215, .4)
}

.xw-card-timer {
    font-size: .82rem;
    color: #f0a500;
    font-weight: 600
}

.xw-card-footer {
    border-top: 1px solid var(--c-border);
    padding: 14px 20px;
    background: rgba(0, 0, 0, .2)
}

.xw-bonus-card {
    background: linear-gradient(135deg, #063a33 0%, #0a1e1c 100%);
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform var(--trans), box-shadow var(--trans);
    position: relative;
    overflow: hidden
}

.xw-bonus-card::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(179, 10, 215, .1)
}

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

.xw-bonus-icon {
    font-size: 2.2rem;
    display: block
}

.xw-bonus-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff
}

.xw-bonus-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: #B30AD7
}

.xw-bonus-desc {
    font-size: .85rem;
    color: var(--c-text-muted)
}

.xw-slot {
    background: linear-gradient(180deg, #0c3d35 0%, #031e1a 100%);
    border-radius: var(--radius);
    padding: 36px;
    text-align: center;
    border: 1px solid #0d5a4a
}

.xw-slot-reels {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 28px auto;
    perspective: 600px
}

.xw-reel {
    background: linear-gradient(180deg, #021a17, #042e28);
    border: 2px solid #0d5a4a;
    border-radius: var(--radius-sm);
    width: 90px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 12px rgba(0, 0, 0, .5)
}

.xw-reel-inner {
    transition: transform .6s cubic-bezier(.17, .67, .83, .67)
}

.xw-reel.spinning .xw-reel-inner {
    animation: spinReel .5s linear infinite
}

@keyframes spinReel {
    0% {
        transform: translateY(0)
    }
    100% {
        transform: translateY(-100px)
    }
}

.xw-slot-result {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff
}

.xw-slot-win {
    color: #f0a500;
    font-size: 1.2rem;
    animation: pulse 1s ease infinite
}

@keyframes pulse {
    0%, 100% {
        text-shadow: 0 0 8px rgba(240, 165, 0, .4)
    }
    50% {
        text-shadow: 0 0 20px rgba(240, 165, 0, .9)
    }
}

.xw-slot-lose {
    color: var(--c-text-muted)
}

.xw-review-block {
    background: var(--c-card);
    border-radius: var(--radius);
    padding: 36px;
    border: 1px solid var(--c-border)
}

.xw-review-block h1, .xw-review-block h2, .xw-review-block h3, .xw-review-block h4, .xw-review-block h5, .xw-review-block h6 {
    color: #fff;
    margin: 24px 0 12px;
    line-height: 1.3;
    font-weight: 700
}

.xw-review-block h1 {
    font-size: 1.8rem
}

.xw-review-block h2 {
    font-size: 1.5rem;
    border-bottom: 1px solid var(--c-border);
    padding-bottom: 8px
}

.xw-review-block h3 {
    font-size: 1.2rem
}

.xw-review-block p {
    margin-bottom: 14px;
    color: var(--c-text);
    line-height: 1.75
}

.xw-review-block ul, .xw-review-block ol {
    padding-left: 24px;
    margin-bottom: 16px
}

.xw-review-block li {
    margin-bottom: 8px;
    color: var(--c-text);
    line-height: 1.65
}

.xw-review-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    overflow: hidden;
    border-radius: var(--radius-sm)
}

.xw-review-block th {
    background: var(--c-btn-login);
    color: #9ef0d4;
    padding: 11px 14px;
    text-align: left;
    font-size: .87rem
}

.xw-review-block td {
    padding: 11px 14px;
    border-bottom: 1px solid var(--c-border);
    font-size: .9rem
}

.xw-review-block a {
    color: #4dd8b0
}

.xw-review-block blockquote {
    border-left: 3px solid var(--c-btn-reg);
    padding: 14px 20px;
    margin: 20px 0;
    background: rgba(179, 10, 215, .07);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--c-text-muted);
    font-style: italic
}

.xw-review-block strong {
    color: #fff;
    font-weight: 700
}

.xw-review-block img {
    border-radius: var(--radius-sm);
    margin: 16px 0
}

.xw-review-block hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 24px 0
}

.xw-author {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--c-card2);
    border-radius: var(--radius-sm);
    padding: 18px 22px;
    margin-bottom: 28px;
    border: 1px solid var(--c-border)
}

.xw-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-btn-reg)
}

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

.xw-author-bio {
    font-size: .82rem;
    color: var(--c-text-muted);
    line-height: 1.5
}

.xw-author-link {
    font-size: .8rem;
    color: #4dd8b0
}

.xw-faq-item {
    border-bottom: 1px solid var(--c-border)
}

.xw-faq-item:last-child {
    border-bottom: none
}

.xw-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    gap: 16px;
    transition: color var(--trans)
}

.xw-faq-q:hover {
    color: #B30AD7
}

.xw-faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--c-btn-login);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #9ef0d4;
    transition: transform var(--trans), background var(--trans)
}

.xw-faq-item.open .xw-faq-icon {
    transform: rotate(45deg);
    background: var(--c-btn-reg)
}

.xw-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding var(--trans)
}

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

.xw-faq-a-inner {
    padding: 0 0 18px;
    color: var(--c-text-muted);
    line-height: 1.7;
    font-size: .93rem
}

.xw-footer {
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    padding: 50px 0 30px
}

.xw-footer-grid {
    display: grid;
    grid-template-columns:200px 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px
}

.xw-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px
}

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

.xw-footer-nav a:hover {
    color: #4dd8b0
}

.xw-footer-col-title {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-text-muted);
    margin-bottom: 14px;
    font-weight: 700
}

.xw-footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center
}

.xw-payment-logo, .xw-provider-logo {
    background: rgba(255, 255, 255, .07);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: .75rem;
    color: var(--c-text-muted);
    font-weight: 600;
    border: 1px solid var(--c-border);
    white-space: nowrap
}

.xw-footer-bottom {
    border-top: 1px solid var(--c-border);
    padding-top: 20px;
    font-size: .78rem;
    color: var(--c-text-muted);
    text-align: center;
    line-height: 1.7
}

.xw-footer-logo img {
    height: 40px;
    margin-bottom: 16px
}

.xw-footer-legal {
    max-width: 760px;
    margin: 12px auto 0;
    font-size: .75rem;
    color: rgba(255, 255, 255, .35);
    text-align: center;
    line-height: 1.6
}

.xw-18plus {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 4px;
    padding: 2px 8px;
    font-weight: 700;
    margin-left: 8px;
    font-size: .78rem
}

.xw-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #0a2e28, #1a0530);
    border-top: 2px solid var(--c-btn-reg);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 -4px 20px rgba(179, 10, 215, .3)
}

.xw-widget-text {
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .4)
}

.xw-widget-bonus {
    color: #f0a500;
    font-weight: 800
}

.xw-widget-close {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, .4);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 4px 8px;
    line-height: 1;
    transition: color var(--trans)
}

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

body.widget-closed .xw-widget {
    display: none
}

body {
    padding-bottom: 64px
}

body.widget-closed {
    padding-bottom: 0
}

.xw-breadcrumb {
    font-size: .82rem;
    color: var(--c-text-muted);
    padding: 14px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap
}

.xw-breadcrumb a {
    color: var(--c-text-muted)
}

.xw-breadcrumb a:hover {
    color: #4dd8b0
}

.xw-breadcrumb span {
    color: rgba(255, 255, 255, .3)
}

.xw-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-border), transparent);
    margin: 8px 0
}

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

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

@media (max-width: 1024px) {
    .xw-header-inner {
        grid-template-columns:auto 1fr auto auto
    }

    .xw-footer-grid {
        grid-template-columns:1fr 1fr;
        gap: 28px
    }
}

@media (max-width: 768px) {
    .xw-header-inner {
        grid-template-columns:auto 1fr auto;
        gap: 12px
    }

    .xw-nav {
        display: none
    }

    .xw-burger {
        display: flex
    }

    .xw-hero {
        min-height: 380px
    }

    .xw-hero-slide {
        min-height: 380px
    }

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

    .xw-hero-content p {
        font-size: .95rem
    }

    .xw-grid-3, .xw-grid-2, .xw-grid-4 {
        grid-template-columns:1fr
    }

    .xw-slide-item {
        flex: 0 0 calc(85%)
    }

    .xw-footer-grid {
        grid-template-columns:1fr;
        gap: 24px
    }

    .xw-section {
        padding: 40px 0
    }

    .xw-block {
        padding: 22px
    }

    .xw-reel {
        width: 72px;
        height: 84px;
        font-size: 2.2rem
    }

    .xw-widget {
        flex-direction: column;
        gap: 8px;
        padding: 14px 40px 14px 20px;
        text-align: center
    }

    body {
        padding-bottom: 90px
    }
}

@media (max-width: 480px) {
    .xw-hero-content {
        padding: 40px 16px
    }

    .xw-hero-content h1 {
        font-size: 1.3rem
    }

    .xw-hero-btns {
        flex-direction: column
    }

    .xw-hero-btns .btn {
        width: 100%;
        text-align: center
    }
}
