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

:root {
    --c-bg: #0C0C10;
    --c-bg-2: #13131a;
    --c-bg-3: #1a1a24;
    --c-hdr: #1C1C24;
    --c-pri: #D32982;
    --c-pri-h: #b8206e;
    --c-pri-a: #f03095;
    --c-sec: #434450;
    --c-sec-h: #52566a;
    --c-text: #e8e8f0;
    --c-text-muted: #9090a8;
    --c-border: #2a2a38;
    --c-win: #f7c948;
    --c-green: #22c55e;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, .45);
    --shadow-btn: 0 2px 12px rgba(211, 41, 130, .35);
    --trans: 0.2s ease;
    --font-main: 'Inter', system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
    background: var(--c-bg);
    color: var(--c-text);
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
}

body {
    background: var(--c-bg);
    overflow-x: hidden;
}

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

a {
    color: var(--c-pri);
    text-decoration: none;
    transition: color var(--trans);
}

a:hover {
    color: var(--c-pri-a);
}

ul, ol {
    list-style: none;
}

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

.pg-root {
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}

.btn:active {
    transform: scale(.97);
}

.btn--pri {
    background: var(--c-pri);
    color: #fff;
    box-shadow: var(--shadow-btn);
}

.btn--pri:hover {
    background: var(--c-pri-h);
    color: #fff;
    box-shadow: 0 4px 20px rgba(211, 41, 130, .5);
}

.btn--sec {
    background: var(--c-sec);
    color: #e8e8f0;
}

.btn--sec:hover {
    background: var(--c-sec-h);
    color: #fff;
}

.btn--demo {
    background: rgba(255, 255, 255, .15);
    color: #fff;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, .2);
}

.btn--demo:hover {
    background: rgba(255, 255, 255, .28);
    color: #fff;
}

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

.btn--md {
    padding: 11px 24px;
    font-size: .9rem;
}

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

.pg-header {
    background: var(--c-hdr);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--c-border);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .4);
}

.hdr-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    min-height: 64px;
}

.hdr-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.hdr-nav-wrap {
    flex: 1;
}

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

.hdr-nav-link {
    color: var(--c-text-muted);
    font-size: .9rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: color var(--trans), background var(--trans);
}

.hdr-nav-link:hover {
    color: var(--c-text);
    background: rgba(255, 255, 255, .06);
}

.hdr-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.hdr-online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--c-text-muted);
    margin-right: 4px;
}

.hdr-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-green);
    box-shadow: 0 0 6px var(--c-green);
    animation: pulse-dot 2s infinite;
}

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

.hdr-burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.hdr-burger span {
    display: block;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: transform var(--trans), opacity var(--trans);
}

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

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

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

.pg-hero-zone {
    position: relative;
}

.hero-slider-wrap {
    position: relative;
    overflow: hidden;
    max-height: 540px;
}

.hero-slides {
    display: flex;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.hero-slide {
    position: relative;
    min-width: 100%;
    flex-shrink: 0;
}

.hero-bg-img {
    width: 100%;
    max-height: 540px;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 12, 16, .92) 35%, rgba(12, 12, 16, .4) 80%, transparent 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 60px;
    max-width: 640px;
}

.hero-eyebrow {
    font-size: .82rem;
    font-weight: 600;
    color: var(--c-pri);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
}

.hero-title span {
    color: var(--c-pri);
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(232, 232, 240, .8);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}

.hero-cta {
    font-size: 1.05rem;
}

.hero-controls {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    border: none;
    cursor: pointer;
    transition: background var(--trans), transform var(--trans);
}

.hero-dot.active {
    background: var(--c-pri);
    transform: scale(1.25);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(28, 28, 36, .7);
    border: 1px solid var(--c-border);
    color: var(--c-text);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    cursor: pointer;
    transition: background var(--trans);
}

.hero-arrow:hover {
    background: var(--c-pri);
}

.hero-prev {
    left: 16px;
}

.hero-next {
    right: 16px;
}

.pg-main {
    padding: 48px 0 80px;
}

.pg-main--info {
    padding: 32px 0 64px;
}

.sec-block {
    background: var(--c-bg-2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-card);
}

