:root {
    --c-header: #1d1a94;
    --c-footer: #1d1a94;
    --c-bg: #3b0159;
    --c-btn-play: #0dd906;
    --c-btn-sec: #b70000;
    --c-text: #f0e6ff;
    --c-muted: #c4b0d8;
    --c-accent: #ffd700;
    --c-card: rgba(255, 255, 255, 0.05);
    --c-border: rgba(255, 255, 255, 0.12);
    --font: 'Oswald', sans-serif;
    --r: 12px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font);
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.7;
}

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

a {
    color: #b70000;
    text-decoration: none;
    transition: opacity .2s
}

a:hover {
    opacity: .8
}

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

.site-header {
    background: var(--c-header);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .55)
}

.hdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    gap: 10px;
    flex-wrap: wrap
}

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

.hdr-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center
}

.nav-ul {
    display: flex;
    gap: 2px;
    list-style: none
}

.nav-ul a {
    color: #fff;
    font-size: 13px;
    padding: 7px 11px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background .2s;
    white-space: nowrap
}

.nav-ul a:hover {
    background: rgba(255, 255, 255, .15);
    opacity: 1
}

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

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

.winner-tick {
    background: rgba(0, 0, 0, .35);
    color: var(--c-accent);
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap
}

.tick-dot {
    width: 7px;
    height: 7px;
    background: #0dd906;
    border-radius: 50%;
    animation: blink 1.4s infinite
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 8px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s, opacity .15s;
    white-space: nowrap
}

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

.btn:active {
    transform: none
}

.btn-play {
    background: var(--c-btn-play);
    color: #062400
}

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

.btn-demo {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25)
}

.btn-money {
    background: var(--c-btn-play);
    color: #062400
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px
}

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

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s, opacity .3s
}

.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)
}

.mob-menu {
    display: none;
    flex-direction: column;
    background: var(--c-header);
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.mob-menu.open {
    display: flex
}

.mob-menu a {
    color: #fff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.mob-menu a:hover {
    background: rgba(255, 255, 255, .08);
    opacity: 1
}

.mob-menu svg {
    width: 15px;
    height: 15px;
    fill: currentColor
}

.hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0e0024
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/images/banner.jpg') center/cover no-repeat;
    filter: brightness(.5)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(29, 26, 148, .65) 0%, rgba(59, 1, 89, .75) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 70px 20px
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 3px 14px rgba(0, 0, 0, .8);
    margin-bottom: 12px
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--c-muted);
    max-width: 580px;
    margin: 0 auto 22px
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px
}

.stars {
    color: var(--c-accent);
    font-size: 1.5rem;
    letter-spacing: 3px
}

.rating-val {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff
}

.rating-ct {
    font-size: .85rem;
    color: var(--c-muted)
}

.hero-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px
}

.hero-badge {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 12px;
    color: #fff
}

.section {
    padding: 64px 0
}

.section-title {
    font-size: 1.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 32px;
    position: relative;
    padding-bottom: 14px
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--c-btn-play), var(--c-btn-sec));
    border-radius: 2px
}

.section-title.center {
    text-align: center
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%)
}

.game-layout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    flex-wrap: wrap
}

.game-demo-col {
    flex: 1 1 400px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
}

.iframe-box {
    position: relative;
    padding-top: 56.25%;
    background: #000
}

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

.demo-cta {
    padding: 16px;
    display: flex;
    justify-content: center;
    background: rgba(0, 0, 0, .3)
}

.game-table-col {
    flex: 1 1 340px
}

.game-table-col .section-title {
    font-size: 1.4rem;
    margin-bottom: 14px
}

.dtable {
    width: 100%;
    border-collapse: collapse;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    overflow: hidden;
    display: table
}

.dtable tr {
    border-bottom: 1px solid var(--c-border)
}

.dtable tr:last-child {
    border-bottom: none
}

.dtable td {
    padding: 8px 14px;
    font-size: 13px;
    text-align: left;
    vertical-align: middle
}

.dtable td:first-child {
    color: var(--c-muted);
    width: 50%;
    display: flex;
    align-items: center;
    gap: 7px
}

.dtable td:last-child {
    color: #fff;
    font-weight: 500
}

.dtable tr:nth-child(odd) td {
    background: rgba(255, 255, 255, .025)
}

.dt-icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0
}

.dt-icon svg {
    width: 13px;
    height: 13px;
    fill: var(--c-btn-play)
}

.adv-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px
}

