@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --clr-bg: #26313F;
    --clr-header: #25313F;
    --clr-btn-login: #25313F;
    --clr-btn-reg: #A82929;
    --clr-accent: #A82929;
    --clr-text: #E8EDF2;
    --clr-muted: #8FA0B2;
    --clr-border: rgba(255, 255, 255, .1);
    --clr-card: rgba(255, 255, 255, .04);
    --clr-card-hover: rgba(255, 255, 255, .07);
    --radius: 10px;
    --radius-lg: 16px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .35);
    --transition: .2s ease;
    --font-main: 'Montserrat', 'Roboto', Arial, sans-serif;
}

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

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

body {
    background: var(--clr-bg);
    color: var(--clr-text);
    font-family: var(--font-main);
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

a:hover {
    color: #d43838;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: var(--font-main);
}

input, textarea, select {
    font-family: var(--font-main);
}

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

.b9m4p-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.rz3w8-section {
    padding: 64px 0;
}

.qp5n1-spacer {
    height: 1px;
    background: var(--clr-border);
    margin: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .03em;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    white-space: nowrap;
}

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

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

.btn--login {
    background: var(--clr-btn-login);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
}

.btn--login:hover {
    background: #2e3e50;
    color: #fff;
}

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

.btn--reg:hover {
    background: #c23232;
    color: #fff;
}

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

.btn--bonus {
    background: linear-gradient(135deg, #A82929, #d43838);
    color: #fff;
    font-size: .8rem;
}

.site-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .4);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-nav a {
    color: var(--clr-text);
    font-size: .875rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background var(--transition), color var(--transition);
}

.header-nav a:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

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

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

.online-dot {
    width: 8px;
    height: 8px;
    background: #27c85a;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

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

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

.burger-line {
    width: 24px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

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

.burger.is-open .burger-line:nth-child(2) {
    opacity: 0;
}

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

.mobile-nav {
    display: none;
    background: var(--clr-header);
    border-top: 1px solid var(--clr-border);
    padding: 12px 20px;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav a {
    color: var(--clr-text);
    font-size: .95rem;
    padding: 10px 12px;
    border-radius: 6px;
    display: block;
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, .08);
}

.mobile-nav.is-open {
    display: flex;
}

.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--clr-header);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/bet-b.png');
    background-size: cover;
    background-position: center;
    opacity: .35;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(37, 49, 63, .95) 40%, rgba(37, 49, 63, .5) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero-badge {
    display: inline-block;
    background: var(--clr-accent);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    max-width: 600px;
    margin-bottom: 16px;
    color: #fff;
}

.hero-title span {
    color: var(--clr-accent);
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, .75);
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}

.hero-stat-label {
    font-size: .78rem;
    color: var(--clr-muted);
    margin-top: 2px;
}

.sec-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.sec-sub {
    font-size: .9rem;
    color: var(--clr-muted);
    margin-bottom: 32px;
}

.sec-badge {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(168, 41, 41, .18);
    color: var(--clr-accent);
    margin-bottom: 12px;
}

.jackpot-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.jackpot-card {
    flex: 1;
    min-width: 200px;
    background: linear-gradient(135deg, #1e2936, #2c3c4e);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.jackpot-card::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: .12;
}

.jackpot-card.mega::before {
    background: #ffd700;
}

.jackpot-card.grand::before {
    background: #A82929;
}

.jackpot-card.mini::before {
    background: #27c85a;
}

.jackpot-card.daily::before {
    background: #4a90d9;
}

.jackpot-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.jackpot-name {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--clr-muted);
    margin-bottom: 8px;
}

.jackpot-amount {
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.jackpot-card.mega .jackpot-amount {
    color: #ffd700;
}

.jackpot-card.grand .jackpot-amount {
    color: #ff6b6b;
}

.jackpot-card.mini .jackpot-amount {
    color: #27c85a;
}

.jackpot-card.daily .jackpot-amount {
    color: #4a90d9;
}

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

.mirrors-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.mirror-datetime {
    font-size: .82rem;
    color: var(--clr-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.mirror-datetime-icon {
    color: var(--clr-accent);
}

.mirror-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
}

.mirror-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 540px;
}

.mirror-table th {
    background: rgba(255, 255, 255, .05);
    padding: 12px 16px;
    text-align: left;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--clr-muted);
    border-bottom: 1px solid var(--clr-border);
}

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

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

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

.mirror-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 700;
}