.sec-head {
    text-align: center;
    margin-bottom: 36px;
}

.sec-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.sec-sub {
    color: var(--c-text-muted);
    font-size: .95rem;
}

.sec-cta-row {
    text-align: center;
    margin-top: 28px;
}

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

.winners-table {
    min-width: 500px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.winners-table thead tr {
    background: var(--c-bg-3);
}

.winners-table th {
    padding: 12px 16px;
    text-align: left;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--c-text-muted);
    border-bottom: 1px solid var(--c-border);
}

.winners-table tbody tr {
    border-bottom: 1px solid var(--c-border);
    transition: background var(--trans);
}

.winners-table tbody tr:hover {
    background: var(--c-bg-3);
}

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

.winners-table td {
    padding: 11px 16px;
    font-size: .9rem;
    color: var(--c-text);
}

.winners-table tbody tr:nth-child(1) td:first-child {
    color: var(--c-win);
    font-weight: 700;
}

.winners-table tbody tr:nth-child(2) td:first-child {
    color: #c0c0c0;
    font-weight: 700;
}

.winners-table tbody tr:nth-child(3) td:first-child {
    color: #cd7f32;
    font-weight: 700;
}

.win-amt {
    color: var(--c-green);
    font-weight: 700;
}

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

.app-table {
    min-width: auto;
}

.app-table th {
    padding: 11px 14px;
    text-align: left;
    font-size: .88rem;
    font-weight: 600;
    color: var(--c-text-muted);
    background: var(--c-bg-3);
    border-bottom: 1px solid var(--c-border);
    border-right: 1px solid var(--c-border);
    width: 46%;
}

.app-table td {
    padding: 11px 14px;
    font-size: .88rem;
    color: var(--c-text);
    border-bottom: 1px solid var(--c-border);
}

.app-table tr:last-child th, .app-table tr:last-child td {
    border-bottom: none;
}

.app-dl-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.app-dl-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.app-dl-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--c-bg-3);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    color: var(--c-text);
    transition: border-color var(--trans), background var(--trans);
}

.app-dl-btn:hover {
    border-color: var(--c-pri);
    background: rgba(211, 41, 130, .08);
    color: var(--c-text);
}

.app-dl-btn div {
    display: flex;
    flex-direction: column;
}

.app-dl-btn small {
    font-size: .72rem;
    color: var(--c-text-muted);
}

.app-dl-btn strong {
    font-size: .95rem;
    color: #fff;
}

.app-note {
    font-size: .78rem;
    color: var(--c-text-muted);
}

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

.game-card {
    background: var(--c-bg-3);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--trans), box-shadow var(--trans);
}

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

.game-card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.game-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

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

.game-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 12, 16, .7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--trans);
}

.game-card:hover .game-card-overlay {
    opacity: 1;
}

.game-card-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.game-card-name {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
}

.game-card-prov {
    font-size: .78rem;
    color: var(--c-text-muted);
}

.game-card-cta {
    align-self: flex-start;
    margin-top: 4px;
}

.wheel-wrap {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 40px;
    align-items: center;
}

.wheel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 32px rgba(211, 41, 130, .2);
    display: block;
}

.wheel-pointer {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--c-pri);
    filter: drop-shadow(0 2px 4px rgba(211, 41, 130, .5));
}

.wheel-info {
    color: var(--c-text-muted);
    font-size: .92rem;
    line-height: 1.65;
    margin-bottom: 24px;
}

.wheel-result {
    margin-top: 24px;
}

.wheel-win {
    text-align: center;
    padding: 24px;
    background: rgba(34, 197, 94, .08);
    border: 1px solid rgba(34, 197, 94, .25);
    border-radius: var(--radius-md);
}

.wheel-win-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--c-green);
    margin-bottom: 8px;
}

.wheel-win-code {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: .1em;
    background: var(--c-bg-3);
    border: 2px dashed var(--c-pri);
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    margin: 8px 0;
    display: inline-block;
}

.wheel-win-desc {
    color: var(--c-text-muted);
    font-size: .88rem;
    margin-bottom: 16px;
}

