:root {
    --c1: #0c4361;
    --c2: #b41c0a;
    --c3: #0756d0;
    --c4: #19918f;
    --c5: #0a3350;
    --c6: #083e70;
    --cw: #ffffff;
    --cg: #f0fafa;
    --ct: #e8f7f7;
    --cbr: #0d7a78;
    --rad: 10px;
    --rad2: 6px;
    --sh: 0 4px 20px rgba(0, 0, 0, .25);
    --sh2: 0 2px 10px rgba(0, 0, 0, .15);
    --tr: .25s ease;
    --fw: Nunito, sans-serif
}

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

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

body {
    font-family: var(--fw);
    background: var(--c4);
    color: var(--cw);
    line-height: 1.7;
    min-height: 100vh;
}

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

a:hover {
    color: var(--c3)
}

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

.x4f2q8 {
    display: none
}

.m9r3k1 {
    visibility: hidden;
    position: absolute;
    height: 0;
    overflow: hidden
}

.p7j5n2 {
    opacity: 0;
    pointer-events: none;
    position: absolute
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px
}

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

.site-header {
    background: var(--c1);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--sh)
}

.header-inner {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 10px 16px;
    max-width: 1240px;
    margin: 0 auto
}

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

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

.header-logo .logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--cw);
    letter-spacing: .5px;
    line-height: 1.2
}

.header-logo .logo-text span {
    color: #4dd8d5;
    display: block;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase
}

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, .85);
    font-size: .87rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: var(--rad2);
    transition: all var(--tr);
    white-space: nowrap
}

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

.header-nav a:hover, .header-nav a.active {
    background: rgba(255, 255, 255, .12);
    color: var(--cw)
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: var(--rad2);
    font-family: var(--fw);
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all var(--tr);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1
}

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

.btn-play {
    background: var(--c3);
    color: var(--cw)
}

.btn-play:hover {
    background: #0648b5;
    color: var(--cw)
}

.btn-bonus {
    background: var(--c2);
    color: var(--cw)
}

.btn-bonus:hover {
    background: #960e00;
    color: var(--cw)
}

.btn-demo {
    background: transparent;
    border: 2px solid var(--c3);
    color: var(--c3)
}

.btn-demo:hover {
    background: var(--c3);
    color: var(--cw)
}

.btn-secondary {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--cw)
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .22);
    color: var(--cw)
}

.btn-lg {
    padding: 13px 28px;
    font-size: 1rem;
    border-radius: var(--rad)
}

.btn-sm {
    padding: 6px 14px;
    font-size: .8rem
}

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

.lang-picker {
    position: relative
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--cw);
    padding: 7px 12px;
    border-radius: var(--rad2);
    cursor: pointer;
    font-size: .85rem;
    font-weight: 600;
    font-family: var(--fw);
    transition: all var(--tr)
}

.lang-btn:hover {
    background: rgba(255, 255, 255, .18)
}

.lang-btn svg {
    width: 14px;
    height: 14px;
    transition: transform var(--tr)
}

.lang-picker.open .lang-btn svg {
    transform: rotate(180deg)
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--c5);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--rad);
    padding: 6px;
    min-width: 130px;
    display: none;
    box-shadow: var(--sh);
    z-index: 100
}

.lang-picker.open .lang-dropdown {
    display: block
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    color: var(--cw);
    font-size: .85rem;
    border-radius: var(--rad2);
    transition: background var(--tr)
}

.lang-dropdown a:hover {
    background: rgba(255, 255, 255, .12);
    color: var(--cw)
}

.lang-dropdown a.cur {
    background: rgba(255, 255, 255, .08);
    color: #4dd8d5
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--rad2);
    transition: background var(--tr)
}

.burger:hover {
    background: rgba(255, 255, 255, .1)
}

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

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

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

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

.mobile-nav {
    display: none;
    background: var(--c5);
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 12px 16px;
    flex-direction: column;
    gap: 4px
}

.mobile-nav.open {
    display: flex
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .85);
    font-size: .9rem;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: var(--rad2);
    transition: all var(--tr)
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, .1);
    color: var(--cw)
}

.mobile-nav a svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.mobile-nav-btns {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.mobile-nav-btns .btn {
    flex: 1
}

.hero {
    background: linear-gradient(135deg, var(--c1) 0%, #0a3d6e 40%, var(--c4) 100%);
    padding: 48px 0 32px;
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/hero-plinko.jpg') center/cover no-repeat;
    opacity: .18;
    pointer-events: none
}

.hero-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 32px;
    align-items: center
}

.hero-content {
    position: relative;
    z-index: 1
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: .8rem;
    font-weight: 700;
    color: #4dd8d5;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px
}

.hero-badge::before {
    content: '●';
    color: var(--c2);
    font-size: 8px;
    animation: pulse 1.5s infinite
}

@keyframes pulse {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .3
    }
}

