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

:root {
    --c-bg: #1e1450;
    --c-hdr: #372873;
    --c-hdr-dark: #2a1e5c;
    --c-btn-primary: #ffce1c;
    --c-btn-primary-hover: #e8b800;
    --c-btn-secondary: #196d8f;
    --c-btn-secondary-hover: #12546e;
    --c-text: #f0ecff;
    --c-text-muted: #b8addc;
    --c-accent: #ffce1c;
    --c-card: #2a1e5c;
    --c-card-border: #3d2e80;
    --c-green: #22c55e;
    --c-red: #ef4444;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, .4);
    --transition: .22s ease;
    --font-sans: 'Roboto', sans-serif;
}

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

body {
    background-color: var(--c-bg);
    color: var(--c-text);
    font-family: var(--font-sans);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

a {
    color: var(--c-btn-secondary);
    text-decoration: none;
    transition: color var(--transition)
}

a:hover {
    color: var(--c-accent)
}

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

h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem)
}

h2 {
    font-size: clamp(1.3rem, 3vw, 2rem)
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem)
}

p {
    margin-bottom: 1rem;
    color: var(--c-text-muted)
}

ul, ol {
    padding-left: 1.4rem;
    margin-bottom: 1rem;
    color: var(--c-text-muted)
}

li {
    margin-bottom: .35rem
}

strong {
    color: var(--c-text)
}

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

table th {
    background: var(--c-hdr);
    color: var(--c-accent);
    text-align: left;
    padding: .7rem 1rem;
    border: 1px solid var(--c-card-border)
}

table td {
    text-align: left;
    padding: .65rem 1rem;
    border: 1px solid var(--c-card-border);
    color: var(--c-text-muted)
}

table tr:nth-child(even) td {
    background: rgba(55, 40, 115, .3)
}

.wrapper {
    display: grid;
    grid-template-rows:auto 1fr auto;
    min-height: 100vh
}

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

.x-container--wide {
    max-width: 1400px
}

.x-section {
    padding-block: 3rem
}

.x-section--sm {
    padding-block: 1.5rem
}

.x-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .55rem 1.3rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: .9rem;
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

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

.x-btn--primary {
    background: var(--c-btn-primary);
    color: #1a1040
}

.x-btn--primary:hover {
    background: var(--c-btn-primary-hover);
    color: #1a1040
}

.x-btn--secondary {
    background: var(--c-btn-secondary);
    color: #fff
}

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

.x-btn--lg {
    padding: .75rem 2rem;
    font-size: 1rem
}

.x-btn--sm {
    padding: .35rem .85rem;
    font-size: .8rem
}

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

.x-btn--outline:hover {
    background: var(--c-btn-primary);
    color: #1a1040
}

.x-hdr {
    background: var(--c-hdr);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .45);
}

.x-hdr__inner {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: .7rem 1rem;
    max-width: 1200px;
    margin-inline: auto;
}

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

.x-hdr__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .15rem;
    flex-wrap: wrap
}

.x-hdr__nav a {
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: .4rem .7rem;
    border-radius: var(--radius-sm);
    font-size: .88rem;
    font-weight: 500;
    color: var(--c-text-muted);
    transition: background var(--transition), color var(--transition);
}

.x-hdr__nav a:hover, .x-hdr__nav a.x-active {
    background: rgba(255, 255, 255, .1);
    color: var(--c-accent)
}

.x-hdr__nav a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

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

.x-hdr__meta {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .35rem;
    justify-content: flex-end
}

.x-online-counter {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    color: var(--c-text-muted);
}

.x-online-counter span.x-dot {
    width: 8px;
    height: 8px;
    background: var(--c-green);
    border-radius: 50%;
    display: inline-block;
    animation: x-pulse 1.8s infinite;
}

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

.x-lang-select {
    background: var(--c-hdr-dark);
    border: 1px solid var(--c-card-border);
    color: var(--c-text);
    border-radius: var(--radius-sm);
    padding: .3rem .55rem;
    font-size: .8rem;
    cursor: pointer;
}

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