.wheel-lose {
    text-align: center;
    padding: 24px;
    background: rgba(67, 68, 80, .1);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
}

.wheel-lose-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 8px;
}

.wheel-lose-desc {
    color: var(--c-text-muted);
    font-size: .88rem;
    margin-bottom: 16px;
}

.content-review-wrap h1 {
    font-size: clamp(1.4rem, 2.8vw, 1.9rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 28px;
    line-height: 1.25;
}

.review-content-body h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px;
}

.review-content-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-text);
    margin: 20px 0 10px;
}

.review-content-body h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-text);
    margin: 16px 0 8px;
}

.review-content-body p {
    color: var(--c-text);
    line-height: 1.75;
    margin-bottom: 16px;
}

.review-content-body a {
    color: var(--c-pri);
    text-decoration: underline;
}

.review-content-body a:hover {
    color: var(--c-pri-a);
}

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

.review-content-body ul {
    list-style: disc;
}

.review-content-body ol {
    list-style: decimal;
}

.review-content-body li {
    color: var(--c-text);
    line-height: 1.7;
    margin-bottom: 6px;
}

.review-content-body strong {
    color: #fff;
    font-weight: 700;
}

.review-content-body em {
    color: var(--c-text-muted);
}

.review-content-body blockquote {
    border-left: 3px solid var(--c-pri);
    padding: 12px 20px;
    background: var(--c-bg-3);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
    color: var(--c-text-muted);
    font-style: italic;
}

.review-content-body table {
    margin: 20px 0;
    min-width: auto;
}

.review-content-body table th {
    padding: 10px 14px;
    text-align: left;
    background: var(--c-bg-3);
    color: var(--c-text-muted);
    font-size: .85rem;
    border: 1px solid var(--c-border);
}

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

.review-content-body img {
    border-radius: var(--radius-md);
    margin: 16px 0;
}

.review-content-body hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 24px 0;
}

.info-block h1 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 28px;
}

.info-content-body h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 24px 0 10px;
}

.info-content-body h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--c-text);
    margin: 18px 0 8px;
}

.info-content-body p {
    color: var(--c-text);
    line-height: 1.75;
    margin-bottom: 14px;
}

.info-content-body a {
    color: var(--c-pri);
    text-decoration: underline;
}

.info-content-body ul, .info-content-body ol {
    margin: 10px 0 14px 20px;
}

.info-content-body ul {
    list-style: disc;
}

.info-content-body ol {
    list-style: decimal;
}

.info-content-body li {
    color: var(--c-text);
    line-height: 1.7;
    margin-bottom: 5px;
}

.info-content-body table {
    margin: 16px 0;
    overflow-x: auto;
    display: block;
}

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

.info-content-body table th {
    background: var(--c-bg-3);
    color: var(--c-text-muted);
    font-size: .85rem;
}

.info-content-body table td {
    color: var(--c-text);
}

.author-block {
    background: var(--c-bg-3);
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border);
    padding: 28px;
}

.author-inner {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.author-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--c-border);
    flex-shrink: 0;
}

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

.author-role {
    font-size: .8rem;
    color: var(--c-pri);
    font-weight: 600;
    margin-bottom: 10px;
}

.author-bio {
    font-size: .88rem;
    color: var(--c-text-muted);
    line-height: 1.65;
    margin-bottom: 12px;
}

.author-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.author-social-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .82rem;
    font-weight: 500;
    color: var(--c-text-muted);
    padding: 5px 12px;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    transition: border-color var(--trans), color var(--trans);
}

.author-social-link:hover {
    border-color: var(--c-pri);
    color: var(--c-pri);
}

.author-block--compact .author-avatar {
    width: 72px;
    height: 72px;
}

.author-block--compact .author-name {
    font-size: .95rem;
}

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

.ftr-top {
    display: grid;
    grid-template-columns:2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--c-border);
}

.ftr-logo img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.ftr-tagline {
    font-size: .82rem;
    color: var(--c-text-muted);
    margin-top: 10px;
}

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

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

.ftr-nav-col a {
    font-size: .88rem;
    color: var(--c-text-muted);
    transition: color var(--trans);
}

.ftr-nav-col a:hover {
    color: var(--c-text);
}