.adv-tile {
    flex: 1 1 210px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    padding: 26px 20px;
    text-align: center;
    transition: transform .25s, box-shadow .25s
}

.adv-tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow)
}

.adv-icon {
    margin-bottom: 14px
}

.adv-icon svg {
    width: 42px;
    height: 42px;
    fill: var(--c-btn-play)
}

.adv-tile h3 {
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
    color: #fff
}

.adv-tile p {
    font-size: .84rem;
    color: var(--c-muted);
    line-height: 1.65
}

.wtable-wrap {
    overflow-x: auto;
    border-radius: var(--r)
}

.wtable {
    width: 100%;
    border-collapse: collapse;
    background: var(--c-card);
    border: 1px solid var(--c-border)
}

.wtable thead tr {
    background: rgba(29, 26, 148, .8)
}

.wtable th {
    padding: 11px 16px;
    text-align: left;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .5px
}

.wtable td {
    padding: 9px 16px;
    font-size: 13px;
    border-bottom: 1px solid var(--c-border)
}

.wtable tr:last-child td {
    border-bottom: none
}

.wtable tr:hover td {
    background: rgba(255, 255, 255, .04)
}

.w-rank {
    font-weight: 700;
    min-width: 28px;
    display: inline-block;
    text-align: center
}

.w-rank.g {
    color: #FFD700
}

.w-rank.s {
    color: #C0C0C0
}

.w-rank.b {
    color: #CD7F32
}

.w-amt {
    color: var(--c-btn-play);
    font-weight: 700
}

.w-time {
    color: var(--c-muted);
    font-size: 11px
}

.review-section {
    padding: 60px 0
}

.author-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    padding: 16px 20px;
    border-radius: var(--r);
    margin-bottom: 24px
}

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

.author-meta h4 {
    font-size: .9rem;
    color: #fff;
    margin-bottom: 3px
}

.author-meta p {
    font-size: .78rem;
    color: var(--c-muted)
}

.author-meta a {
    font-size: .78rem;
    color: #b70000
}

.content-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    padding: 30px 32px
}

.content-block h2 {
    color: #fff;
    font-size: 1.5rem;
    margin: 20px 0 10px
}

.content-block h3 {
    color: #fff;
    font-size: 1.15rem;
    margin: 18px 0 8px
}

.content-block h4 {
    color: #fff;
    font-size: 1rem;
    margin: 14px 0 6px
}

.content-block p {
    color: var(--c-text);
    margin-bottom: 14px;
    font-size: .93rem;
    line-height: 1.82
}

.content-block ul, .content-block ol {
    margin: 10px 0 16px 22px
}

.content-block li {
    color: var(--c-text);
    margin-bottom: 6px;
    font-size: .93rem;
    line-height: 1.7
}

.content-block a {
    color: #b70000
}

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

.content-block table th, .content-block table td {
    padding: 8px 12px;
    border: 1px solid var(--c-border);
    text-align: left;
    font-size: .88rem
}

.content-block table th {
    background: rgba(29, 26, 148, .5);
    color: #fff
}

.content-block table td {
    color: var(--c-text)
}

.content-block img {
    max-width: 100%;
    border-radius: 8px;
    margin: 12px 0
}

.content-block strong {
    color: #fff
}

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

.content-block blockquote {
    border-left: 4px solid var(--c-btn-sec);
    padding: 10px 16px;
    margin: 16px 0;
    background: rgba(183, 0, 0, .1);
    border-radius: 0 8px 8px 0
}

.content-block blockquote p {
    margin: 0;
    font-style: italic
}

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

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

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

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

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

.faq-q.active {
    color: var(--c-btn-play)
}

.faq-arr {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border: 2px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s;
    font-size: 13px
}

.faq-q.active .faq-arr {
    transform: rotate(180deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease
}

.faq-a.open {
    max-height: 500px
}

.faq-a p {
    padding: 0 20px 16px;
    color: var(--c-muted);
    font-size: .88rem;
    line-height: 1.8
}

.sim-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.sim-card {
    flex: 1 1 210px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s
}

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

.sim-thumb {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #1d1a94 0%, #3b0159 100%)
}

.sim-body {
    padding: 16px
}

.sim-body h3 {
    font-size: .95rem;
    color: #fff;
    margin-bottom: 6px
}

.sim-body p {
    font-size: .8rem;
    color: var(--c-muted);
    margin-bottom: 14px;
    line-height: 1.6
}

.sim-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.site-footer {
    background: var(--c-footer);
    border-top: 2px solid rgba(255, 255, 255, .1);
    padding: 44px 0 20px
}

.ftr-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    margin-bottom: 22px
}