.x-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: var(--transition)
}

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

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

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

.x-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-hdr);
    z-index: 999;
    padding: 5rem 1.5rem 2rem;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
}

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

.x-mobile-menu a {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .85rem 1rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 500;
    color: var(--c-text);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.x-mobile-menu a:last-child {
    border-bottom: none
}

.x-mobile-menu a:hover {
    background: rgba(255, 255, 255, .08);
    color: var(--c-accent)
}

.x-mobile-menu__actions {
    display: flex;
    gap: .75rem;
    margin-top: auto;
    padding-top: 1rem
}

.x-mobile-menu__actions .x-btn {
    flex: 1;
    justify-content: center
}

.x-mobile-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--c-text);
    cursor: pointer;
    font-size: 1.5rem;
}

.x-hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: var(--c-hdr) url('/igobet-hero.png') center/cover no-repeat;
}

.x-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(30, 20, 80, .92) 0%, rgba(30, 20, 80, .6) 60%, rgba(30, 20, 80, .2) 100%);
}

.x-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin-inline: auto;
    padding: 3rem 1rem;
    width: 100%;
}

.x-hero__text h1 {
    color: #fff;
    margin-bottom: 1rem
}

.x-hero__text h1 span {
    color: var(--c-accent)
}

.x-hero__text p {
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
    color: rgba(255, 255, 255, .85)
}

.x-hero__actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap
}

.x-bonus-tile {
    background: linear-gradient(135deg, var(--c-hdr) 0%, var(--c-hdr-dark) 100%);
    border: 2px solid var(--c-accent);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 0 40px rgba(255, 206, 28, .15);
}

.x-bonus-tile__amount {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--c-accent);
    line-height: 1
}

.x-bonus-tile__label {
    font-size: .85rem;
    color: var(--c-text-muted);
    margin-top: .4rem;
    margin-bottom: 1.2rem
}

.x-bonus-tile__spins {
    display: inline-block;
    background: rgba(255, 206, 28, .12);
    border: 1px solid rgba(255, 206, 28, .35);
    border-radius: var(--radius-sm);
    padding: .4rem 1rem;
    font-size: .9rem;
    color: var(--c-accent);
    margin-bottom: 1.2rem;
}

.x-bonus-tile__cta {
    width: 100%
}

.x-section-title {
    text-align: center;
    margin-bottom: 2rem
}

.x-section-title h2 {
    margin-bottom: .5rem
}

.x-section-title p {
    font-size: .95rem
}

.x-jackpot {
    background: var(--c-hdr);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-card)
}

.x-jackpot__amount {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--c-accent);
    text-shadow: 0 0 30px rgba(255, 206, 28, .5);
    letter-spacing: .02em;
    animation: x-count 8s steps(1, end) infinite;
}

@keyframes x-count {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .85
    }
}

.x-jackpot__label {
    color: var(--c-text-muted);
    font-size: .9rem;
    margin-top: .3rem
}

.x-jackpots-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem
}

.x-winners {
    background: var(--c-card);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-card)
}

.x-winners__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.x-winners__item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .55rem .75rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .04);
    transition: background var(--transition);
}

.x-winners__item:hover {
    background: rgba(255, 255, 255, .08)
}

.x-winners__rank {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: .75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.x-winners__rank--1 {
    background: #ffd700;
    color: #1a1040
}

.x-winners__rank--2 {
    background: #c0c0c0;
    color: #1a1040
}

.x-winners__rank--3 {
    background: #cd7f32;
    color: #fff
}

.x-winners__rank--n {
    background: var(--c-hdr);
    color: var(--c-text-muted);
    font-size: .7rem
}

.x-winners__name {
    flex: 1;
    font-size: .88rem;
    font-weight: 500;
    color: var(--c-text)
}

.x-winners__amount {
    font-size: .88rem;
    font-weight: 700;
    color: var(--c-accent)
}

.x-winners__game {
    font-size: .75rem;
    color: var(--c-text-muted)
}

.x-video-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding-bottom: 56.25%;
    height: 0;
    box-shadow: var(--shadow-card);
}

