:root {
    --clr-bg: #0e0e0e;
    --clr-nav: #1b1c1d;
    --clr-red: #e50539;
    --clr-green: #28a909;
    --clr-text: #f0f0f0;
    --clr-muted: #9a9a9a;
    --clr-border: #2a2a2a;
    --clr-card: #181819;
    --clr-card2: #1e1f20;
    --radius: 10px;
    --font-main: 'Inter', 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.6;
    overflow-x: hidden
}

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

a {
    color: var(--clr-red);
    text-decoration: none;
    transition: color .2s
}

a:hover {
    color: #ff2255
}

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

p {
    margin-bottom: .9rem
}

ul, ol {
    padding-left: 1.4rem;
    margin-bottom: .9rem
}

li {
    margin-bottom: .35rem
}

table {
    border-collapse: collapse;
    width: 100%
}

th, td {
    padding: .65rem 1rem;
    border: 1px solid var(--clr-border);
    text-align: left;
    font-size: .92rem
}

th {
    background: #232425;
    color: var(--clr-text);
    font-weight: 600
}

td {
    color: var(--clr-text)
}

tr:nth-child(even) td {
    background: #161617
}

.xw9k2 {
    display: none
}

.q7m3n {
    visibility: hidden;
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.p2r8v {
    font-size: 0;
    color: transparent;
    display: inline-block;
    width: 0;
    height: 0
}

.wp-content-wrapper {
    display: none
}

.entry-content-area .elementor-section {
    display: none
}

.yoast-seo-spacer {
    height: 0;
    overflow: hidden;
    display: none
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .55rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: .88rem;
    border: none;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s, filter .15s;
    text-decoration: none;
    white-space: nowrap
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.12)
}

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

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

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

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

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

.btn--lg {
    padding: .75rem 2rem;
    font-size: 1rem;
    border-radius: 8px
}

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

.btn--glow-red {
    box-shadow: 0 0 14px rgba(229, 5, 57, .45)
}

.btn--glow-green {
    box-shadow: 0 0 14px rgba(40, 169, 9, .45)
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--clr-nav);
    border-bottom: 1px solid #2d2d2d;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .5)
}

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

.logo-wrap img {
    height: 42px;
    width: auto
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    justify-content: center;
    flex-wrap: wrap
}

.header-nav a {
    color: var(--clr-text);
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: .35rem;
    transition: color .2s
}

.header-nav a:hover {
    color: var(--clr-red)
}

.header-nav svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    fill: currentColor
}

.header-actions {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-wrap: nowrap
}

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

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

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(40, 169, 9, .6)
    }
    50% {
        box-shadow: 0 0 0 5px rgba(40, 169, 9, 0)
    }
}

.lang-dropdown {
    position: relative;
    display: inline-block
}

.lang-btn {
    background: none;
    border: 1px solid var(--clr-border);
    border-radius: 5px;
    color: var(--clr-text);
    padding: .3rem .6rem;
    cursor: pointer;
    font-size: .82rem;
    display: flex;
    align-items: center;
    gap: .3rem;
    transition: border-color .2s
}

.lang-btn:hover {
    border-color: var(--clr-red)
}

.lang-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    background: var(--clr-nav);
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    min-width: 130px;
    z-index: 200;
    overflow: hidden;
    display: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .6)
}

.lang-menu.open {
    display: block;
    animation: fade-in-down .15s ease
}

.lang-menu a {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem .8rem;
    font-size: .83rem;
    color: var(--clr-text);
    transition: background .15s
}

.lang-menu a:hover {
    background: #26272a
}

.lang-flag {
    font-size: 1.1rem
}

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

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform .25s, opacity .25s
}

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

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

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

.mobile-nav {
    display: none;
    position: fixed;
    top: 61px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 14, 14, .97);
    z-index: 999;
    padding: 1.5rem 1.4rem;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto
}

.mobile-nav.open {
    display: flex;
    animation: fade-in-down .2s ease
}

.mobile-nav a {
    color: var(--clr-text);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem 0;
    border-bottom: 1px solid var(--clr-border)
}

.mobile-nav a:hover {
    color: var(--clr-red)
}

.mobile-nav svg {
    width: 18px;
    height: 18px;
    fill: currentColor
}

.hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #05060a
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/av-banner.png');
    background-size: cover;
    background-position: center;
    filter: brightness(.55)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14, 14, 14, .92) 40%, rgba(14, 14, 14, .1) 100%)
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 3rem 1.4rem;
    margin-left: 5vw
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(229, 5, 57, .15);
    border: 1px solid rgba(229, 5, 57, .35);
    border-radius: 20px;
    padding: .3rem .85rem;
    font-size: .78rem;
    color: var(--clr-red);
    margin-bottom: 1rem;
    font-weight: 600
}