.hero h1 {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 14px;
    color: var(--cw)
}

.hero h1 span {
    color: #4dd8d5;
    display: block
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 24px;
    line-height: 1.7
}

.hero-stats {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 28px
}

.hero-stat {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--rad);
    padding: 12px;
    text-align: center
}

.hero-stat .val {
    font-size: 1.4rem;
    font-weight: 900;
    color: #4dd8d5;
    display: block
}

.hero-stat .lbl {
    font-size: .75rem;
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
    letter-spacing: .5px
}

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

.hero-game {
    position: relative;
    z-index: 1
}

.game-frame-wrap {
    background: var(--c5);
    border-radius: var(--rad);
    box-shadow: var(--sh);
    border: 1px solid rgba(255, 255, 255, .1)
}

.game-frame-wrap iframe {
    width: 100%;
    height: 420px;
    border: none;
    display: block
}

.game-frame-overlay {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    z-index: 10;
    border-radius: var(--rad)
}

.game-frame-header {
    background: var(--c1);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.game-frame-header .provider {
    font-size: .8rem;
    color: rgba(255, 255, 255, .7)
}

.game-frame-header .game-name {
    font-size: .95rem;
    font-weight: 700;
    color: var(--cw)
}

.game-frame-footer {
    background: var(--c1);
    padding: 10px 16px;
    display: flex;
    gap: 10px;
    justify-content: center
}

.main-content {
    padding: 32px 0
}

.section {
    margin-bottom: 32px
}

.section-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--cw);
    display: flex;
    align-items: center;
    gap: 10px
}

.section-title::before {
    content: '';
    display: block;
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, var(--c3), var(--c2));
    border-radius: 2px;
    flex-shrink: 0
}

.block {
    background: rgba(12, 67, 97, .55);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--rad);
    padding: 24px;
    box-shadow: var(--sh2)
}

.block-alt {
    background: rgba(7, 86, 208, .12);
    border: 1px solid rgba(7, 86, 208, .25)
}

.block-dark {
    background: rgba(5, 26, 40, .6)
}

.content-grid {
    display: grid;
    grid-template-columns:1fr 380px;
    gap: 24px;
    align-items: start
}

.game-details-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem
}

.game-details-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    transition: background var(--tr)
}

.game-details-table tr:hover {
    background: rgba(255, 255, 255, .04)
}

.game-details-table td {
    padding: 9px 12px;
    text-align: left
}

.game-details-table td:first-child {
    color: rgba(255, 255, 255, .65);
    font-size: .82rem;
    width: 44%;
    display: flex;
    align-items: center;
    gap: 7px
}

.game-details-table td:first-child svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: #4dd8d5
}

.game-details-table td:last-child {
    font-weight: 700;
    color: var(--cw)
}

.rtp-bar {
    display: flex;
    align-items: center;
    gap: 8px
}

.rtp-bar .bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, .15);
    border-radius: 3px;
    overflow: hidden
}

.rtp-bar .fill {
    height: 100%;
    background: linear-gradient(90deg, var(--c2), #f5a623);
    border-radius: 3px
}

.jackpots-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

.jackpot-card {
    border-radius: var(--rad);
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--sh)
}

.jackpot-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .08) 0%, transparent 60%)
}