.x-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none
}

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

.x-bonus-card {
    background: var(--c-card);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

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

.x-bonus-card__icon {
    font-size: 2.2rem;
    margin-bottom: 1rem
}

.x-bonus-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .4rem;
    color: var(--c-accent)
}

.x-bonus-card__amount {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--c-text);
    margin-bottom: .5rem
}

.x-bonus-card__desc {
    font-size: .88rem;
    color: var(--c-text-muted);
    flex: 1;
    margin-bottom: 1.25rem
}

.x-bonus-card__btn {
    margin-top: auto
}

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

.x-slider-track {
    display: flex;
    transition: transform .4s ease
}

.x-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--c-hdr);
    border: 1px solid var(--c-card-border);
    color: var(--c-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 2;
    transition: background var(--transition);
}

.x-slider-btn:hover {
    background: var(--c-accent);
    color: #1a1040
}

.x-slider-btn--prev {
    left: -16px
}

.x-slider-btn--next {
    right: -16px
}

.x-wheel-section {
    text-align: center
}

.x-wheel-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.x-wheel-canvas-wrap {
    position: relative;
    display: inline-block
}

.x-wheel-canvas-wrap::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 22px solid var(--c-accent);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .5));
}

#x-wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(255, 206, 28, .25), 0 0 0 4px var(--c-accent)
}

.x-wheel-result {
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .75rem;
}

.x-wheel-result__text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c-accent);
    animation: x-fadein .4s ease
}

@keyframes x-fadein {
    from {
        opacity: 0;
        transform: translateY(6px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.x-review {
    background: var(--c-card);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

.x-review__author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--c-card-border);
}

.x-review__author-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-accent);
    flex-shrink: 0;
}

.x-review__author-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--c-text)
}

.x-review__author-bio {
    font-size: .83rem;
    color: var(--c-text-muted);
    margin-top: .2rem;
    margin-bottom: 0
}

.x-review__author-links {
    display: flex;
    gap: .5rem;
    margin-top: .4rem
}

.x-review__author-links a {
    font-size: .8rem
}

.x-review__content {
    line-height: 1.75;
    color: var(--c-text-muted)
}

.x-review__content h2, .x-review__content h3, .x-review__content h4 {
    color: var(--c-text);
    margin-top: 1.75rem;
    margin-bottom: .75rem
}

.x-review__content p {
    color: var(--c-text-muted)
}

.x-review__content a {
    color: var(--c-btn-secondary)
}

.x-review__content ul, .x-review__content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem
}

.x-review__content li {
    margin-bottom: .4rem;
    color: var(--c-text-muted)
}

.x-review__content table {
    overflow-x: auto;
    display: block
}

.x-review__content img {
    border-radius: var(--radius-md);
    margin: 1rem auto
}

.x-rg {
    background: linear-gradient(135deg, rgba(55, 40, 115, .7) 0%, rgba(30, 20, 80, .9) 100%);
    border: 1px solid rgba(255, 206, 28, .2);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.x-rg__title {
    color: var(--c-accent);
    font-size: 1.15rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.x-rg__grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.25rem
}

.x-rg__link {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .65rem .9rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    font-size: .87rem;
    color: var(--c-text-muted);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.x-rg__link:hover {
    background: rgba(255, 206, 28, .1);
    color: var(--c-accent);
    border-color: rgba(255, 206, 28, .3)
}

.x-rg__link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: .7
}

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

.x-faq__item {
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--c-card);
}

.x-faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: .95rem;
    font-weight: 600;
    color: var(--c-text);
    text-align: left;
    transition: background var(--transition);
}

.x-faq__q:hover {
    background: rgba(255, 255, 255, .04)
}

.x-faq__q svg {
    flex-shrink: 0;
    transition: transform var(--transition);
    width: 18px;
    height: 18px;
    color: var(--c-accent)
}

.x-faq__item.x-open .x-faq__q svg {
    transform: rotate(180deg)
}

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

.x-faq__item.x-open .x-faq__a {
    max-height: 600px
}