.mirror-badge.active {
    background: rgba(39, 200, 90, .15);
    color: #27c85a;
}

.mirror-badge.fast {
    background: rgba(74, 144, 217, .15);
    color: #4a90d9;
}

.mirror-speed {
    font-size: .8rem;
    color: var(--clr-muted);
}

.mirror-link {
    color: #4a90d9;
    font-weight: 600;
}

.mirror-link:hover {
    color: #6ab0f5;
}

.screenshots-grid {
    display: flex;
    gap: 16px;
}

.screenshots-grid .scr-item {
    flex: 1;
    min-width: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
    border: 1px solid var(--clr-border);
}

.screenshots-grid .scr-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.screenshots-grid .scr-item:hover img {
    transform: scale(1.04);
}

.scr-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .75));
    font-size: .82rem;
    font-weight: 500;
    color: #fff;
}

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

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

.slider-track .scr-item {
    flex: 0 0 100%;
    border-radius: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    border: none;
    padding: 0;
    transition: background var(--transition);
}

.slider-dot.active {
    background: var(--clr-accent);
}

.slider-arrows {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    padding: 0 8px;
}

.slider-btn {
    pointer-events: all;
    background: rgba(0, 0, 0, .55);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background var(--transition);
}

.slider-btn:hover {
    background: rgba(0, 0, 0, .8);
}

.wheel-section-inner {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
}

.wheel-container {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.wheel-canvas-wrap {
    position: relative;
    width: 300px;
    height: 300px;
}

#wheelCanvas {
    border-radius: 50%;
    box-shadow: 0 0 32px rgba(168, 41, 41, .3);
}

.wheel-pointer {
    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: 24px solid #ffd700;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .5));
}

.wheel-spin-btn {
    background: linear-gradient(135deg, #A82929, #d43838);
    color: #fff;
    padding: 12px 36px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 30px;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition);
}

.wheel-spin-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(168, 41, 41, .5);
}

.wheel-spin-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.wheel-info {
    flex: 1;
    min-width: 260px;
}

.wheel-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.wheel-info p {
    color: var(--clr-muted);
    margin-bottom: 16px;
    line-height: 1.7;
}

.wheel-result {
    display: none;
    background: linear-gradient(135deg, rgba(39, 200, 90, .1), rgba(39, 200, 90, .05));
    border: 1px solid rgba(39, 200, 90, .25);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-top: 16px;
    text-align: center;
}

.wheel-result.show {
    display: block;
    animation: fadeInUp .4s ease;
}

.wheel-result-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #27c85a;
    margin-bottom: 8px;
}

.wheel-result-text {
    color: var(--clr-text);
    margin-bottom: 16px;
    font-size: .95rem;
}

.wheel-lose {
    display: none;
    background: rgba(168, 41, 41, .08);
    border: 1px solid rgba(168, 41, 41, .2);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-top: 16px;
    text-align: center;
}

.wheel-lose.show {
    display: block;
    animation: fadeInUp .4s ease;
}

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

.content-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.content-block h1, .content-block h2, .content-block h3, .content-block h4 {
    color: #fff;
    margin-top: 1.6em;
    margin-bottom: .6em;
    line-height: 1.35;
}

.content-block h1 {
    font-size: 1.8rem;
    margin-top: 0;
}

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

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

.content-block p {
    color: var(--clr-text);
    margin-bottom: 1em;
    line-height: 1.75;
}

.content-block ul, .content-block ol {
    margin: 0 0 1em 1.2em;
    color: var(--clr-text);
}

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

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

.content-block li {
    margin-bottom: .45em;
    line-height: 1.65;
}

.content-block a {
    color: #4a90d9;
}

.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
}

.content-block table th {
    background: rgba(255, 255, 255, .06);
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--clr-border);
    font-weight: 600;
    color: #fff;
}

.content-block table td {
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
}

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

.content-block blockquote {
    border-left: 3px solid var(--clr-accent);
    padding-left: 16px;
    margin: 1em 0;
    color: var(--clr-muted);
    font-style: italic;
}

.content-block img {
    border-radius: var(--radius);
    margin: 1em 0;
}

.content-block strong {
    color: #fff;
    font-weight: 600;
}

.content-block em {
    color: var(--clr-muted);
}

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