.jackpot-mini {
    background: linear-gradient(135deg, #1a4a6e, #0c4361)
}

.jackpot-major {
    background: linear-gradient(135deg, #6b1a0a, #b41c0a)
}

.jackpot-mega {
    background: linear-gradient(135deg, #0646a8, #0756d0)
}

.jackpot-label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: .8;
    margin-bottom: 8px
}

.jackpot-amount {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 4px;
    font-feature-settings: "tnum"
}

.jackpot-amount.counting {
    animation: countUp .3s ease
}

@keyframes countUp {
    from {
        transform: scale(1.1)
    }
    to {
        transform: scale(1)
    }
}

.jackpot-ticker {
    font-size: .75rem;
    opacity: .7;
    margin-bottom: 16px
}

.jackpot-winners {
    text-align: left;
    background: rgba(0, 0, 0, .2);
    border-radius: var(--rad2);
    padding: 10px;
    margin-top: 4px
}

.jackpot-winners-title {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .7;
    margin-bottom: 8px;
    font-weight: 700
}

.jackpot-winner-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    font-size: .82rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.jackpot-winner-row:last-child {
    border-bottom: none
}

.jackpot-winner-row .nick {
    color: rgba(255, 255, 255, .85)
}

.jackpot-winner-row .amount {
    font-weight: 700;
    color: #f5c842
}

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

.winners-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
    min-width: 480px
}

.winners-table th {
    background: rgba(0, 0, 0, .3);
    padding: 10px 14px;
    text-align: left;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: rgba(255, 255, 255, .7);
    font-weight: 700
}

.winners-table th:first-child {
    width: 50px;
    text-align: center;
    border-radius: var(--rad2) 0 0 var(--rad2)
}

.winners-table th:last-child {
    border-radius: 0 var(--rad2) var(--rad2) 0
}

.winners-table td {
    padding: 9px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.winners-table tr:hover td {
    background: rgba(255, 255, 255, .04)
}

.winners-table td:first-child {
    text-align: center;
    font-weight: 900
}

.rank-1 {
    color: #ffd700;
    font-size: 1.1rem
}

.rank-2 {
    color: #c0c0c0;
    font-size: 1rem
}

.rank-3 {
    color: #cd7f32;
    font-size: 1rem
}

.win-amount {
    font-weight: 700;
    color: #4dd8d5
}

.win-game {
    color: rgba(255, 255, 255, .6);
    font-size: .8rem
}

.app-grid {
    display: grid;
    grid-template-columns:220px 1fr;
    gap: 28px;
    align-items: start
}

.phone-frame {
    position: relative;
    width: 180px;
    margin: 0 auto
}

.phone-frame-outer {
    background: linear-gradient(180deg, #2a2a3a, #1a1a2a);
    border-radius: 28px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5), inset 0 1px rgba(255, 255, 255, .1)
}

.phone-frame-screen {
    background: var(--c1);
    border-radius: 18px;
    aspect-ratio: 9/16;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.phone-frame-screen img {
    width: 100%;
    object-fit: cover
}

.phone-frame-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 12px;
    background: #1a1a2a;
    border-radius: 0 0 8px 8px;
    z-index: 2
}

.app-info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
    margin-bottom: 20px
}

.app-info-table td {
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.app-info-table td:first-child {
    color: rgba(255, 255, 255, .65);
    width: 45%
}

.app-info-table td:last-child {
    font-weight: 700
}

.app-download-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--cw);
    padding: 10px 16px;
    border-radius: var(--rad);
    transition: all var(--tr);
    font-weight: 600;
    font-family: var(--fw);
    font-size: .85rem;
    cursor: pointer;
    text-decoration: none
}

.store-btn:hover {
    background: rgba(255, 255, 255, .16);
    color: var(--cw);
    transform: translateY(-1px)
}

.store-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0
}

.store-btn .store-label {
    display: flex;
    flex-direction: column;
    line-height: 1.2
}

.store-btn .store-label small {
    font-size: .72rem;
    opacity: .75;
    font-weight: 400
}

.screenshots-grid {
    display: grid;
    grid-template-columns:repeat(5, 1fr);
    gap: 12px
}

.screenshot-item {
    border-radius: var(--rad);
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
    transition: transform var(--tr), box-shadow var(--tr);
    position: relative
}

.screenshot-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .4)
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.screenshots-slider {
    display: none;
    position: relative;
    overflow: hidden;
    border-radius: var(--rad)
}

.screenshots-slider .slide {
    display: none;
    aspect-ratio: 16/10;
    border-radius: var(--rad);
    overflow: hidden
}

.screenshots-slider .slide.active {
    display: block
}

.screenshots-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

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

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

.slider-dot.active {
    background: var(--c3);
    width: 20px;
    border-radius: 4px
}

.slider-arrow {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--cw);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--tr);
    font-size: .9rem
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, .2)
}

.content-review {
    color: var(--cw)
}

.content-review h2, .content-review h3, .content-review h4 {
    color: var(--cw);
    margin: 1.2em 0 .6em;
    font-weight: 800;
    line-height: 1.3
}

.content-review h2 {
    font-size: 1.5rem
}

.content-review h3 {
    font-size: 1.25rem
}

.content-review h4 {
    font-size: 1.1rem
}

.content-review p {
    margin-bottom: 1em;
    color: rgba(255, 255, 255, .9);
    line-height: 1.8
}

.content-review ul, .content-review ol {
    margin: 0 0 1em 1.5em;
    color: rgba(255, 255, 255, .9)
}

.content-review li {
    margin-bottom: .4em;
    line-height: 1.7
}

.content-review table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
    overflow-x: auto;
    display: block
}

.content-review table th {
    background: rgba(0, 0, 0, .3);
    padding: 10px 14px;
    text-align: left;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, .1)
}