.x-faq__a-inner {
    padding: 0 1.25rem 1.1rem;
    font-size: .9rem;
    color: var(--c-text-muted);
    line-height: 1.65
}

.x-ftr {
    background: var(--c-hdr);
    padding-top: 2.5rem
}

.x-ftr__top {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: start;
    gap: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.x-ftr__logo img {
    height: 40px
}

.x-ftr__nav {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem .75rem;
    align-items: center;
    justify-content: center
}

.x-ftr__nav a {
    font-size: .85rem;
    color: var(--c-text-muted);
    transition: color var(--transition)
}

.x-ftr__nav a:hover {
    color: var(--c-accent)
}

.x-ftr__nav span {
    color: var(--c-card-border);
    font-size: .8rem
}

.x-ftr__social {
    display: flex;
    gap: .5rem
}

.x-ftr__social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    transition: background var(--transition), color var(--transition);
}

.x-ftr__social a:hover {
    background: var(--c-accent);
    color: #1a1040
}

.x-ftr__logos-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem;
    padding-block: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.x-ftr__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .3rem .6rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    font-size: .75rem;
    font-weight: 700;
    color: var(--c-text-muted);
    white-space: nowrap;
    transition: background var(--transition), border-color var(--transition);
}

.x-ftr__badge:hover {
    background: rgba(255, 206, 28, .1);
    border-color: rgba(255, 206, 28, .3);
    color: var(--c-accent)
}

.x-ftr__badge a {
    color: inherit;
    text-decoration: none
}

.x-ftr__trust {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: center;
    padding-block: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.x-ftr__trust-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .75rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    font-size: .78rem;
    color: var(--c-text-muted);
}

.x-ftr__trust-badge--rg {
    border-color: rgba(34, 197, 94, .25);
    background: rgba(34, 197, 94, .07)
}

.x-ftr__bottom {
    padding-block: 1.25rem;
    text-align: center
}

.x-ftr__country {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-bottom: .6rem;
    font-size: .85rem;
    color: var(--c-text-muted)
}

.x-ftr__copy {
    font-size: .8rem;
    color: var(--c-text-muted);
    margin-bottom: .4rem
}

.x-ftr__legal {
    font-size: .75rem;
    color: rgba(184, 173, 220, .55);
    line-height: 1.5
}

.x-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, var(--c-hdr) 0%, var(--c-hdr-dark) 100%);
    border-top: 2px solid var(--c-accent);
    padding: .65rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .4);
    transform: translateY(100%);
    animation: x-widget-slide .6s .8s ease forwards;
}

@keyframes x-widget-slide {
    to {
        transform: translateY(0)
    }
}

.x-widget__text {
    font-size: .88rem;
    color: var(--c-text-muted);
    flex: 1;
    line-height: 1.35
}

.x-widget__bonus {
    font-weight: 700;
    color: var(--c-accent);
    font-size: .95rem
}

.x-widget__close {
    background: none;
    border: none;
    color: var(--c-text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    flex-shrink: 0;
    padding: .2rem
}

.x-widget__close:hover {
    color: var(--c-text)
}

.x-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    overflow: hidden;
    display: inline-block;
    flex-shrink: 0
}

.x-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-card-border), transparent);
    margin-block: 2.5rem
}

@media (max-width: 1024px) {
    .x-bonuses-grid {
        grid-template-columns:repeat(2, 1fr)
    }
}

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

    .x-burger {
        display: flex
    }

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

    .x-hero__inner .x-bonus-tile {
        max-width: 360px;
        margin-inline: auto
    }

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

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

    .x-ftr__top {
        grid-template-columns:1fr;
        text-align: center
    }

    .x-ftr__nav {
        justify-content: center
    }

    .x-ftr__social {
        justify-content: center
    }

    .x-ftr__logo {
        display: flex;
        justify-content: center
    }

    .x-hdr__inner {
        grid-template-columns:auto auto auto
    }
}

