:root {
    --bg: #16182B;
    --hdr: #1F2137;
    --accent: #00DCF5;
    --accent-dark: #00b8d0;
    --btn-dark: #1F2137;
    --text: #E8EAF6;
    --text-muted: #9CA3C4;
    --border: rgba(0, 220, 245, 0.18);
    --card: #252843;
    --card2: #1e2140;
    --r: 12px;
    --r-sm: 8px;
    --sh: 0 4px 28px rgba(0, 0, 0, 0.45);
    --tr: 0.3s ease;
}

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

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', 'Montserrat', Arial, sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
}

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

a:hover {
    color: var(--accent-dark);
}

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

ul {
    list-style: none;
}

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

.upx-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

.upx-section {
    padding: 60px 0;
}

.btn-xd92 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: var(--r-sm);
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .3px;
    transition: all var(--tr);
    cursor: pointer;
    border: none;
    font-family: inherit;
    gap: 6px;
}

.btn-dark-xd92 {
    background: var(--btn-dark);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-dark-xd92:hover {
    background: #2a2f52;
    border-color: var(--accent);
    color: var(--accent);
}

.btn-accent-xd92 {
    background: var(--accent);
    color: #0a0c1a;
    font-weight: 700;
}

.btn-accent-xd92:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 220, 245, 0.35);
}

.btn-lg-xd92 {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.hdr-x7k2 {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--hdr);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hdr-inner-x7k2 {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hdr-logo-x7k2 {
    flex-shrink: 0;
}

.hdr-logo-x7k2 img {
    height: 44px;
    width: auto;
    object-fit: contain;
    background-color: #9CA3C4;
    border-radius: 20px;
}

.hdr-nav-x7k2 {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    margin-left: 16px;
}

.hdr-nav-x7k2 a {
    color: var(--text-muted);
    font-size: .88rem;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all var(--tr);
    white-space: nowrap;
}

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

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

.hdr-online-x7k2 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--text-muted);
    white-space: nowrap;
    padding: 6px 10px;
    background: rgba(0, 220, 245, 0.07);
    border-radius: 20px;
    border: 1px solid var(--border);
}

.hdr-online-dot-x7k2 {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2ecc71;
    box-shadow: 0 0 6px #2ecc71;
    animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .4;
    }
}

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

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

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

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

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

.mob-nav-x7k2 {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 17, 35, .97);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.mob-nav-x7k2.open {
    display: flex;
}

.mob-nav-x7k2 a {
    color: var(--text);
    font-size: 1.2rem;
    padding: 12px 30px;
    border-radius: 8px;
    width: 100%;
    text-align: center;
    transition: all var(--tr);
}

.mob-nav-x7k2 a:hover {
    background: var(--card);
}

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

.slider-x3f9 {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.slide-x3f9 {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.slide-x3f9.active {
    opacity: 1;
}

.slide-bg-x3f9 {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.slide-bg-x3f9::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(22, 24, 43, .92) 40%, rgba(22, 24, 43, .3));
}

.slide-content-x3f9 {
    position: relative;
    z-index: 1;
    padding: 0 60px;
    max-width: 600px;
}

.slide-tag-x3f9 {
    display: inline-block;
    background: var(--accent);
    color: #0a0c1a;
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.slide-h1-x3f9 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    font-family: 'Montserrat', sans-serif;
}

.slide-desc-x3f9 {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

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

.slider-dot-x3f9 {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: all var(--tr);
}

.slider-dot-x3f9.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

.slider-arr-x3f9 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(31, 33, 55, .7);
    border: 1px solid var(--border);
    color: var(--text);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--tr);
    font-size: 1.1rem;
}

.slider-arr-x3f9:hover {
    background: var(--accent);
    color: #0a0c1a;
}

.arr-prev-x3f9 {
    left: 20px;
}

.arr-next-x3f9 {
    right: 20px;
}

.sec-title-q8m1 {
    font-size: 1.7rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 8px;
}