.content-review table td {
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, .08);
    vertical-align: top
}

.content-review blockquote {
    background: rgba(7, 86, 208, .15);
    border-left: 3px solid var(--c3);
    padding: 14px 18px;
    margin: 1em 0;
    border-radius: 0 var(--rad) var(--rad) 0;
    font-style: italic;
    color: rgba(255, 255, 255, .85)
}

.content-review a {
    color: var(--c2)
}

.content-review a:hover {
    color: var(--c3)
}

.content-review strong {
    color: var(--cw);
    font-weight: 700
}

.content-review em {
    color: rgba(255, 255, 255, .85)
}

.content-review img {
    border-radius: var(--rad);
    margin: 1em 0;
    max-width: 100%
}

.author-card {
    background: rgba(0, 0, 0, .25);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--rad);
    padding: 18px;
    margin-top: 24px;
    display: grid;
    grid-template-columns:64px 1fr;
    gap: 16px;
    align-items: start
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c3), var(--c4));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--cw);
    flex-shrink: 0
}

.author-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--cw);
    margin-bottom: 3px
}

.author-title {
    font-size: .8rem;
    color: #4dd8d5;
    margin-bottom: 8px
}

.author-bio {
    font-size: .82rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.6
}

.author-links {
    display: flex;
    gap: 10px;
    margin-top: 10px
}

.author-links a {
    color: rgba(255, 255, 255, .6);
    font-size: .8rem;
    transition: color var(--tr)
}

.author-links a:hover {
    color: #4dd8d5
}

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

.faq-item {
    background: rgba(0, 0, 0, .2);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--rad);
    overflow: hidden
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    color: var(--cw);
    font-family: var(--fw);
    font-size: .95rem;
    font-weight: 700;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: background var(--tr);
    gap: 10px
}

.faq-q:hover {
    background: rgba(255, 255, 255, .06)
}

.faq-q svg {
    flex-shrink: 0;
    transition: transform var(--tr);
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, .5)
}

.faq-item.open .faq-q svg {
    transform: rotate(180deg)
}

.faq-a {
    display: none;
    padding: 0 18px 16px;
    color: rgba(255, 255, 255, .82);
    font-size: .9rem;
    line-height: 1.7
}

.faq-item.open .faq-a {
    display: block
}

.similar-games-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 16px
}

.game-card {
    background: rgba(5, 26, 40, .6);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--rad);
    overflow: hidden;
    transition: transform var(--tr), box-shadow var(--tr)
}

.game-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .35)
}

.game-card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--c5), var(--c4))
}

.game-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform var(--tr)
}

.game-card:hover .game-card-img img {
    transform: scale(1.05)
}

.game-card-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--c2);
    color: var(--cw);
    font-size: .7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.game-card-body {
    padding: 14px
}

.game-card-name {
    font-size: .95rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--cw)
}

.game-card-prov {
    font-size: .78rem;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 8px
}

.game-card-desc {
    font-size: .82rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.game-card-btns {
    display: flex;
    gap: 8px
}

.game-card-btns .btn {
    flex: 1;
    font-size: .78rem;
    padding: 7px 10px
}

.site-footer {
    background: var(--c1)
}

.footer-top {
    padding: 40px 0 24px;
    display: grid;
    grid-template-columns:200px 1fr 1fr 180px;
    gap: 32px
}

.footer-logo img {
    height: 44px;
    width: auto;
    margin-bottom: 12px
}

.footer-logo-text {
    font-size: .82rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.6
}

.footer-col-title {
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 14px
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.footer-nav a {
    color: rgba(255, 255, 255, .72);
    font-size: .88rem;
    transition: color var(--tr);
    display: flex;
    align-items: center;
    gap: 5px
}

.footer-nav a:hover {
    color: var(--cw)
}

.footer-trust {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.trust-badge {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: .75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .7);
    display: flex;
    align-items: center;
    gap: 4px
}

.footer-mid {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.footer-mid-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px
}

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

.payment-logo {
    background: rgba(255, 255, 255, .1);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: .78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .8)
}

.social-links {
    display: flex;
    gap: 8px
}

.social-link {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    transition: all var(--tr)
}

.social-link:hover {
    background: var(--c3);
    color: var(--cw);
    border-color: var(--c3)
}

.social-link svg {
    width: 16px;
    height: 16px
}

.footer-bottom {
    padding: 20px 0
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px
}

.footer-flags {
    display: flex;
    align-items: center;
    gap: 8px
}

.au-flag {
    font-size: 1.3rem
}

.footer-license {
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    text-align: right;
    max-width: 460px;
    line-height: 1.5
}

.copyright {
    font-size: .82rem;
    color: rgba(255, 255, 255, .5)
}

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

.provider-info img {
    height: 24px;
    filter: brightness(1.2)
}

.provider-info span {
    font-size: .78rem;
    color: rgba(255, 255, 255, .5)
}

.floating-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 300px;
    transition: all var(--tr)
}