@media (max-width: 480px) {
    .x-jackpots-grid {
        grid-template-columns:1fr
    }

    .x-hero__actions {
        flex-direction: column
    }

    .x-hero__actions .x-btn {
        width: 100%;
        justify-content: center
    }

    .x-widget__text {
        display: none
    }
}

.x-bg-card {
    background: var(--c-card);
    border: 1px solid var(--c-card-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card)
}

.x-text-accent {
    color: var(--c-accent)
}

.x-text-muted {
    color: var(--c-text-muted)
}

.x-mb-1 {
    margin-bottom: 1rem
}

.x-mb-2 {
    margin-bottom: 2rem
}

.x-mt-1 {
    margin-top: 1rem
}

.x-mt-2 {
    margin-top: 2rem
}

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

.x-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem
}

.x-spacer {
    height: 1px
}

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

.x-rating-stars {
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: .1em
}

.x-tag {
    display: inline-block;
    padding: .2rem .6rem;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 700;
    background: rgba(255, 206, 28, .15);
    color: var(--c-accent);
}

.x-new-winners-ticker {
    overflow: hidden;
    position: relative
}

.x-new-winners-ticker:hover .x-winners__list {
    animation-play-state: paused
}

.wp-compat-class-a8k2 {
    display: none
}

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

.wp-block-template-xq7 {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    width: 0;
    height: 0
}

.x-info-content {
    max-width: 760px;
    margin-inline: auto;
    padding: 2rem
}

.x-info-content h1 {
    margin-bottom: 1.5rem
}

.x-info-content h2, .x-info-content h3 {
    margin-top: 1.5rem;
    margin-bottom: .75rem;
    color: var(--c-text)
}

.x-info-content p {
    color: var(--c-text-muted);
    margin-bottom: 1rem
}

.x-info-content ul, .x-info-content ol {
    color: var(--c-text-muted);
    margin-bottom: 1rem
}

.x-info-content a {
    color: var(--c-btn-secondary)
}

.x-skip-link {
    position: absolute;
    top: -40px;
    left: 1rem;
    background: var(--c-accent);
    color: #1a1040;
    padding: .5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    z-index: 9999;
    transition: top var(--transition);
}

.x-skip-link:focus {
    top: .5rem
}

#jackpots {
    overflow: hidden;
}

.x-jackpots-grid {
    display: grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.x-jackpot {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 300px;
    padding: 28px 22px;
    background: linear-gradient(180deg, #3a2b7d 0%, #32236f 100%);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 22px;
    transition: .25s;
}

.x-jackpot:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
}

.x-jackpot__amount {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    font-size: clamp(2rem, 2.8vw, 3.3rem);
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
    letter-spacing: -.03em;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 0 18px rgba(255, 206, 28, .35);
}

.x-jackpot__label {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1rem;
    line-height: 1.45;
    color: var(--c-text-muted);
}

.x-jackpot .x-btn {
    margin-top: 22px;
    width: 150px;
    justify-content: center;
}

@media (max-width: 1100px) {

    .x-jackpots-grid {
        grid-template-columns:repeat(2, 1fr);
    }

    .x-jackpot {
        min-height: 270px;
    }

    .x-jackpot__amount {
        font-size: 2.6rem;
    }

}

@media (max-width: 768px) {

    #jackpots {
        padding: 40px 0;
    }

    .x-jackpots-grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .x-jackpots-grid::-webkit-scrollbar {
        display: none;
    }

    .x-jackpot {
        flex: 0 0 290px;
        min-height: 240px;
        scroll-snap-align: start;
        padding: 22px 18px;
    }

    .x-jackpot__amount {
        font-size: 2.2rem;
        line-height: 1.15;
    }

    .x-jackpot__label {
        min-height: auto;
        font-size: .95rem;
    }

    .x-jackpot .x-btn {
        width: 100%;
    }

}

@media (max-width: 480px) {

    .x-jackpot {
        flex: 0 0 260px;
        min-height: 220px;
    }

    .x-jackpot__amount {
        font-size: 1.9rem;
    }

    .x-jackpot__label {
        font-size: .9rem;
    }

}