.ftr-payments, .ftr-providers {
    margin-bottom: 28px;
}

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

.ftr-badge {
    background: var(--c-bg-3);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: .75rem;
    color: var(--c-text-muted);
}

.ftr-legal {
    border-top: 1px solid var(--c-border);
    padding-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    justify-content: space-between;
}

.ftr-legal-text {
    font-size: .76rem;
    color: var(--c-text-muted);
    line-height: 1.7;
    max-width: 900px;
}

.ftr-legal-text a {
    color: var(--c-text-muted);
    text-decoration: underline;
}

.ftr-legal-text a:hover {
    color: var(--c-text);
}

.ftr-age-badge {
    background: var(--c-bg-3);
    border: 2px solid var(--c-border);
    color: var(--c-text-muted);
    font-size: .9rem;
    font-weight: 800;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.widget-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--c-hdr);
    border-top: 2px solid var(--c-pri);
    padding: 12px 20px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5);
}

.widget-sticky[hidden] {
    display: none;
}

.widget-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
}

.widget-text {
    display: flex;
    align-items: center;
    gap: 14px;
}

.widget-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--c-pri);
    background: rgba(211, 41, 130, .12);
    padding: 3px 8px;
    border-radius: var(--radius-sm);
}

.widget-title {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
}

.widget-btn {
    background: var(--c-pri);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    transition: background var(--trans);
    text-decoration: none;
    white-space: nowrap;
}

.widget-btn:hover {
    background: var(--c-pri-h);
    color: #fff;
}

.widget-close {
    background: transparent;
    border: none;
    color: var(--c-text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color var(--trans);
}

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

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(0, 0, 0, .85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay[hidden] {
    display: none;
}

.modal-box {
    background: var(--c-hdr);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 860px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--c-border);
}

.modal-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--c-text-muted);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    transition: color var(--trans);
}

.modal-close:hover {
    color: var(--c-text);
}

.modal-body {
    flex: 1;
    overflow: hidden;
}

.modal-iframe {
    display: block;
    width: 100%;
    height: 500px;
    background: var(--c-bg);
}

.modal-foot {
    padding: 16px 20px;
    border-top: 1px solid var(--c-border);
    text-align: center;
}

.breadcrumbs {
    margin-bottom: 24px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--c-text-muted);
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    opacity: .4;
}

.breadcrumb-list a {
    color: var(--c-text-muted);
    transition: color var(--trans);
}

.breadcrumb-list a:hover {
    color: var(--c-pri);
}

.breadcrumb-list [aria-current] {
    color: var(--c-text);
}

.x7f2a {
}

.b3f9e {
}

.x1a2b {
}

.a8c1d {
}

.f5a9c {
}

.d2e8f {
}

.c4d7e {
}

.e1b6a {
}

.g7h2i {
}

.k9m3n {
}

.x5d8c {
}

.x9c3b {
}

.m2p7q {
}

.wp-block-placeholder {
    display: none !important;
}

.elementor-hidden {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.wpcf7-hidden {
    display: none;
}

@media (max-width: 900px) {
    .hdr-nav-wrap {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--c-hdr);
        padding: 20px;
        border-bottom: 1px solid var(--c-border);
        transform: translateY(-120%);
        transition: transform .3s ease;
        z-index: 99;
        box-shadow: 0 8px 24px rgba(0, 0, 0, .5);
    }

    .hdr-nav-wrap.active {
        transform: translateY(0);
    }

    .hdr-nav-list {
        flex-direction: column;
        gap: 4px;
    }

    .hdr-nav-link {
        display: block;
        padding: 10px 16px;
        font-size: .95rem;
    }

    .hdr-burger {
        display: flex;
    }

    .hero-content {
        padding: 24px 28px;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(1.4rem, 5vw, 2.2rem);
    }

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

    .games-grid {
        grid-template-columns:repeat(2, 1fr);
        gap: 14px;
    }

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

    .wheel-canvas {
        width: 280px !important;
        height: 280px !important;
    }

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

    .ftr-brand {
        grid-column: 1/-1;
    }

    .sec-block {
        padding: 28px 20px;
    }
}