.sec-sub-q8m1 {
    color: var(--text-muted);
    font-size: .95rem;
    margin-bottom: 36px;
}

.sec-head-q8m1 {
    margin-bottom: 36px;
}

.procon-x2v7 {
    display: flex;
    gap: 24px;
    margin: 0 16px;
}

.procon-col-x2v7 {
    flex: 1;
    background: var(--card);
    border-radius: var(--r);
    padding: 28px;
    border: 1px solid var(--border);
}

.procon-title-x2v7 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.procon-plus-x2v7 {
    color: #2ecc71;
}

.procon-minus-x2v7 {
    color: #e74c3c;
}

.procon-item-x2v7 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.procon-item-x2v7:last-child {
    border-bottom: none;
}

.procon-icon-x2v7 {
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.jackpot-x5b3 {
    background: linear-gradient(135deg, var(--hdr) 0%, #1a1d3a 100%);
    border-radius: var(--r);
    padding: 36px;
    border: 1px solid var(--border);
    margin: 0 16px;
    text-align: center;
}

.jackpot-grid-x5b3 {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.jackpot-card-x5b3 {
    background: var(--card2);
    border-radius: var(--r);
    padding: 24px 32px;
    border: 1px solid rgba(0, 220, 245, 0.25);
    min-width: 180px;
    flex: 1;
    max-width: 260px;
    position: relative;
    overflow: hidden;
}

.jackpot-card-x5b3::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 220, 245, .05), transparent);
    pointer-events: none;
}

.jackpot-tier-x5b3 {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.jackpot-amount-x5b3 {
    font-size: 1.9rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    color: var(--accent);
    line-height: 1.1;
}

.jackpot-cur-x5b3 {
    font-size: .85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.jackpot-pulse-x5b3 {
    animation: jackpot-upd .4s ease;
}

@keyframes jackpot-upd {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
    100% {
        transform: scale(1);
    }
}

.winners-x9n4 {
    margin: 0 16px;
    background: var(--card);
    border-radius: var(--r);
    border: 1px solid var(--border);
    overflow: hidden;
}

.winners-table-x9n4 {
    width: 100%;
    border-collapse: collapse;
}

.winners-table-x9n4 thead th {
    background: var(--hdr);
    padding: 14px 16px;
    text-align: left;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--text-muted);
}

.winners-table-x9n4 tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    transition: background var(--tr);
}

.winners-table-x9n4 tbody tr:hover {
    background: rgba(0, 220, 245, .04);
}

.winners-table-x9n4 tbody tr:last-child {
    border-bottom: none;
}

.winners-table-x9n4 td {
    padding: 12px 16px;
    font-size: .9rem;
}

.w-rank-x9n4 {
    font-weight: 700;
    color: var(--text-muted);
    width: 40px;
}

.w-rank-x9n4.gold {
    color: #f0c040;
}

.w-rank-x9n4.silver {
    color: #c0c8d8;
}

.w-rank-x9n4.bronze {
    color: #cd7f32;
}

.w-nick-x9n4 {
    font-weight: 600;
}

.w-game-x9n4 {
    color: var(--text-muted);
    font-size: .85rem;
}

.w-amount-x9n4 {
    font-weight: 700;
    color: #2ecc71;
    text-align: right;
}

.winners-scroll-x9n4 {
    overflow-x: auto;
}

.video-x6p1 {
    margin: 0 16px;
}

.video-wrap-x6p1 {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--border);
    background: #000;
}

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

.wheel-x4w8 {
    margin: 0 16px;
    background: var(--card);
    border-radius: var(--r);
    border: 1px solid var(--border);
    padding: 40px;
    text-align: center;
}

.wheel-canvas-wrap-x4w8 {
    position: relative;
    display: inline-block;
    margin: 0 auto 28px;
}

.wheel-canvas-x4w8 {
    display: block;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(0, 220, 245, .2);
}

.wheel-pointer-x4w8 {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 24px solid var(--accent);
}