.ftr-col {
    flex: 1 1 190px
}

.ftr-logo img {
    height: 42px;
    margin-bottom: 14px
}

.ftr-about {
    font-size: .78rem;
    color: var(--c-muted);
    line-height: 1.7;
    max-width: 230px
}

.ftr-col h4 {
    font-size: .78rem;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 13px
}

.ftr-links {
    list-style: none
}

.ftr-links li {
    margin-bottom: 7px
}

.ftr-links a {
    color: var(--c-muted);
    font-size: .82rem;
    transition: color .2s
}

.ftr-links a:hover {
    color: #fff;
    opacity: 1
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 8px
}

.t-badge {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 5px;
    padding: 5px 9px;
    font-size: 10px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap
}

.t-badge svg {
    width: 12px;
    height: 12px;
    fill: var(--c-btn-play)
}

.pay-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 8px
}

.pay-badge {
    background: rgba(255, 255, 255, .12);
    border-radius: 4px;
    padding: 5px 9px;
    font-size: 10px;
    color: #ddd;
    font-weight: 700
}

.soc-row {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    margin-top: 8px
}

.soc-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    color: #fff
}

.soc-link:hover {
    background: rgba(255, 255, 255, .25);
    opacity: 1
}

.soc-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor
}

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

.ftr-provider img {
    height: 24px;
    filter: brightness(10);
    opacity: .55
}

.ftr-flag {
    font-size: 1.6rem
}

.ftr-bottom {
    text-align: center
}

.ftr-bottom p {
    font-size: .75rem;
    color: var(--c-muted);
    line-height: 1.7
}

.ftr-legal {
    font-size: .68rem;
    color: rgba(255, 255, 255, .3);
    max-width: 840px;
    margin: 10px auto 0;
    line-height: 1.7
}

.sticky-widget {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 800;
    background: var(--c-header);
    border: 2px solid var(--c-btn-play);
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .6);
    max-width: 270px;
    animation: slideIn .5s ease;
    overflow: visible
}

.sw-logo img {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover
}

.sw-info h4 {
    font-size: .78rem;
    color: #fff;
    margin-bottom: 2px
}

.sw-info p {
    font-size: .68rem;
    color: var(--c-muted);
    margin-bottom: 8px
}

.sw-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--c-btn-sec);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1
}

.sep {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
    margin: 0
}

.breadcrumb {
    padding: 10px 0;
    font-size: .78rem;
    color: var(--c-muted)
}

.breadcrumb a {
    color: var(--c-muted)
}

.breadcrumb span {
    margin: 0 5px
}

.info-page {
    padding: 60px 0;
    min-height: 65vh
}

.info-page h1 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 24px
}

.info-page p, .info-page li {
    color: var(--c-muted);
    font-size: .92rem;
    line-height: 1.8;
    margin-bottom: 10px
}

.info-page h2 {
    color: #fff;
    font-size: 1.3rem;
    margin: 24px 0 10px
}

.info-page ul {
    margin-left: 20px;
    margin-bottom: 14px
}

.info-page a {
    color: #b70000
}

.contact-form {
    max-width: 540px;
    margin: 32px auto 0
}

.fg {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 5px
}

.fg label {
    font-size: .82rem;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: .5px
}

.fg input, .fg textarea, .fg select {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: 8px;
    padding: 10px 14px;
    color: #fff;
    font-family: var(--font);
    font-size: .9rem;
    width: 100%;
    outline: none;
    transition: border-color .2s
}

.fg input:focus, .fg textarea:focus {
    border-color: var(--c-btn-play)
}

.fg textarea {
    min-height: 120px;
    resize: vertical
}

@keyframes blink {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .25
    }
}

@keyframes slideIn {
    from {
        transform: translateX(130%);
        opacity: 0
    }
    to {
        transform: translateX(0);
        opacity: 1
    }
}

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

.fade-up {
    animation: fadeUp .5s ease both
}

.wp-block-group {
    display: block
}

.wp-block-columns {
    display: flex;
    flex-wrap: wrap
}

.elementor-section {
    position: relative
}

.entry-content {
    display: block
}

.screen-reader-text {
    position: absolute;
    left: -9999px
}

.wp-caption {
    display: inline-block;
    max-width: 100%
}

.alignnone, .aligncenter, .alignleft, .alignright {
    margin: 0
}

#wpadminbar {
    display: none
}

.wpcf7 {
    display: block
}