@media (max-width: 600px) {
    .games-grid {
        grid-template-columns:1fr;
        gap: 12px;
    }

    .hdr-inner {
        flex-wrap: nowrap;
    }

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

    .ftr-brand {
        grid-column: unset;
    }

    .widget-text .widget-label {
        display: none;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-subtitle {
        display: none;
    }

    .modal-iframe {
        height: 360px;
    }

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

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

    .app-dl-btns {
        flex-direction: column;
    }
}

@media (max-width: 380px) {
    .hdr-actions .btn--sm {
        padding: 7px 10px;
        font-size: .75rem;
    }
}

@media (max-width: 900px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        font-size: 15px;
    }

    .pg-wrapper,
    .pg-container,
    .pg-main,
    .sec-block,
    .pg-hero-zone {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .pg-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .pg-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 99999;
    }

    body {
        padding-top: 64px;
    }

    .hdr-inner {
        min-height: 64px;
        padding: 10px 0;
        gap: 10px;
    }

    .hdr-logo img {
        height: 34px;
    }

    .hdr-actions {
        margin-left: auto;
        gap: 6px;
    }

    .hdr-online-badge {
        display: none;
    }

    .hdr-actions .btn {
        width: auto;
        min-height: 34px;
        padding: 8px 10px;
        font-size: .72rem;
    }

    .hdr-burger {
        display: flex;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: var(--c-bg-3);
        border: 1px solid var(--c-border);
    }

    .hdr-nav-wrap {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 99998;
        display: block;
        padding: 14px;
        background: var(--c-hdr);
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform .25s ease;
        border-top: 1px solid var(--c-border);
    }

    .hdr-nav-wrap.active {
        transform: translateX(0);
    }

    .hdr-nav-list {
        display: grid;
        grid-template-columns:1fr;
        gap: 8px;
    }

    .hdr-nav-link {
        display: flex;
        align-items: center;
        min-height: 52px;
        padding: 0 16px;
        border-radius: 14px;
        background: var(--c-bg-2);
        border: 1px solid var(--c-border);
        color: #fff;
        font-size: .95rem;
        font-weight: 700;
    }

    .btn,
    .btn--sm,
    .btn--md,
    .btn--lg,
    .btn--pri,
    .btn--sec,
    .btn--demo {
        width: 100%;
        min-height: 44px;
        padding: 11px 14px;
        white-space: normal;
        text-align: center;
    }

    .hero-slider-wrap {
        max-height: none;
        min-height: auto;
    }

    .hero-slides {
        width: 100%;
    }

    .hero-slide {
        min-width: 100%;
        height: 390px;
        overflow: hidden;
    }

    .hero-bg-img {
        width: 100%;
        height: 390px;
        max-height: none;
        object-fit: cover;
        object-position: center;
    }

    .hero-overlay {
        background: rgba(12, 12, 16, .78);
    }

    .hero-content {
        position: absolute;
        inset: 0;
        max-width: 100%;
        padding: 36px 42px 70px;
        align-items: center;
        text-align: center;
    }

    .hero-eyebrow {
        font-size: .7rem;
        line-height: 1.35;
    }

    .hero-title {
        font-size: 1.55rem;
        line-height: 1.18;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        display: block;
        max-width: 100%;
        font-size: .88rem;
        line-height: 1.55;
        margin-bottom: 18px;
    }

    .hero-cta {
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-arrow {
        width: 34px;
        height: 34px;
        font-size: 1.2rem;
    }

    .hero-prev {
        left: 8px;
    }

    .hero-next {
        right: 8px;
    }

    .hero-controls {
        bottom: 14px;
    }

    .pg-main {
        padding: 28px 0 58px;
    }

    .sec-block {
        padding: 22px 14px;
        margin-bottom: 20px;
        border-radius: 16px;
    }

    .sec-head {
        margin-bottom: 22px;
    }

    .sec-title {
        font-size: 1.3rem;
        line-height: 1.25;
    }

    .sec-sub {
        font-size: .88rem;
        line-height: 1.55;
    }

    .winners-table-wrap,
    .app-table-wrap {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        border: 1px solid var(--c-border);
        border-radius: 14px;
    }

    .winners-table,
    .app-table {
        width: max-content;
        min-width: 640px;
    }

    .winners-table th,
    .winners-table td,
    .app-table th,
    .app-table td {
        padding: 11px 12px;
        font-size: .8rem;
        white-space: nowrap;
    }

    .winners-table-wrap::-webkit-scrollbar,
    .app-table-wrap::-webkit-scrollbar {
        height: 6px;
    }

    .winners-table-wrap::-webkit-scrollbar-track,
    .app-table-wrap::-webkit-scrollbar-track {
        background: var(--c-bg-2);
    }

    .winners-table-wrap::-webkit-scrollbar-thumb,
    .app-table-wrap::-webkit-scrollbar-thumb {
        background: var(--c-pri);
        border-radius: 999px;
    }

    .app-grid {
        display: grid;
        grid-template-columns:1fr;
        gap: 18px;
    }

    .app-dl-wrap {
        min-width: 0;
    }

    .app-dl-title {
        font-size: 1rem;
        text-align: center;
    }

    .app-dl-btns {
        display: grid;
        grid-template-columns:1fr;
        gap: 10px;
    }

    .app-dl-btn {
        width: 100%;
        justify-content: center;
        padding: 13px 16px;
    }

    .app-note {
        text-align: center;
        line-height: 1.5;
    }

    .games-grid {
        display: flex;
        grid-template-columns:none;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin-right: -14px;
        padding-right: 14px;
        padding-bottom: 10px;
    }

    .game-card {
        flex: 0 0 82%;
        min-width: 82%;
        scroll-snap-align: start;
        border-radius: 16px;
    }

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

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

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

    .game-card-prov {
        font-size: .78rem;
    }

    .game-card-cta {
        width: 100%;
    }

    .games-grid::-webkit-scrollbar {
        height: 6px;
    }

    .games-grid::-webkit-scrollbar-track {
        background: var(--c-bg-2);
    }

    .games-grid::-webkit-scrollbar-thumb {
        background: var(--c-pri);
        border-radius: 999px;
    }

    .wheel-wrap {
        display: grid;
        grid-template-columns:1fr;
        gap: 22px;
        text-align: center;
    }

    .wheel-container {
        min-width: 0;
    }

    .wheel-canvas {
        width: 280px !important;
        height: 280px !important;
        margin: 0 auto;
    }

    .wheel-info {
        font-size: .88rem;
        line-height: 1.6;
    }

    .wheel-result {
        margin-top: 18px;
    }

    .wheel-win,
    .wheel-lose {
        padding: 18px 14px;
    }

    .wheel-win-code {
        max-width: 100%;
        font-size: 1.25rem;
        word-break: break-word;
    }

    .content-review-wrap h1 {
        font-size: 1.45rem;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .review-content-body,
    .info-content-body {
        font-size: .9rem;
        line-height: 1.7;
    }

    .review-content-body h2,
    .info-content-body h2 {
        font-size: 1.22rem;
        line-height: 1.3;
    }

    .review-content-body h3,
    .info-content-body h3 {
        font-size: 1.05rem;
    }

    .review-content-body p,
    .review-content-body li,
    .info-content-body p,
    .info-content-body li {
        font-size: .9rem;
    }

    .review-content-body ul,
    .review-content-body ol,
    .info-content-body ul,
    .info-content-body ol {
        margin-left: 0;
        padding-left: 18px;
    }

    .review-content-body table,
    .info-content-body table {
        display: block;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .review-content-body table th,
    .review-content-body table td,
    .info-content-body table th,
    .info-content-body table td {
        padding: 10px 12px;
        font-size: .8rem;
    }

    .author-block {
        padding: 20px 14px;
    }

    .author-inner {
        display: grid;
        grid-template-columns:1fr;
        justify-items: center;
        text-align: center;
    }

    .author-avatar {
        width: 74px;
        height: 74px;
    }

    .author-social {
        justify-content: center;
    }

    .ftr-wrap {
        padding: 34px 0 22px;
    }

    .ftr-top {
        display: grid;
        grid-template-columns:1fr;
        gap: 22px;
        text-align: center;
    }

    .ftr-logo img {
        margin: 0 auto;
    }

    .ftr-nav-col ul {
        align-items: center;
    }

    .ftr-badges-row {
        justify-content: center;
    }

    .ftr-legal {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .widget-inner {
        display: grid;
        grid-template-columns:1fr auto;
        gap: 10px;
    }

    .widget-text {
        display: grid;
        gap: 4px;
        min-width: 0;
    }

    .widget-label {
        display: none;
    }

    .widget-title {
        font-size: .84rem;
        line-height: 1.35;
    }

    .widget-btn {
        padding: 10px 12px;
        font-size: .82rem;
    }

    .widget-close {
        position: absolute;
        right: 4px;
        top: 4px;
        font-size: 1.15rem;
    }

    .modal-box {
        max-height: 92vh;
        border-radius: 14px;
    }

    .modal-head,
    .modal-foot {
        padding: 14px;
    }

    .modal-iframe {
        height: 360px;
    }

    img,
    iframe,
    video,
    canvas {
        max-width: 100%;
    }
}

@media (max-width: 480px) {

    .pg-container {
        padding-left: 12px;
        padding-right: 12px;
    }


    .hero-slide,
    .hero-bg-img {
        height: 350px;
    }

    .hero-content {
        padding: 30px 38px 62px;
    }

    .hero-title {
        font-size: 1.32rem;
    }

    .hero-subtitle {
        font-size: .82rem;
    }

    .sec-block {
        padding: 18px 12px;
    }

    .sec-title {
        font-size: 1.15rem;
    }

    .game-card {
        flex-basis: 88%;
        min-width: 88%;
    }

    .wheel-canvas {
        width: 250px !important;
        height: 250px !important;
    }

    .wheel-win-code {
        font-size: 1.05rem;
        letter-spacing: .06em;
    }

    .widget-inner {
        grid-template-columns:1fr;
        text-align: center;
    }

    .widget-btn {
        width: 100%;
    }
}

@media (max-width: 900px) {

    .hero-slider-wrap {
        position: relative;
        width: 100%;
        height: 390px;
        max-height: none;
        overflow: hidden;
        border-radius: 0;
        background: #07070c;
    }

    .hero-slides {
        display: flex;
        width: 100%;
        height: 100%;
        transform: translate3d(0, 0, 0);
    }

    .hero-slide {
        position: relative;
        flex: 0 0 100%;
        min-width: 100%;
        width: 100%;
        height: 390px;
        overflow: hidden;
    }

    .hero-bg-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: cover;
        object-position: center;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
                90deg,
                rgba(12, 12, 16, .82) 0%,
                rgba(12, 12, 16, .72) 45%,
                rgba(12, 12, 16, .9) 100%
        );
    }

    .hero-content {
        position: relative;
        z-index: 2;
        inset: auto;
        width: 100%;
        height: 100%;
        max-width: 100%;
        padding: 42px 42px 76px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .hero-eyebrow {
        font-size: .66rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .hero-title {
        max-width: 260px;
        font-size: 1.45rem;
        line-height: 1.15;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        display: block;
        max-width: 260px;
        font-size: .78rem;
        line-height: 1.45;
        margin-bottom: 16px;
    }

    .hero-cta {
        width: 100%;
        max-width: 230px;
        min-height: 42px;
        padding: 10px 14px;
        font-size: .82rem;
    }

    .hero-arrow {
        z-index: 4;
        width: 34px;
        height: 34px;
        font-size: 1.1rem;
        background: rgba(12, 12, 16, .72);
        backdrop-filter: blur(8px);
    }

    .hero-prev {
        left: 8px;
    }

    .hero-next {
        right: 8px;
    }

    .hero-controls {
        z-index: 5;
        left: 50%;
        bottom: 18px;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {

    .hero-slider-wrap,
    .hero-slide {
        height: 360px;
    }

    .hero-content {
        padding: 36px 38px 68px;
    }

    .hero-title {
        font-size: 1.28rem;
        max-width: 230px;
    }

    .hero-subtitle {
        max-width: 230px;
        font-size: .74rem;
    }

    .hero-cta {
        max-width: 220px;
    }
}