.widget-header {
    background: var(--c1);
    border-radius: var(--rad) var(--rad) 0 0;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, .15);
    border-bottom: none
}

.widget-header .wtitle {
    font-size: .88rem;
    font-weight: 800;
    color: var(--cw);
    display: flex;
    align-items: center;
    gap: 6px
}

.widget-header .wtitle::before {
    content: '🏆';
    font-size: .9rem
}

.widget-toggle {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .6);
    cursor: pointer;
    padding: 2px;
    display: flex;
    transition: transform var(--tr)
}

.widget-toggle svg {
    width: 16px;
    height: 16px
}

.widget-body {
    background: var(--c5);
    border: 1px solid rgba(255, 255, 255, .12);
    border-top: none;
    border-radius: 0 0 var(--rad) var(--rad);
    overflow: hidden;
    transition: max-height .35s ease, opacity .35s ease;
    max-height: 600px;
    opacity: 1
}

.widget-body.collapsed {
    max-height: 0;
    opacity: 0
}

.widget-casino {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: background var(--tr)
}

.widget-casino:last-child {
    border-bottom: none
}

.widget-casino:hover {
    background: rgba(255, 255, 255, .06)
}

.widget-rank {
    font-size: 1.2rem;
    font-weight: 900;
    width: 28px;
    text-align: center;
    flex-shrink: 0
}

.widget-info {
    flex: 1;
    min-width: 0
}

.widget-name {
    font-size: .88rem;
    font-weight: 700;
    color: var(--cw);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.widget-bonus {
    font-size: .75rem;
    color: #4dd8d5
}

.widget-btn {
    background: var(--c3);
    color: var(--cw);
    padding: 6px 12px;
    border-radius: var(--rad2);
    font-size: .78rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-family: var(--fw);
    white-space: nowrap;
    text-decoration: none;
    transition: all var(--tr);
    display: inline-block
}

.widget-btn:hover {
    background: #0648b5;
    color: var(--cw)
}

.widget-collapsed-btn {
    display: none
}

.widget.collapsed .widget-collapsed-btn {
    display: flex
}

.vol-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 152, 0, .2);
    border: 1px solid rgba(255, 152, 0, .4);
    color: #ffa726;
    border-radius: 4px;
    font-size: .78rem;
    font-weight: 700;
    padding: 2px 8px
}

.rt-badge {
    background: rgba(76, 175, 80, .2);
    border: 1px solid rgba(76, 175, 80, .4);
    color: #66bb6a
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns:1fr
    }

    .hero h1 {
        font-size: 1.9rem
    }

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

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

    .jackpot-card {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: 16px;
        text-align: left;
        align-items: start
    }

    .jackpot-amount {
        font-size: 1.6rem
    }

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

    .phone-frame {
        max-width: 200px
    }

    .screenshots-grid {
        display: none
    }

    .screenshots-slider {
        display: block
    }

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

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

    .floating-widget {
        width: 260px
    }
}

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

    .header-nav {
        display: none
    }

    .burger {
        display: flex
    }

    .hero-stats {
        grid-template-columns:repeat(3, 1fr);
        gap: 8px
    }

    .hero-stat .val {
        font-size: 1.1rem
    }

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

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start
    }

    .footer-license {
        max-width: 100%;
        text-align: left
    }

    .floating-widget {
        width: calc(100vw - 32px);
        bottom: 0;
        right: 0;
        left: 0;
        margin: 0 16px;
        border-radius: var(--rad) var(--rad) 0 0
    }

    .widget-header {
        border-radius: var(--rad) var(--rad) 0 0
    }

    .widget-body {
        border-radius: 0
    }

    .similar-games-grid {
        grid-template-columns:1fr 1fr
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem
    }

    .hero-btns {
        flex-direction: column
    }

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

    .jackpot-card {
        grid-template-columns:1fr
    }

    .app-download-btns {
        flex-direction: column
    }

    .similar-games-grid {
        grid-template-columns:1fr
    }

    .header-actions .btn-play, .header-actions .btn-bonus {
        padding: 7px 12px;
        font-size: .8rem
    }
}

.sk-pulse {
    animation: sk-p 1.2s infinite ease-in-out
}

@keyframes sk-p {
    0%, 100% {
        opacity: .5;
        transform: scale(.9)
    }
    50% {
        opacity: 1;
        transform: scale(1)
    }
}

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