.author-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 32px;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: rgba(255, 255, 255, .1);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.author-role {
    font-size: .8rem;
    color: var(--clr-accent);
    margin-bottom: 8px;
}

.author-bio {
    font-size: .85rem;
    color: var(--clr-muted);
    line-height: 1.6;
}

.author-link {
    font-size: .8rem;
    color: #4a90d9;
    display: inline-block;
    margin-top: 8px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: .95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, .03);
}

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(168, 41, 41, .15);
    color: var(--clr-accent);
    font-size: .9rem;
    transition: transform var(--transition);
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 16px;
    color: var(--clr-muted);
    font-size: .9rem;
    line-height: 1.7;
}

.faq-item.is-open .faq-answer {
    display: block;
}

.site-footer {
    background: var(--clr-header);
    border-top: 1px solid var(--clr-border);
    padding: 48px 0 0;
}

.footer-top {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--clr-border);
}

.footer-logo-col {
    flex: 0 0 200px;
}

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

.footer-desc {
    font-size: .82rem;
    color: var(--clr-muted);
    line-height: 1.6;
}

.footer-col {
    flex: 1;
    min-width: 160px;
}

.footer-col-title {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--clr-muted);
    margin-bottom: 14px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a {
    font-size: .875rem;
    color: rgba(255, 255, 255, .6);
}

.footer-col a:hover {
    color: #fff;
}

.footer-payments {
    padding: 28px 0;
}

.footer-payments-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--clr-muted);
    margin-bottom: 16px;
}

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

.payment-logo {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    padding: 7px 14px;
    font-size: .78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .7);
}

.provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 12px;
}

.provider-logo {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--clr-muted);
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-size: .78rem;
    color: var(--clr-muted);
}

.footer-legal {
    font-size: .72rem;
    color: rgba(255, 255, 255, .3);
    max-width: 600px;
    line-height: 1.5;
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: linear-gradient(90deg, #1a232e, var(--clr-header));
    border-top: 1px solid var(--clr-border);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .4);
}

.widget-text {
    flex: 1;
    font-size: .88rem;
    font-weight: 500;
    color: #fff;
}

.widget-text span {
    color: #ffd700;
    font-weight: 700;
}

.widget-close {
    background: none;
    border: none;
    color: var(--clr-muted);
    font-size: 1.1rem;
    padding: 4px;
    cursor: pointer;
    flex-shrink: 0;
}

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

.f7g2p-unused {
    display: none;
    width: 0;
    height: 0;
}

.j5k8m-hidden {
    visibility: hidden;
    position: absolute;
    pointer-events: none;
}

.wp-block-group {
    display: block;
}

.wp-block-paragraph {
    display: block;
}

.elementor-widget-container {
    display: block;
}

.entry-content {
    display: block;
}

.post-content {
    display: block;
}

.wp-site-blocks {
    display: block;
}

.is-layout-flow {
    display: block;
}

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

@keyframes shimmer {
    0% {
        background-position: -400px 0;
    }
    100% {
        background-position: 400px 0;
    }
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--clr-accent);
    border-radius: 2px;
    margin: 12px 0 28px;
}

.card-hover-lift {
    transition: transform var(--transition), box-shadow var(--transition);
}

.card-hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2rem;
    }

    .jackpot-grid .jackpot-card {
        min-width: calc(50% - 8px);
    }
}

@media (max-width: 768px) {
    .rz3w8-section {
        padding: 44px 0;
    }

    .header-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .screenshots-grid {
        display: none;
    }

    .slider-wrap {
        display: block;
    }

    .wheel-section-inner {
        flex-direction: column;
    }

    .wheel-canvas-wrap {
        width: 260px;
        height: 260px;
    }

    #wheelCanvas {
        width: 260px !important;
        height: 260px !important;
    }

    .footer-logo-col {
        flex: 0 0 100%;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-num {
        font-size: 1.3rem;
    }

    .mirrors-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .sticky-widget {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .jackpot-grid .jackpot-card {
        min-width: 100%;
    }

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

    .hero-btns .btn {
        width: 100%;
    }

    .content-block {
        padding: 20px;
    }

    .author-box {
        flex-direction: column;
    }
}

@media (min-width: 769px) {
    .slider-wrap {
        display: none;
    }

    .screenshots-grid {
        display: flex;
    }
}