.hero h1 {
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    margin-bottom: 1rem;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .6);
    color: #fff
}

.hero h1 span {
    color: var(--clr-red)
}

.hero p {
    font-size: 1.05rem;
    color: #d0d0d0;
    margin-bottom: 1.8rem;
    max-width: 480px
}

.hero-cta {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap
}

.rtp-row {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    margin-top: 1.5rem;
    flex-wrap: wrap
}

.rtp-item {
    font-size: .82rem;
    color: var(--clr-muted)
}

.rtp-item strong {
    color: var(--clr-text)
}

.section {
    padding: 3.5rem 1.4rem;
    max-width: 1280px;
    margin: 0 auto
}

.section-title {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    margin-bottom: .5rem;
    color: var(--clr-text)
}

.section-sub {
    color: var(--clr-muted);
    font-size: .92rem;
    margin-bottom: 2rem
}

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

.info-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    margin-bottom: 2rem
}

.info-table-wrap table {
    min-width: 520px
}

.info-table-wrap td:first-child {
    color: var(--clr-muted);
    font-weight: 500;
    width: 50%
}

.info-table-wrap td:last-child {
    color: var(--clr-text);
    font-weight: 600
}

.badge-val {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: rgba(40, 169, 9, .12);
    border: 1px solid rgba(40, 169, 9, .3);
    border-radius: 20px;
    padding: .15rem .65rem;
    font-size: .8rem;
    color: var(--clr-green)
}

.winners-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 2rem
}

.winners-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem
}

.winners-header h3 {
    font-size: 1.05rem
}

.live-label {
    font-size: .75rem;
    color: var(--clr-green);
    display: flex;
    align-items: center;
    gap: .3rem
}

.winners-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    max-height: 440px;
    overflow-y: auto
}

.winner-row {
    display: grid;
    grid-template-columns:2rem 1fr 80px 80px;
    align-items: center;
    gap: .6rem;
    padding: .5rem .7rem;
    border-radius: 6px;
    font-size: .85rem;
    transition: background .15s
}

.winner-row:hover {
    background: #212224
}

.winner-rank {
    color: var(--clr-muted);
    font-size: .78rem;
    font-weight: 600
}

.winner-rank.gold {
    color: #f0b429
}

.winner-rank.silver {
    color: #c0c0c0
}

.winner-rank.bronze {
    color: #cd7f32
}

.winner-nick {
    color: var(--clr-text);
    font-weight: 500
}

.winner-mult {
    color: var(--clr-red);
    font-weight: 700;
    text-align: right
}

.winner-sum {
    color: var(--clr-green);
    font-weight: 700;
    text-align: right
}

.screenshots-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem
}

.screenshots-grid img {
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    object-fit: cover;
    aspect-ratio: 16/9;
    width: 100%;
    transition: transform .25s, box-shadow .25s
}

.screenshots-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .6)
}

.bonuses-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 1.2rem;
    margin-bottom: 2rem
}

.bonus-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s
}

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

.bonus-card img {
    width: 100%;
    aspect-ratio: 2/1;
    object-fit: cover
}

.bonus-card-body {
    padding: 1rem 1.1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .6rem
}

.bonus-casino {
    font-size: .78rem;
    color: var(--clr-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .05em
}

.bonus-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-text)
}

.bonus-desc {
    font-size: .83rem;
    color: var(--clr-muted);
    flex: 1
}

.bonus-meta {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: .4rem
}

.bonus-tag {
    background: #1e1f20;
    border: 1px solid var(--clr-border);
    border-radius: 4px;
    padding: .15rem .5rem;
    font-size: .74rem;
    color: var(--clr-muted)
}

.demo-section {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    margin-bottom: 2rem
}

.demo-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 1.2rem;
    background: #141516;
    border-bottom: 1px solid var(--clr-border)
}

.demo-topbar-title {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600
}

.demo-topbar-title svg {
    width: 18px;
    height: 18px;
    fill: var(--clr-red)
}

.demo-frame-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000
}

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

.demo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    background: rgba(10, 10, 10, .88);
    z-index: 5
}

.demo-overlay.hidden {
    display: none
}

.demo-overlay-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    text-align: center
}

.demo-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 1.2rem;
    border-top: 1px solid var(--clr-border)
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    margin-bottom: 2rem
}

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

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--clr-text);
    padding: 1rem 1.2rem;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8rem;
    transition: background .15s;
    font-family: var(--font-main)
}

.faq-question:hover {
    background: #212224
}