.wheel-result-x4w8 {
    display: none;
    margin-top: 20px;
    padding: 20px 28px;
    background: linear-gradient(135deg, rgba(0, 220, 245, .12), rgba(0, 220, 245, .04));
    border: 1px solid var(--accent);
    border-radius: var(--r);
    animation: fadein .4s ease;
}

.wheel-result-x4w8.show {
    display: block;
}

.wheel-result-x4w8.lose {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, .08);
}

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

.content-block-x1r5 {
    margin: 0 16px;
    background: var(--card);
    border-radius: var(--r);
    border: 1px solid var(--border);
    padding: 36px;
}

.content-block-x1r5 h2 {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin: 24px 0 12px;
}

.content-block-x1r5 h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 20px 0 10px;
}

.content-block-x1r5 p {
    margin-bottom: 14px;
    color: var(--text);
}

.content-block-x1r5 ul, .content-block-x1r5 ol {
    margin: 12px 0 16px 20px;
}

.content-block-x1r5 ul {
    list-style: disc;
}

.content-block-x1r5 ol {
    list-style: decimal;
}

.content-block-x1r5 li {
    margin-bottom: 6px;
    color: var(--text);
}

.content-block-x1r5 table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px auto;
    overflow-x: auto;
    display: block;
}

.content-block-x1r5 table th, .content-block-x1r5 table td {
    text-align: left;
    padding: 10px 14px;
    border: 1px solid var(--border);
}

.content-block-x1r5 table th {
    background: var(--hdr);
    font-weight: 700;
}

.content-block-x1r5 table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .02);
}

.content-block-x1r5 a {
    color: var(--accent);
}

.content-block-x1r5 blockquote {
    border-left: 3px solid var(--accent);
    padding: 10px 16px;
    margin: 16px 0;
    background: rgba(0, 220, 245, .05);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.author-x8q2 {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--hdr);
    border-radius: var(--r-sm);
    margin-bottom: 28px;
    border: 1px solid var(--border);
}

