* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #04102a;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    background-image:
        radial-gradient(ellipse at top, rgba(56,189,248,0.18), transparent 60%),
        radial-gradient(ellipse at bottom, rgba(30,64,175,0.25), transparent 60%),
        linear-gradient(rgba(59,130,246,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,0.06) 1px, transparent 1px);
    background-size: auto, auto, 40px 40px, 40px 40px;
    background-attachment: fixed;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; color: inherit; font-family: inherit; }
img { display: block; max-width: 100%; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 12px; }

/* ============== HEADER ============== */
.site-header {
    background: linear-gradient(180deg, #04102a, #0a1f4a);
    border-bottom: 1px solid rgba(30,58,138,0.4);
    padding: 12px 12px 14px;
}
.hdr-row {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.btn-download {
    width: 42px; height: 42px;
    background: linear-gradient(180deg, #ef4444, #b91c1c);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    box-shadow: 0 4px 14px rgba(239,68,68,0.4);
    transition: transform .15s ease, filter .15s ease;
}
.btn-download:hover { filter: brightness(1.1); transform: translateY(-1px); }
.hdr-actions { display: flex; gap: 8px; align-items: center; flex: 1; max-width: 540px; margin-left: 12px; }
.btn-action {
    flex: 1;
    height: 42px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    color: #fff;
    font-size: 13px; font-weight: 800; letter-spacing: 0.06em;
    transition: filter .15s ease, transform .15s ease;
}
.btn-action:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-wa { background: linear-gradient(180deg, #34d399, #059669); box-shadow: 0 4px 14px rgba(16,185,129,0.4); }
.btn-lc { background: linear-gradient(180deg, #38bdf8, #1d4ed8); box-shadow: 0 4px 14px rgba(59,130,246,0.4); }

.hdr-logo {
    margin-top: 14px;
    display: flex; align-items: baseline; justify-content: center;
    gap: 6px;
    user-select: none;
    flex-wrap: wrap;
}
.logo-anjay4d {
    font-size: 42px; font-weight: 900; line-height: 1;
    color: #38bdf8;
    text-shadow: 0 0 18px rgba(56,189,248,0.7);
    letter-spacing: -0.02em;
}
.logo-toto {
    font-size: 26px; font-weight: 800; line-height: 1;
    color: #38bdf8;
    text-shadow: 0 0 12px rgba(56,189,248,0.7);
    position: relative;
    top: -2px;
}
.logo-group {
    font-size: 10px;
    letter-spacing: 0.25em;
    font-weight: 700;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.4);
    padding-top: 2px;
    align-self: flex-end;
    margin-left: 4px;
    margin-bottom: 4px;
}

/* ============== MARQUEE ============== */
.marquee-wrap {
    background: #0a1f4a;
    border-top: 1px solid rgba(30,58,138,0.5);
    border-bottom: 1px solid rgba(30,58,138,0.5);
    padding: 10px 12px;
    display: flex; align-items: center; gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}
.marquee-icon { color: #7dd3fc; flex-shrink: 0; }
.marquee-track-wrap { flex: 1; overflow: hidden; }
.marquee-track {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 35s linear infinite;
    color: rgba(186,230,253,0.9);
    font-size: 13px;
}
.marquee-track .dot { display: inline-block; margin: 0 32px; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============== HERO SLIDER ============== */
.hero-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    max-width: 1100px;
    margin: 16px auto 0;
    border-radius: 14px;
    overflow: hidden;
    background: #08163d;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    outline: 1px solid rgba(14,165,233,0.3);
}
.hero-slider .slide {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .7s ease;
}
.hero-slider .slide.active { opacity: 1; }
.slider-dots {
    position: absolute; bottom: 10px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 6px;
}
.slider-dots .dot {
    width: 8px; height: 6px;
    background: rgba(255,255,255,0.4);
    border-radius: 999px;
    transition: width .25s, background .25s;
}
.slider-dots .dot.active { width: 24px; background: #7dd3fc; }

/* ============== CTA ============== */
.cta-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px; margin-top: 16px;
}
.cta {
    height: 56px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    color: #fff;
    font-size: 16px; font-weight: 900;
    letter-spacing: 0.1em;
    transition: filter .15s ease, transform .15s ease;
}
.cta:hover { filter: brightness(1.1); transform: translateY(-1px); }
.cta-login  { background: linear-gradient(180deg, #38bdf8, #1d4ed8); box-shadow: 0 4px 16px rgba(59,130,246,0.45); }
.cta-daftar { background: linear-gradient(180deg, #f43f5e, #b91c1c); box-shadow: 0 4px 16px rgba(239,68,68,0.45); }

/* ============== PROVIDER TABS ============== */
.provider-tabs-wrap {
    position: relative;
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(180deg, #38bdf8, #1d4ed8);
    outline: 1px solid rgba(125,211,252,0.4);
    box-shadow: 0 4px 18px rgba(2,6,23,0.5);
}
.provider-tabs {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.provider-tabs::-webkit-scrollbar { display: none; }
.tab {
    flex-shrink: 0;
    width: 140px;
    padding: 12px 6px;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    color: #fff;
    border-right: 1px solid rgba(147,197,253,0.18);
    transition: background .15s ease;
    position: relative;
}
.tab:hover { background: rgba(37,99,235,0.3); }
.tab.active { background: rgba(30,64,175,0.6); }
.tab.active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 3px;
    background: #7dd3fc;
}
.tab img { height: 30px; width: auto; object-fit: contain; }
.tab span { font-size: 11px; font-weight: 800; letter-spacing: 0.08em; white-space: nowrap; }
.tab-arrow {
    position: absolute;
    top: 0; bottom: 0;
    width: 32px;
    background: rgba(30,58,138,0.5);
    color: #fff; font-size: 24px;
    z-index: 2;
    transition: background .15s ease;
}
.tab-arrow:hover { background: rgba(30,58,138,0.85); }
.tab-arrow-left { left: 0; }
.tab-arrow-right { right: 0; }

/* ============== SEARCH ROW ============== */
.search-row {
    margin-top: 18px;
    display: flex; gap: 10px; flex-wrap: wrap;
}
.search-box {
    flex: 1; min-width: 220px;
    position: relative;
    background: #0a1f4a;
    border-radius: 10px;
    outline: 1px solid rgba(14,165,233,0.4);
    transition: outline .15s ease;
    display: flex; align-items: center;
}
.search-box:focus-within { outline: 2px solid #38bdf8; }
.search-icon { position: absolute; left: 12px; color: #7dd3fc; pointer-events: none; }
.search-box input {
    width: 100%;
    background: transparent;
    color: #fff;
    border: none; outline: none;
    height: 44px;
    padding: 0 40px 0 38px;
    font-size: 14px;
}
.search-box input::placeholder { color: rgba(125,211,252,0.6); }
.search-clear {
    position: absolute; right: 6px;
    width: 28px; height: 28px;
    color: #bae6fd; font-size: 20px;
    border-radius: 999px;
    display: none; align-items: center; justify-content: center;
    transition: background .15s ease;
}
.search-clear:hover { background: rgba(255,255,255,0.1); }
.search-clear.show { display: flex; }
.fav-toggle {
    height: 44px;
    padding: 0 16px;
    border-radius: 10px;
    background: #0a1f4a;
    outline: 1px solid rgba(14,165,233,0.4);
    color: #bae6fd;
    font-size: 14px; font-weight: 800;
    display: flex; align-items: center; gap: 8px;
    transition: background .15s ease, outline .15s ease, color .15s ease;
}
.fav-toggle:hover { background: #0e2a63; }
.fav-toggle.active {
    background: #f43f5e;
    outline-color: #fda4af;
    color: #fff;
    box-shadow: 0 4px 14px rgba(244,63,94,0.45);
}
.fav-badge {
    min-width: 22px; height: 20px; padding: 0 6px;
    border-radius: 999px;
    background: #0ea5e9; color: #fff;
    font-size: 11px; font-weight: 900;
    display: inline-flex; align-items: center; justify-content: center;
}
.fav-toggle.active .fav-badge { background: #fff; color: #e11d48; }

/* ============== SECTION INFO ============== */
.section-info {
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
    margin-top: 22px;
    color: #bae6fd;
    font-size: 13px;
}
.clock-line, .refresh-info { display: inline-flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.refresh-info b { color: #fff; }
.last-update { color: #34d399; font-weight: 600; }

.provider-title {
    margin-top: 10px;
    font-size: 28px; font-weight: 900;
    letter-spacing: 0.04em;
    color: #fff;
}
.rating-row {
    display: flex; align-items: center; gap: 8px;
    margin-top: 4px;
    color: #bae6fd; font-size: 14px;
}
.rating-row .stars { color: #facc15; font-size: 16px; letter-spacing: 2px; }

/* ============== GAMES GRID ============== */
.games-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
}
@media (min-width: 480px) {
    .games-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .games-grid { grid-template-columns: repeat(3, 1fr); }
}
.game-card {
    border-radius: 14px;
    padding: 6px;
    background: linear-gradient(180deg, #38bdf8, #1d4ed8);
    outline: 1px solid rgba(125,211,252,0.3);
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
    transition: transform .2s ease, box-shadow .2s ease;
}
.game-card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.5); }
.game-card.is-hot { outline: 2px solid #fbbf24; box-shadow: 0 0 0 2px rgba(251,191,36,0.25), 0 6px 18px rgba(0,0,0,0.4); }

.card-inner {
    display: grid; grid-template-columns: 44% 1fr; gap: 6px;
}
.game-thumb {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    background: #08163d;
    outline: 1px solid rgba(0,0,0,0.3);
    display: block;
    cursor: pointer;
    text-decoration: none;
    transition: transform .2s ease, filter .2s ease;
}
.game-thumb:hover { filter: brightness(1.08); }
.game-thumb:hover img { transform: scale(1.04); }
.game-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .35s ease;
}
.badge {
    position: absolute; top: 4px; left: 4px;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 9px; font-weight: 900;
    letter-spacing: 0.1em;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.badge-new        { background: linear-gradient(135deg, #f43f5e, #b91c1c); }
.badge-top        { background: linear-gradient(135deg, #fbbf24, #ea580c); }
.badge-daily-wins { background: linear-gradient(135deg, #fde047, #f59e0b); color: #422006; }

.fav-btn {
    position: absolute; top: 4px; right: 4px;
    width: 26px; height: 26px;
    background: rgba(0,0,0,0.45);
    color: #fff;
    border-radius: 999px;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(4px);
    transition: background .15s ease, transform .15s ease;
}
.fav-btn:hover { background: rgba(0,0,0,0.7); }
.fav-btn.active { background: #f43f5e; }
.fav-btn.active:hover { background: #e11d48; }

.hot-replacement {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6px 6px;
    line-height: 1.15;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #dc2626, #7f1d1d);
}
.hot-replacement .hot-line-1 { font-size: 9px;  font-weight: 900; letter-spacing: 0.08em; color: #fef3c7; }
.hot-replacement .hot-line-2 { font-size: 14px; font-weight: 900; letter-spacing: 0.04em; margin: 2px 0; color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.35); }
.hot-replacement .hot-line-3 { font-size: 9px;  font-weight: 700; letter-spacing: 0.06em; color: #fde68a; }

/* Jam (time) bar — placed above the RTP bar */
.time-bar {
    margin: 4px 8px 0;
    height: 14px;
    border-radius: 4px;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.06em;
    overflow: hidden;
    position: relative;
    text-shadow: 0 1px 0 rgba(0,0,0,0.35);
    outline: 1px solid rgba(0,0,0,0.25);
}
.time-bar.time-green  { background: linear-gradient(90deg, #34d399, #16a34a); }
.time-bar.time-orange { background: linear-gradient(90deg, #fbbf24, #f97316); }
.time-bar.time-red    { background: linear-gradient(90deg, #f43f5e, #dc2626); }
.time-bar::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(45deg,
        rgba(255,255,255,0.18) 25%, transparent 25%,
        transparent 50%, rgba(255,255,255,0.18) 50%,
        rgba(255,255,255,0.18) 75%, transparent 75%);
    background-size: 20px 20px;
    animation: l61hzugtr3 0.8s linear infinite;
    pointer-events: none;
}

/* Pola panel */
.pola-panel {
    background: #06112e;
    border-radius: 10px;
    display: flex; flex-direction: column;
    min-height: 0;
}
.pola-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 6px 8px;
    border-bottom: 1px solid rgba(56,189,248,0.3);
}
.pola-title {
    color: #fff; font-size: 12px; font-weight: 700;
    display: inline-flex; align-items: center; gap: 5px;
}
.pola-title svg { color: #7dd3fc; }
.pola-icon { height: 16px; width: auto; object-fit: contain; }
.pola-body {
    flex: 1;
    padding: 6px 8px;
    display: flex; flex-direction: column; gap: 4px;
}
.pola-row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 8px;
}
.pola-name { color: #e0f2fe; font-size: 11px; font-weight: 600; }
.pola-flags { display: inline-flex; gap: 4px; }
.flag {
    width: 14px; height: 14px;
    border-radius: 3px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 900; color: #fff;
}
.flag.ok { background: rgba(16,185,129,0.9); }
.flag.no { background: rgba(244,63,94,0.9); }

.rtp-bar {
    position: relative;
    margin: 4px 8px 8px;
    height: 16px;
    background: rgba(255,255,255,0.95);
    border-radius: 4px;
    overflow: hidden;
    outline: 1px solid rgba(0,0,0,0.3);
}
.rtp-fill {
    position: absolute; top: 0; bottom: 0; left: 0;
    transition: width .4s ease;
}
.rtp-green  { background: linear-gradient(90deg, #34d399, #16a34a); }
.rtp-orange { background: linear-gradient(90deg, #fbbf24, #f97316); }
.rtp-red    { background: linear-gradient(90deg, #f43f5e, #dc2626); }
.rtp-text {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 900;
    color: #0f172a;
    text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}

/* Empty state */
.empty-state {
    margin-top: 32px;
    padding: 40px 16px;
    text-align: center;
    background: rgba(10,31,74,0.6);
    outline: 1px solid rgba(14,165,233,0.3);
    border-radius: 14px;
    color: #e0f2fe;
}

/* Lazy load sentinel + info */
#loadMoreSentinel { height: 1px; width: 100%; }
.load-more-info {
    text-align: center;
    color: #7dd3fc;
    font-size: 12px;
    padding: 14px 0 6px;
    min-height: 28px;
}
.load-more-info.loading::before {
    content: "";
    display: inline-block;
    width: 14px; height: 14px;
    border: 2px solid rgba(125,211,252,0.3);
    border-top-color: #7dd3fc;
    border-radius: 999px;
    animation: spin 0.7s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============== FOOTER ============== */
.site-footer {
    background: #04102a;
    border-top: 1px solid rgba(8,47,73,0.6);
    padding: 24px 16px;
    margin-top: 30px;
    text-align: center;
    color: rgba(186,230,253,0.85);
    font-size: 12px;
    line-height: 1.6;
}
.site-footer b { color: #7dd3fc; }
.site-footer .copy { margin-top: 6px; opacity: 0.7; }

/* ============== MOBILE / RESPONSIVE ============== */
@media (max-width: 640px) {
    .hdr-row { flex-wrap: wrap; gap: 8px; }
    .btn-download { width: 100%; height: 36px; order: -1; border-radius: 6px; }
    .hdr-actions { margin-left: 0; gap: 6px; max-width: 100%; }
    .btn-action { height: 38px; font-size: 12px; }
    .btn-action svg { width: 16px; height: 16px; }

    .logo-anjay4d { font-size: 36px; }
    .logo-toto { font-size: 22px; }
    .logo-group { font-size: 9px; }

    .cta { height: 50px; font-size: 14px; }
    /* Sticky LOGIN / DAFTAR di atas saat scroll */
    .cta-grid {
        position: sticky;
        top: 0;
        z-index: 90;
        margin-top: 12px;
        padding: 8px 0;
        background: rgba(4, 16, 42, 0.92);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 8px 18px -10px rgba(0,0,0,0.6);
    }
    .tab { width: 110px; padding: 10px 4px; }
    .tab img { height: 26px; }
    .tab span { font-size: 10px; }
    .tab-arrow { display: none; }

    .provider-title { font-size: 22px; }
    .section-info { font-size: 12px; }

    /* 2 cards per row on mobile */
    .games-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .game-card { padding: 4px; }
    .card-inner { grid-template-columns: 1fr; gap: 4px; }
    .game-thumb { aspect-ratio: 1 / 1; }
    .pola-panel { padding-bottom: 2px; }
    .pola-head { padding: 5px 6px; }
    .pola-title { font-size: 11px; }
    .pola-body { padding: 4px 6px; gap: 3px; }
    .pola-name { font-size: 10px; }
    .flag { width: 12px; height: 12px; font-size: 9px; }
    .rtp-bar { margin: 3px 6px 6px; height: 14px; }
    .rtp-text { font-size: 9px; }
    .hot-replacement { padding: 5px 4px; }
    .hot-replacement .hot-line-1, .hot-replacement .hot-line-3 { font-size: 8px; }
    .hot-replacement .hot-line-2 { font-size: 12px; }
    .time-bar { height: 13px; font-size: 9px; margin: 3px 6px 0; }
}
@media (max-width: 380px) {
    .badge { font-size: 8px; padding: 1px 4px; }
    .fav-btn { width: 22px; height: 22px; }
}

/* ============== UPDATE FLASH ============== */
@keyframes flashUpdate {
    0%   { box-shadow: 0 0 0 0 rgba(125,211,252,0.6); }
    50%  { box-shadow: 0 0 0 6px rgba(125,211,252,0.0); }
    100% { box-shadow: 0 0 0 0 rgba(125,211,252,0); }
}
.game-card.flash { animation: flashUpdate .7s ease; }

/* ============== CUSTOM ANIMATIONS ============== */
.jxm0vf5ytp {
    animation: jxm0vf5ytp 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@keyframes jxm0vf5ytp {
    0%   { transform: rotateY(-80deg); opacity: 0; }
    100% { transform: rotateY(0);      opacity: 1; }
}

.xr0bov4hm5 {
    animation: xr0bov4hm5 0.9s both;
}
@keyframes xr0bov4hm5 {
    0%   { transform: scale3d(1, 1, 1); }
    30%  { transform: scale3d(0.75, 1.25, 1); }
    40%  { transform: scale3d(1.25, 0.75, 1); }
    50%  { transform: scale3d(0.85, 1.15, 1); }
    65%  { transform: scale3d(1.05, 0.95, 1); }
    75%  { transform: scale3d(0.95, 1.05, 1); }
    100% { transform: scale3d(1, 1, 1); }
}

@keyframes l61hzugtr3 {
    to { background-position: 20px 0; }
}

/* Apply rotateY entrance to game cards (with stagger) + perspective on grid */
.games-grid { perspective: 1000px; }
.games-grid > .game-card { animation: jxm0vf5ytp 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; }
.games-grid > .game-card:nth-child(1)  { animation-delay: 0.00s; }
.games-grid > .game-card:nth-child(2)  { animation-delay: 0.05s; }
.games-grid > .game-card:nth-child(3)  { animation-delay: 0.10s; }
.games-grid > .game-card:nth-child(4)  { animation-delay: 0.15s; }
.games-grid > .game-card:nth-child(5)  { animation-delay: 0.20s; }
.games-grid > .game-card:nth-child(6)  { animation-delay: 0.25s; }
.games-grid > .game-card:nth-child(7)  { animation-delay: 0.30s; }
.games-grid > .game-card:nth-child(8)  { animation-delay: 0.35s; }
.games-grid > .game-card:nth-child(9)  { animation-delay: 0.40s; }
.games-grid > .game-card:nth-child(10) { animation-delay: 0.45s; }

/* Jelly bounce on the "GAME REKOMENDASI" replacement block */
.hot-replacement { animation: xr0bov4hm5 0.9s both; transform-origin: center; }

/* Moving stripe overlay on the RTP progress bar */
.rtp-fill { position: absolute; }
.rtp-fill::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(45deg,
        rgba(255,255,255,0.22) 25%, transparent 25%,
        transparent 50%, rgba(255,255,255,0.22) 50%,
        rgba(255,255,255,0.22) 75%, transparent 75%);
    background-size: 20px 20px;
    animation: l61hzugtr3 0.8s linear infinite;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .games-grid > .game-card,
    .hot-replacement,
    .rtp-fill::after,
    .time-bar::after { animation: none !important; }
}