.faq-icon {
    width: 20px;
    height: 20px;
    border: 2px solid var(--clr-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .25s, border-color .25s;
    color: var(--clr-muted)
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    border-color: var(--clr-red);
    color: var(--clr-red)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .25s
}

.faq-answer-inner {
    padding: 0 1.2rem 1rem;
    color: #ccc;
    font-size: .9rem;
    line-height: 1.7
}

.faq-item.active .faq-answer {
    max-height: 600px
}

.site-footer {
    background: var(--clr-nav);
    border-top: 1px solid #2a2a2a;
    padding: 2.5rem 1.4rem 1.5rem
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:1fr 2fr;
    gap: 2.5rem;
    margin-bottom: 2rem
}

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

.footer-tagline {
    font-size: .82rem;
    color: var(--clr-muted);
    max-width: 220px;
    line-height: 1.6
}

.footer-links {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 1rem
}

.footer-col h4 {
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--clr-muted);
    margin-bottom: .8rem;
    font-weight: 600
}

.footer-col a {
    display: block;
    font-size: .84rem;
    color: #aaa;
    margin-bottom: .45rem;
    transition: color .15s
}

.footer-col a:hover {
    color: var(--clr-red)
}

.footer-bottom {
    border-top: 1px solid var(--clr-border);
    padding-top: 1.5rem;
    max-width: 1280px;
    margin: 0 auto
}

.footer-trust {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem
}

.footer-trust img {
    height: 30px;
    width: auto;
    opacity: .7;
    filter: grayscale(40%)
}

.footer-payments img {
    height: 28px;
    margin-bottom: 1rem
}

.footer-legal {
    font-size: .76rem;
    color: var(--clr-muted);
    line-height: 1.65;
    margin-bottom: .8rem
}

.footer-copy {
    font-size: .78rem;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem
}

.footer-provider {
    display: flex;
    align-items: center;
    gap: .5rem
}

.footer-provider img {
    height: 22px;
    opacity: .6;
    filter: grayscale(30%)
}


.content-block {
    color: var(--clr-text)
}

.content-block h2 {
    font-size: 1.4rem;
    margin: 1.4rem 0 .6rem;
    color: #fff
}

.content-block h3 {
    font-size: 1.15rem;
    margin: 1.2rem 0 .5rem;
    color: #eee
}

.content-block h4 {
    font-size: 1rem;
    margin: 1rem 0 .4rem;
    color: #ddd
}

.content-block p {
    color: #ccc;
    line-height: 1.75;
    margin-bottom: 1rem
}

.content-block ul, .content-block ol {
    color: #ccc;
    padding-left: 1.5rem;
    margin-bottom: 1rem
}

.content-block li {
    margin-bottom: .45rem;
    line-height: 1.7
}

.content-block strong {
    color: #fff
}

.content-block em {
    color: #d0a0a0
}

.content-block a {
    color: var(--clr-red)
}

.content-block table {
    margin: 1.2rem 0;
    border-radius: 6px;
    overflow: hidden
}

.content-block blockquote {
    border-left: 3px solid var(--clr-red);
    padding: .7rem 1.1rem;
    background: #161617;
    margin: 1rem 0;
    color: #bbb;
    border-radius: 0 6px 6px 0
}

.content-block code {
    background: #232425;
    padding: .1rem .4rem;
    border-radius: 4px;
    font-size: .85em;
    color: #f0a0a0;
    font-family: monospace
}

.content-block pre {
    background: #141516;
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 1rem;
    overflow-x: auto;
    margin-bottom: 1rem
}

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

.content-block img {
    border-radius: 6px;
    margin: 1rem 0
}

.author-box {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 1.2rem 1.4rem;
    margin-top: 2rem
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-red), #800030);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.author-name {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .2rem
}

.author-meta {
    font-size: .8rem;
    color: var(--clr-muted);
    margin-bottom: .4rem
}

.author-bio {
    font-size: .82rem;
    color: #aaa;
    line-height: 1.6
}

.author-link {
    font-size: .8rem;
    color: var(--clr-red)
}

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

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

.slider-track .slide {
    min-width: 100%;
    flex-shrink: 0
}

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

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-border);
    cursor: pointer;
    transition: background .2s
}

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

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 .5rem;
    pointer-events: none
}

.slider-arrow {
    pointer-events: all;
    background: rgba(0, 0, 0, .6);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    font-size: 1rem
}

.slider-arrow:hover {
    background: var(--clr-red)
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    color: var(--clr-muted);
    padding: .8rem 1.4rem;
    max-width: 1280px;
    margin: 0 auto;
    flex-wrap: wrap
}