.wp-block-cover {
    position: relative
}

.has-text-align-center {
    text-align: center
}

.wp-element-button {
    cursor: pointer
}

@media (max-width: 900px) {
    .nav-ul {
        display: none
    }

    .burger {
        display: flex
    }

    .hdr-inner {
        flex-wrap: nowrap
    }

    .game-layout {
        flex-direction: column
    }
}

@media (max-width: 768px) {
    .winner-tick {
        display: none
    }

    .hero {
        min-height: 320px
    }

    .hero-content h1 {
        font-size: 1.7rem
    }

    .section {
        padding: 40px 0
    }

    .content-block {
        padding: 18px 16px
    }

    .sticky-widget {
        right: 10px;
        bottom: 10px;
        max-width: 220px;
        padding: 10px 12px
    }

    .ftr-grid {
        gap: 18px
    }
}

@media (max-width: 480px) {
    .hdr-logo img {
        height: 38px
    }

    .btn {
        padding: 7px 12px;
        font-size: 11.5px
    }

    .adv-tile {
        flex: 1 1 calc(50% - 9px);
        padding: 16px 12px
    }

    .sim-card {
        flex: 1 1 calc(50% - 10px)
    }

    .ftr-col {
        flex: 1 1 calc(50% - 14px)
    }
}

@media (max-width: 900px) {
    .game-layout {
        display: flex;
        flex-direction: column;
        gap: 28px;
        width: 100%;
        align-items: stretch;
    }

    .game-demo-col,
    .game-table-col {
        flex: none;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .game-demo-col {
        height: auto;
        min-height: 0;
        border-radius: 12px;
    }

    .iframe-box {
        position: relative;
        width: 100%;
        height: auto;
        padding-top: 0;
        aspect-ratio: 16 / 9;
        background: #000;
    }

    .iframe-box iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        display: block;
        border: 0;
    }

    .demo-cta {
        width: 100%;
        min-height: 62px;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, .28);
    }

    .demo-cta .btn {
        min-height: 42px;
        padding: 10px 18px;
        font-size: 12px;
    }

    .game-table-col .section-title {
        margin-top: 0;
        margin-bottom: 16px;
        font-size: 1.45rem;
    }

    .game-table-col > div {
        width: 100%;
        border-radius: 12px !important;
    }

    .dtable {
        width: 100%;
        min-width: 0;
        table-layout: fixed;
    }

    .dtable td {
        padding: 10px 12px;
        font-size: 13px;
        line-height: 1.45;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .dtable td:first-child {
        width: 42%;
        min-width: 0;
    }

    .dtable td:last-child {
        width: 58%;
        min-width: 0;
    }

    .dt-icon {
        flex: 0 0 auto;
    }

    .section {
        padding: 36px 0;
    }

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

@media (max-width: 600px) {
    .game-layout {
        gap: 24px;
    }

    .iframe-box {
        aspect-ratio: 16 / 10;
    }

    .demo-cta {
        min-height: 58px;
        padding: 10px;
    }

    .demo-cta .btn {
        width: 100%;
        max-width: 260px;
        min-height: 44px;
        justify-content: center;
    }

    .game-table-col .section-title {
        font-size: 1.3rem;
        margin-bottom: 14px;
        padding-bottom: 11px;
    }

    .game-table-col .section-title::after {
        width: 42px;
    }

    .dtable,
    .dtable tbody,
    .dtable tr {
        display: block;
        width: 100%;
    }

    .dtable tr {
        padding: 11px 12px;
        border-bottom: 1px solid var(--c-border);
    }

    .dtable td {
        display: block;
        width: 100% !important;
        padding: 0;
        background: transparent !important;
    }

    .dtable td:first-child {
        display: flex;
        align-items: center;
        gap: 7px;
        margin-bottom: 5px;
        color: var(--c-muted);
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: .35px;
    }

    .dtable td:last-child {
        padding-left: 20px;
        color: #fff;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.45;
    }

    .dt-icon svg {
        width: 12px;
        height: 12px;
    }

    .section {
        padding: 30px 0;
    }

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

@media (max-width: 400px) {
    .iframe-box {
        aspect-ratio: 4 / 3;
    }

    .demo-cta .btn {
        max-width: none;
        font-size: 11px;
    }

    .game-table-col .section-title {
        font-size: 1.2rem;
    }

    .dtable tr {
        padding: 10px;
    }

    .dtable td:last-child {
        padding-left: 19px;
        font-size: 12.5px;
    }
}