.fade-in.visible {
    opacity: 1;
    transform: none
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .5s ease, transform .5s ease
}

.slide-up.visible {
    opacity: 1;
    transform: none
}

.z9b1a4 {
    width: 1px;
    height: 1px;
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap
}

.wp-block-placeholder {
    display: none
}

.entry-content-asset {
    display: none
}

@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .similar-games-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    html {
        width: 100%;
        font-size: 16px;
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    body {
        width: 100%;
        min-width: 0;
    }

    body.menu-open {
        overflow: hidden;
    }

    .wrapper,
    .site-header,
    .main-content,
    .hero,
    .site-footer {
        width: 100%;
        min-width: 0;
    }

    .container {
        width: 100%;
        max-width: none;
        padding-left: 16px;
        padding-right: 16px;
        margin: 0;
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 10000;
    }

    .header-inner {
        width: 100%;
        max-width: none;
        min-height: 62px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 9px 16px;
    }

    .header-logo {
        min-width: 0;
        flex: 1;
    }

    .header-logo img {
        height: 40px;
        width: auto;
        max-width: 110px;
    }

    .header-logo .logo-text {
        font-size: .95rem;
        min-width: 0;
    }

    .header-logo .logo-text span {
        font-size: .62rem;
    }

    .header-nav {
        display: none;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-left: auto;
    }


    .lang-btn {
        min-height: 42px;
        padding: 7px 10px;
    }

    .burger {
        display: flex;
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        align-items: center;
        justify-content: center;
        padding: 10px;
        gap: 5px;
        background: rgba(255, 255, 255, .08);
        border-radius: 8px;
    }

    .burger span {
        width: 24px;
        height: 2px;
    }

    .mobile-nav {
        display: flex;
        position: fixed;
        top: 62px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: calc(100dvh - 62px);
        padding: 14px 16px 24px;
        flex-direction: column;
        gap: 6px;
        overflow-y: auto;
        overscroll-behavior: contain;
        background: var(--c5);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    }

    .mobile-nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-nav > a {
        width: 100%;
        min-height: 50px;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 14px;
        color: rgba(255, 255, 255, .9);
        font-size: .95rem;
        font-weight: 700;
        border: 1px solid rgba(255, 255, 255, .06);
        background: rgba(255, 255, 255, .035);
        border-radius: 9px;
    }

    .mobile-nav > a svg {
        width: 20px;
        height: 20px;
        flex: 0 0 20px;
        color: #4dd8d5;
    }

    .mobile-nav-btns {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
        margin-top: 10px;
        padding-top: 14px;
    }

    .mobile-nav-btns .btn {
        width: 100%;
        min-height: 48px;
    }

    .hero {
        padding: 26px 0 22px;
    }

    .hero::before {
        background-position: center;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .hero-content,
    .hero-game {
        width: 100%;
        min-width: 0;
    }

    .hero-badge {
        max-width: 100%;
        margin-bottom: 12px;
        padding: 5px 11px;
        font-size: .7rem;
        line-height: 1.35;
        letter-spacing: .7px;
    }

    .hero h1 {
        margin-bottom: 12px;
        font-size: clamp(1.8rem, 8vw, 2.25rem);
        line-height: 1.08;
        letter-spacing: -.025em;
    }

    .hero h1 span {
        display: inline;
    }

    .hero-desc {
        margin-bottom: 18px;
        font-size: .96rem;
        line-height: 1.55;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
        margin-bottom: 18px;
    }

    .hero-stat {
        min-width: 0;
        padding: 10px 5px;
    }

    .hero-stat .val {
        font-size: 1.12rem;
        line-height: 1.2;
    }

    .hero-stat .lbl {
        margin-top: 4px;
        font-size: .63rem;
        line-height: 1.3;
        letter-spacing: .2px;
    }

    .hero-btns {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        min-height: 48px;
        padding: 12px 16px;
        font-size: .93rem;
    }

    .main-content {
        padding: 22px 0;
    }

    .section {
        width: 100%;
        margin-bottom: 26px;
        scroll-margin-top: 78px;
    }

    .section-title {
        gap: 9px;
        margin-bottom: 14px;
        font-size: clamp(1.25rem, 6vw, 1.5rem);
        line-height: 1.2;
    }

    .section-title::before {
        width: 4px;
        height: 22px;
    }

    .block {
        width: 100%;
        min-width: 0;
        padding: 14px;
        border-radius: 10px;
    }

    .content-grid {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .content-grid > div {
        width: 100%;
        min-width: 0;
    }

    .game-frame-wrap {
        width: 100%;
        min-width: 0;
        border-radius: 9px;
    }

    .game-frame-header {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 3px 8px;
        padding: 9px 10px;
    }

    .game-frame-header .provider {
        grid-column: 1;
        grid-row: 1;
        min-width: 0;
        font-size: .68rem;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .game-frame-header .game-name {
        grid-column: 1;
        grid-row: 2;
        font-size: .86rem;
    }

    .game-frame-header .btn {
        grid-column: 2;
        grid-row: 1 / span 2;
        align-self: center;
        padding: 7px 9px;
        font-size: .7rem;
    }

    .game-frame-wrap iframe {
        width: 100%;
        height: min(128vw, 520px) !important;
        min-height: 420px;
        border: 0;
    }

    .game-frame-footer {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 10px;
    }

    .game-frame-footer .btn {
        width: 100%;
        min-height: 44px;
        padding: 10px;
        font-size: .8rem;
    }

    .game-details-table {
        display: block;
        width: 100%;
    }

    .game-details-table tbody {
        display: block;
        width: 100%;
    }

    .game-details-table tr {
        display: grid;
        grid-template-columns: 1fr;
        gap: 5px;
        width: 100%;
        padding: 10px 0;
    }

    .game-details-table td {
        width: 100%;
        min-width: 0;
        padding: 0;
    }

    .game-details-table td:first-child {
        width: 100%;
        display: flex;
        gap: 7px;
        font-size: .75rem;
    }

    .game-details-table td:last-child {
        width: 100%;
        padding-left: 22px;
        font-size: .91rem;
        overflow-wrap: anywhere;
    }

    .rtp-bar {
        width: 100%;
    }

    .jackpots-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .jackpot-card {
        display: block;
        width: 100%;
        padding: 16px;
        text-align: left;
    }

    .jackpot-label {
        font-size: .72rem;
        letter-spacing: 1.2px;
    }

    .jackpot-amount {
        margin: 4px 0;
        font-size: 1.65rem;
    }

    .jackpot-ticker {
        margin-bottom: 12px;
    }

    .jackpot-winners {
        width: 100%;
        padding: 10px;
    }

    .jackpot-winner-row {
        gap: 10px;
        font-size: .82rem;
    }

    .jackpot-winner-row .nick {
        min-width: 0;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .app-grid {
        display: flex;
        flex-direction: column;
        gap: 22px;
        width: 100%;
    }

    .app-grid > div {
        width: 100%;
        min-width: 0;
    }

    .phone-frame {
        width: min(180px, 55vw);
        max-width: 100%;
        margin: 0 auto;
    }

    .app-info-table {
        display: block;
        width: 100%;
    }

    .app-info-table tbody {
        display: block;
        width: 100%;
    }

    .app-info-table tr {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3px;
        width: 100%;
        padding: 9px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .app-info-table td {
        display: block;
        width: 100%;
        padding: 0;
        border: 0;
        overflow-wrap: anywhere;
    }

    .app-info-table td:first-child {
        width: 100%;
        font-size: .74rem;
        color: rgba(255, 255, 255, .55);
    }

    .app-info-table td:last-child {
        font-size: .9rem;
        line-height: 1.45;
    }

    .app-download-btns {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
        width: 100%;
    }

    .store-btn {
        width: 100%;
        min-height: 54px;
        padding: 10px 14px;
    }

    .winners-table-wrap {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .winners-table {
        width: max-content;
        min-width: 620px;
        font-size: .82rem;
    }

    .winners-table th,
    .winners-table td {
        padding: 9px 11px;
        white-space: nowrap;
    }

    .screenshots-grid {
        display: none;
    }

    .screenshots-slider {
        display: block;
        width: 100%;
    }

    .screenshots-slider .slide {
        width: 100%;
        aspect-ratio: 16 / 10;
    }

    .slider-nav {
        margin-top: 14px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    #how-to-play .block > div {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    #how-to-play .block > div > div {
        width: 100%;
        padding: 14px !important;
        text-align: left !important;
        background: rgba(255, 255, 255, .035);
        border: 1px solid rgba(255, 255, 255, .06);
        border-radius: 8px;
    }

    #how-to-play .block > div > div > div:first-child {
        margin-bottom: 5px !important;
        font-size: 2rem !important;
    }

    #how-to-play .block h3 {
        margin-bottom: 5px !important;
    }

    .content-review {
        width: 100%;
        min-width: 0;
        font-size: .96rem;
        overflow-wrap: anywhere;
    }

    .content-review p {
        font-size: .96rem;
        line-height: 1.65;
    }

    .content-review h2 {
        font-size: 1.35rem;
    }

    .content-review h3 {
        font-size: 1.18rem;
    }

    .content-review h4 {
        font-size: 1.05rem;
    }

    .content-review ul,
    .content-review ol {
        margin-left: 1.2em;
    }

    .content-review table {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .content-review blockquote {
        padding: 12px 14px;
    }

    .author-card {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        padding: 14px;
    }

    .author-avatar {
        width: 54px;
        height: 54px;
        font-size: 1.2rem;
    }

    .author-title {
        font-size: .76rem;
        line-height: 1.5;
    }

    .author-bio {
        font-size: .86rem;
        line-height: 1.6;
    }

    .author-links {
        display: flex;
        flex-wrap: wrap;
        gap: 7px 12px;
    }

    .faq-list {
        gap: 7px;
    }

    .faq-q {
        min-height: 56px;
        padding: 13px;
        gap: 10px;
        font-size: .92rem;
        line-height: 1.4;
    }

    .faq-q svg {
        width: 18px;
        height: 18px;
    }

    .faq-a {
        padding: 0 13px 14px;
        font-size: .88rem;
        line-height: 1.65;
    }

    .similar-games-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .game-card {
        width: 100%;
        min-width: 0;
    }

    .game-card-img {
        aspect-ratio: 16 / 9;
    }

    .game-card-img img {
        padding: 12px;
    }

    .game-card-body {
        padding: 14px;
    }

    .game-card-name {
        font-size: 1rem;
    }

    .game-card-desc {
        font-size: .87rem;
        -webkit-line-clamp: 3;
    }

    .game-card-btns {
        gap: 8px;
    }

    .game-card-btns .btn {
        min-height: 42px;
    }

    .footer-top {
        display: grid;
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 28px 0 22px;
    }

    .footer-mid {
        padding: 18px 0;
    }

    .footer-mid-inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .payment-logos {
        width: 100%;
        gap: 7px;
    }

    .payment-logo {
        padding: 5px 8px;
        font-size: .72rem;
    }

    .footer-bottom-inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-license {
        width: 100%;
        max-width: none;
        text-align: left;
        font-size: .74rem;
    }

    .floating-widget {
        position: static;
        width: 100%;
        margin: 20px 0 0;
    }

    .widget-header {
        border-radius: 10px 10px 0 0;
        padding: 11px 13px;
    }

    .widget-body {
        border-radius: 0 0 10px 10px;
    }

    .widget-casino {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 8px;
        min-height: 60px;
        padding: 10px;
    }

    .widget-rank {
        width: 24px;
        font-size: 1.05rem;
    }

    .widget-name {
        font-size: .82rem;
    }

    .widget-bonus {
        font-size: .7rem;
        line-height: 1.35;
    }

    .widget-btn {
        min-height: 36px;
        padding: 7px 9px;
        font-size: .73rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .header-inner {
        padding-left: 12px;
        padding-right: 12px;
    }

    .header-logo .logo-text span {
        display: none;
    }

    .lang-btn {
        padding: 7px 8px;
    }

    .hero {
        padding-top: 22px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-desc {
        font-size: .93rem;
    }

    .hero-stats {
        gap: 5px;
    }

    .hero-stat {
        padding: 9px 3px;
    }

    .hero-stat .val {
        font-size: 1rem;
    }

    .hero-stat .lbl {
        font-size: .57rem;
    }

    .block {
        padding: 12px;
    }

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

    .game-frame-wrap iframe {
        height: 125vw !important;
        min-height: 390px;
        max-height: 480px;
    }

    .game-frame-footer {
        grid-template-columns: 1fr;
    }

    .phone-frame {
        width: min(170px, 56vw);
    }

    .widget-casino {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .widget-btn {
        grid-column: 2;
        width: 100%;
        margin-top: 4px;
        text-align: center;
    }
}

@media (max-width: 360px) {
    .header-logo img {
        max-width: 90px;
        height: 36px;
    }

    .header-logo .logo-text {
        font-size: .82rem;
    }

    .lang-picker {
        display: none;
    }

    .hero h1 {
        font-size: 1.55rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-stat {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 52px;
        padding: 8px 12px;
        text-align: left;
    }

    .hero-stat .val {
        font-size: 1.15rem;
    }

    .hero-stat .lbl {
        font-size: .65rem;
    }

    .game-frame-wrap iframe {
        min-height: 360px;
    }
}

.site-header {
    background: var(--c1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10000;
    box-shadow: var(--sh);
}

@media (max-width: 768px) {
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 10000;
    }

    body {
        padding-top: 62px;
    }

    .mobile-nav {
        top: 62px;
        height: calc(100dvh - 62px);
    }

    .section {
        scroll-margin-top: 78px;
    }
}