.breadcrumb a {
    color: var(--clr-muted);
    transition: color .15s
}

.breadcrumb a:hover {
    color: var(--clr-red)
}

.breadcrumb-sep {
    font-size: .7rem
}

@keyframes fade-in-down {
    from {
        opacity: 0;
        transform: translateY(-8px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fade-in {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(16px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.animate-fade {
    opacity: 0;
    transition: opacity .5s ease, transform .5s ease;
    transform: translateY(14px)
}

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

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

    .bonuses-grid {
        grid-template-columns:repeat(2, 1fr)
    }
}

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

    .header-nav {
        display: none
    }

    .burger {
        display: flex
    }

    .hero {
        min-height: 320px
    }

    .hero-content {
        padding: 2rem 1rem;
        margin-left: 0
    }

    .hero h1 {
        font-size: 1.6rem
    }

    .screenshots-grid {
        grid-template-columns:1fr
    }

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

    .footer-inner {
        grid-template-columns:1fr
    }

    .footer-links {
        grid-template-columns:1fr
    }

    .winner-row {
        grid-template-columns:2rem 1fr 70px
    }

    .winner-sum {
        display: none
    }

    .sticky-widget {
        flex-direction: column;
        gap: .5rem;
        align-items: flex-start
    }

    .footer-copy {
        flex-direction: column;
        gap: .3rem
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: .5rem .8rem
    }

    .section {
        padding: 2.5rem .9rem
    }

    .hero-cta {
        flex-direction: column
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center
    }
}

.c3k9m, .d7w2q, .f4p1r {
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    visibility: hidden
}

.n8x5t, .m1j6v, .h9s3b {
    color: transparent;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
    display: inline
}

.mgfg {
    max-width: 920px;
    margin: 0 auto;
    padding: 48px 0;
}

.mgfg h1 {
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -.02em;
    margin: 0 0 14px;
    color: var(--clr-text);
}

.mgfg h2 {
    font-size: clamp(1.25rem, 2.4vw, 1.75rem);
    line-height: 1.25;
    font-weight: 800;
    margin: 26px 0 10px;
    color: var(--clr-text);
}

.mgfg h3 {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.3;
    font-weight: 750;
    margin: 18px 0 8px;
    color: var(--clr-text);
}

.mgfg p {
    color: var(--clr-muted);
    font-size: .95rem;
    line-height: 1.8;
    margin: 0 0 14px;
}

.mgfg a {
    color: var(--clr-red);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.mgfg a:hover {
    color: #ff2255;
}

.mgfg ul,
.mgfg ol {
    padding-left: 22px;
    margin: 0 0 14px;
    color: var(--clr-muted);
}

.mgfg li {
    margin: 0 0 8px;
    line-height: 1.7;
    font-size: .95rem;
}

.mgfg ul {
    list-style: disc;
}

.mgfg ol {
    list-style: decimal;
}

.mgfg table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    overflow: hidden;
    display: block;
}

.mgfg table thead,
.mgfg table tbody,
.mgfg table tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.mgfg table td,
.mgfg table th {
    padding: 12px 14px;
    border-bottom: 1px solid var(--clr-border);
    text-align: left;
    font-size: .9rem;
}

.mgfg table th {
    background: rgba(255, 255, 255, .04);
    color: var(--clr-text);
    font-weight: 700;
}

.mgfg table td {
    color: var(--clr-muted);
}

.mgfg table tr:last-child td {
    border-bottom: 0;
}

.mgfg blockquote {
    margin: 16px 0;
    padding: 14px 16px;
    border-left: 3px solid var(--clr-red);
    background: rgba(229, 5, 57, .06);
    border-radius: 0 10px 10px 0;
    color: var(--clr-muted);
}

.mgfg strong {
    color: var(--clr-text);
    font-weight: 700;
}

.mgfg hr {
    border: 0;
    height: 1px;
    background: var(--clr-border);
    margin: 18px 0;
}

@media (max-width: 900px) {
    .mgfg {
        max-width: 100%;
        padding: 42px 0;
    }
}

@media (max-width: 600px) {
    .mgfg {
        padding: 32px 0;
    }

    .mgfg h1 {
        font-size: 1.65rem;
        margin-bottom: 12px;
    }

    .mgfg h2 {
        font-size: 1.25rem;
        margin-top: 22px;
    }

    .mgfg p,
    .mgfg li {
        font-size: .93rem;
        line-height: 1.75;
    }

    .mgfg ul,
    .mgfg ol {
        padding-left: 18px;
    }

    .mgfg table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mgfg table thead,
    .mgfg table tbody,
    .mgfg table tr {
        width: max-content;
        min-width: 520px;
    }

    .mgfg table td,
    .mgfg table th {
        padding: 10px 12px;
        font-size: .86rem;
        white-space: nowrap;
    }
}

@media (max-width: 420px) {
    .mgfg {
        padding: 28px 0;
    }

    .mgfg h1 {
        font-size: 1.5rem;
    }

    .mgfg p {
        font-size: .9rem;
    }
}

.mgfg {
    max-width: 920px;
    margin: 0 auto;
    padding: 48px 28px;
    border: 1px solid var(--clr-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, .02);
}

@media (max-width: 900px) {
    .mgfg {
        max-width: 100%;
        padding: 42px 20px;
        border-radius: 12px;
    }
}

@media (max-width: 600px) {
    .mgfg {
        padding: 28px 16px;
        border-radius: 10px;
    }
}

@media (max-width: 768px) {

    #demo .demo-frame-wrap {
        padding-top: 0;
        height: 100dvh;
        min-height: 560px;
        background: #000;
    }

    #demo .demo-frame-wrap iframe {
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    #demo .demo-overlay {
        inset: 0;
    }

    #demo .demo-section {
        border-radius: 10px;
    }

    #demo .demo-topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    #demo .demo-cta-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    #demo .demo-cta-bar .btn {
        width: 100%;
        justify-content: center;
    }

}