.author-avatar-x8q2 {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.author-name-x8q2 {
    font-weight: 700;
    font-size: .95rem;
}

.author-role-x8q2 {
    font-size: .8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.reviews-x7c3 {
    margin: 0 16px;
}

.reviews-grid-x7c3 {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.review-card-x7c3 {
    flex: 1;
    min-width: 260px;
    background: var(--card);
    border-radius: var(--r);
    border: 1px solid var(--border);
    padding: 22px;
    transition: transform var(--tr), box-shadow var(--tr);
}

.review-card-x7c3:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh);
}

.review-head-x7c3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.review-avatar-x7c3 {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

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

.review-date-x7c3 {
    font-size: .75rem;
    color: var(--text-muted);
}

.review-stars-x7c3 {
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
}

.review-stars-x7c3 svg {
    width: 16px;
    height: 16px;
    fill: #f0c040;
}

.review-text-x7c3 {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.review-form-x7c3 {
    background: var(--card);
    border-radius: var(--r);
    border: 1px solid var(--border);
    padding: 28px;
}

.review-form-x7c3 h3 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 700;
}

.form-group-x7c3 {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

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

.form-group-x7c3 input, .form-group-x7c3 textarea {
    background: var(--hdr);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 12px 14px;
    color: var(--text);
    font-size: .9rem;
    font-family: inherit;
    transition: border-color var(--tr);
}

.form-group-x7c3 input:focus, .form-group-x7c3 textarea:focus {
    outline: none;
    border-color: var(--accent);
}

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

.form-success-x7c3 {
    display: none;
    padding: 16px;
    background: rgba(46, 204, 113, .12);
    border: 1px solid #2ecc71;
    border-radius: var(--r-sm);
    color: #2ecc71;
    text-align: center;
    margin-top: 12px;
}

.form-success-x7c3.show {
    display: block;
}

.ftr-x0e6 {
    background: var(--hdr);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
}

.ftr-top-x0e6 {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.ftr-brand-x0e6 {
    flex: 0 0 auto;
}

.ftr-logo-x0e6 {
    height: 40px;
    width: auto;
    margin-bottom: 14px;
    background-color: #9CA3C4;
    border-radius: 20px;
}

.ftr-desc-x0e6 {
    font-size: .82rem;
    color: var(--text-muted);
    max-width: 220px;
    line-height: 1.6;
}

.ftr-nav-x0e6 {
    flex: 1;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.ftr-nav-col-x0e6 h4 {
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.ftr-nav-col-x0e6 a {
    display: block;
    font-size: .83rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    transition: color var(--tr);
}

.ftr-nav-col-x0e6 a:hover {
    color: var(--accent);
}

.ftr-badges-x0e6 {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    margin-bottom: 24px;
}

.ftr-badges-title-x0e6 {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

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

.ftr-badge-x0e6 {
    background: var(--card2);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: .8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.ftr-bottom-x0e6 {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.ftr-copy-x0e6 {
    font-size: .78rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
}

.ftr-18-x0e6 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(231, 76, 60, .15);
    border: 1px solid rgba(231, 76, 60, .4);
    color: #e74c3c;
    font-size: .7rem;
    font-weight: 900;
    flex-shrink: 0;
}

.widget-x5f1 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    background: linear-gradient(to right, var(--hdr), #1a1d3a);
    border-top: 1px solid var(--border);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transform: translateY(0);
    transition: transform var(--tr);
}

.widget-text-x5f1 {
    font-size: .88rem;
    color: var(--text-muted);
}

.widget-text-x5f1 strong {
    color: var(--text);
    font-weight: 700;
}

.widget-bonus-x5f1 {
    font-size: .85rem;
    color: var(--accent);
    font-weight: 600;
}

.widget-close-x5f1 {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 4px;
    line-height: 1;
    transition: color var(--tr);
}

.widget-close-x5f1:hover {
    color: var(--text);
}

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

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

.breadcrumb-x3t9 {
    padding: 14px 0 6px;
    font-size: .82rem;
    color: var(--text-muted);
}

.breadcrumb-x3t9 a {
    color: var(--text-muted);
}

.breadcrumb-x3t9 span {
    color: var(--accent);
}

@media (max-width: 900px) {
    .procon-x2v7 {
        flex-direction: column;
    }

    .jackpot-grid-x5b3 {
        flex-direction: column;
        align-items: center;
    }

    .jackpot-card-x5b3 {
        max-width: 100%;
        width: 100%;
    }

    .ftr-top-x0e6 {
        flex-direction: column;
    }

    .slide-content-x3f9 {
        padding: 0 28px;
    }

    .slide-h1-x3f9 {
        font-size: 1.8rem;
    }

    .hdr-nav-x7k2 {
        display: none;
    }

    .burger-x7k2 {
        display: flex;
    }

    .reviews-grid-x7c3 {
        flex-direction: column;
    }

    .review-card-x7c3 {
        min-width: unset;
    }

    .ftr-nav-x0e6 {
        flex-direction: column;
        gap: 20px;
    }

    .upx-section {
        padding: 40px 0;
    }

    .hero-x3f9, .slider-x3f9 {
        min-height: 360px;
        height: 360px;
    }
}

@media (max-width: 600px) {
    .slide-h1-x3f9 {
        font-size: 1.4rem;
    }

    .slide-desc-x3f9 {
        font-size: .9rem;
    }

    .winners-table-x9n4 td, .winners-table-x9n4 th {
        padding: 10px 10px;
    }

    .widget-x5f1 {
        padding: 10px 12px;
    }

    .widget-text-x5f1 {
        font-size: .8rem;
    }

    .sec-title-q8m1 {
        font-size: 1.35rem;
    }

    .content-block-x1r5 {
        padding: 22px 16px;
    }

    .wheel-x4w8 {
        padding: 24px 16px;
    }

    .jackpot-x5b3 {
        padding: 24px 16px;
    }

    .procon-col-x2v7 {
        padding: 20px;
    }
}

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

.g-x9r1 {
    display: none;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}