@media (max-width: 768px) {

    #bonuses .section-title {
        font-size: 1.45rem;
    }

    #bonuses .section-sub {
        font-size: .9rem;
        margin-bottom: 1.4rem;
    }

    #bonusesDesktop {
        display: none;
    }

    #bonusesSlider {
        display: block !important;
    }

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

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

    #bonuses .slide {
        min-width: 100%;
    }

    #bonuses .bonus-card {
        border-radius: 12px;
        overflow: hidden;
        background: var(--clr-card);
        border: 1px solid var(--clr-border);
    }

    #bonuses .bonus-card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
    }

    #bonuses .bonus-card-body {
        padding: 14px;
    }

    #bonuses .bonus-casino {
        font-size: .75rem;
        margin-bottom: 4px;
    }

    #bonuses .bonus-name {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    #bonuses .bonus-desc {
        font-size: .82rem;
        line-height: 1.6;
    }

    #bonuses .bonus-meta {
        gap: 6px;
        margin-top: 8px;
    }

    #bonuses .bonus-tag {
        font-size: .7rem;
        padding: 2px 6px;
    }

    #bonuses .btn {
        height: 40px;
        font-size: .85rem;
    }

    #bonuses .slider-arrows {
        position: absolute;
        top: 45%;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 6px;
        pointer-events: none;
    }

    #bonuses .slider-arrow {
        pointer-events: auto;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: rgba(0, 0, 0, .7);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
    }

    #bonuses .slider-dots {
        margin-top: 10px;
    }

    #bonuses .slider-dot {
        width: 7px;
        height: 7px;
    }

}

@media (max-width: 480px) {

    #bonuses .bonus-card img {
        height: 150px;
    }

    #bonuses .bonus-name {
        font-size: .95rem;
    }

    #bonuses .bonus-desc {
        font-size: .8rem;
    }

}

@media (max-width: 768px) {

    #screenshotsDesktop {
        display: none;
    }

    #screenshotsSlider {
        display: block !important;
    }

    #screenshots .section-title {
        font-size: 1.4rem;
    }

    #screenshots .section-sub {
        font-size: .9rem;
        margin-bottom: 1.4rem;
    }

    #screenshots .slider-wrap {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
    }

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

    #screenshots .slide {
        min-width: 100%;
        padding: 0 4px;
    }

    #screenshots .slide img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 12px;
        border: 1px solid var(--clr-border);
    }

    #screenshots .slider-arrows {
        position: absolute;
        top: 45%;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 6px;
        pointer-events: none;
    }

    #screenshots .slider-arrow {
        pointer-events: auto;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(0, 0, 0, .75);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        color: #fff;
        border: 1px solid var(--clr-border);
    }

    #screenshots .slider-arrow:hover {
        background: var(--clr-red);
    }

    #screenshots .slider-dots {
        margin-top: 10px;
        display: flex;
        justify-content: center;
        gap: 6px;
    }

    #screenshots .slider-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--clr-border);
    }

    #screenshots .slider-dot.active {
        background: var(--clr-red);
    }

}

@media (max-width: 480px) {

    #screenshots .slide img {
        height: 180px;
    }

    #screenshots .section-title {
        font-size: 1.25rem;
    }

    #screenshots .section-sub {
        font-size: .85rem;
    }

}