@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Montserrat:wght@400;600;700&family=Oswald:wght@400;500;700&family=Rubik:wght@400;500;700&display=swap');

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

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #69ACBD;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden
}

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

a {
    color: #2967C7;
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

button {
    cursor: pointer;
    border: none;
    outline: none
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all .25s ease;
    cursor: pointer;
    text-decoration: none;
    border: none;
    letter-spacing: .3px;
    white-space: nowrap
}

.btn--primary {
    background: #2967C7;
    color: #fff
}

.btn--primary:hover {
    background: #1d4f9e;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(41, 103, 199, .4)
}

.btn--gold {
    background: #F5B337;
    color: #1a1a1a
}

.btn--gold:hover {
    background: #e0a020;
    color: #1a1a1a;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(245, 179, 55, .4)
}

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

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

.site-header {
    background: #3A3A3A;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .3)
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    max-width: 1200px;
    margin: 0 auto
}

.header-logo {
    flex-shrink: 0
}

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

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

.header-nav a {
    color: #e0e0e0;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 10px;
    border-radius: 6px;
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap
}

.header-nav a:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    text-decoration: none
}

.nav-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

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

.lang-selector {
    position: relative
}

.lang-btn {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 6px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: #e0e0e0;
    font-size: 13px;
    transition: all .2s
}

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

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #3A3A3A;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 8px;
    min-width: 140px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all .2s
}

.lang-selector.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    color: #e0e0e0;
    font-size: 13px;
    cursor: pointer;
    transition: background .15s
}

.lang-option:hover {
    background: rgba(255, 255, 255, .1)
}

.lang-option .flag {
    font-size: 18px
}

.online-count {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #b0b0b0;
    font-size: 12px;
    white-space: nowrap
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf50;
    animation: pulse-dot 2s infinite
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, .4)
    }
    50% {
        box-shadow: 0 0 0 6px rgba(76, 175, 80, 0)
    }
}

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

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #e0e0e0;
    border-radius: 2px;
    transition: all .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)
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3A3A3A;
    z-index: 2000;
    padding: 20px;
    overflow-y: auto;
    flex-direction: column;
    gap: 16px
}

.mobile-menu.open {
    display: flex
}

.mobile-menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: #e0e0e0;
    font-size: 24px;
    cursor: pointer;
    padding: 8px
}

.mobile-menu .header-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%
}

.mobile-menu .header-nav a {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 8px
}

.mobile-menu-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0d1b2a 0%, #1a2e4a 40%, #0f3460 100%)
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/hero-tower.png');
    background-size: cover;
    background-position: center;
    opacity: .35
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 27, 42, .85) 0%, rgba(13, 27, 42, .5) 60%, transparent 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 16px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 179, 55, .15);
    border: 1px solid rgba(245, 179, 55, .4);
    border-radius: 20px;
    padding: 6px 14px;
    color: #F5B337;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 20px
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .5)
}

.hero-title span {
    color: #F5B337
}

.hero-desc {
    font-size: 16px;
    color: #c0d0e0;
    max-width: 560px;
    margin-bottom: 28px;
    line-height: 1.7
}

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

.hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 36px;
    flex-wrap: wrap
}

.hero-stat {
    text-align: center
}

.hero-stat-val {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #F5B337
}

.hero-stat-label {
    font-size: 12px;
    color: #90a8c0;
    text-transform: uppercase;
    letter-spacing: .5px
}

.section {
    padding: 60px 0
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .3)
}

.section-sub {
    font-size: 14px;
    color: #d0e8f0;
    margin-bottom: 36px
}

.section-header {
    margin-bottom: 36px
}

.jackpots-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.jackpot-card {
    flex: 1;
    min-width: 240px;
    background: linear-gradient(145deg, #1a2e4a, #0d1b2a);
    border: 1px solid rgba(245, 179, 55, .25);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px
}

.jackpot-card.bronze::before {
    background: linear-gradient(90deg, #cd7f32, #e8a96a)
}

.jackpot-card.silver::before {
    background: linear-gradient(90deg, #a8a8a8, #d4d4d4)
}

.jackpot-card.gold::before {
    background: linear-gradient(90deg, #F5B337, #ffe082)
}

.jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .3)
}

.jackpot-tier {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px
}

.jackpot-card.bronze .jackpot-tier {
    color: #cd7f32
}

.jackpot-card.silver .jackpot-tier {
    color: #a8a8a8
}

.jackpot-card.gold .jackpot-tier {
    color: #F5B337
}

.jackpot-amount {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    transition: all .5s
}

.jackpot-players {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.jackpot-player {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    background: rgba(255, 255, 255, .05);
    border-radius: 8px;
    font-size: 12px;
    color: #c0d0e0 !important;
}

.jackpot-player-name {
    color: #c0d0e0 !important;
    font-weight: 500
}

.jackpot-player-win {
    color: #4caf50;
    font-weight: 600
}

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

.screenshot-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform .3s;
    background: #1a2e4a
}

.screenshot-card:hover {
    transform: scale(1.02)
}

.screenshot-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block
}

.screenshot-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .3s;
    font-size: 32px
}

.screenshot-card:hover .screenshot-overlay {
    opacity: 1
}

.screenshots-slider {
    display: none;
    overflow: hidden;
    position: relative
}

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

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

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

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

.slider-dot.active {
    background: #F5B337
}

.demo-block {
    background: linear-gradient(145deg, #0d1b2a, #1a2e4a);
    border: 1px solid rgba(41, 103, 199, .3);
    border-radius: 16px;
}

.demo-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: gap
}

.demo-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600
}

.demo-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #90a8c0
}

.demo-meta span {
    display: flex;
    align-items: center;
    gap: 4px
}

.demo-iframe-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden
}

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

.demo-footer {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    background: rgba(0, 0, 0, .2)
}

.demo-disclaimer {
    font-size: 11px;
    color: #6a8090
}

.demo-play-btn {
    display: flex;
    align-items: center;
    gap: 8px
}

.reviews-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 36px
}

.review-card {
    background: linear-gradient(145deg, #fff, #f8f9fa);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
    transition: transform .3s, box-shadow .3s
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15)
}

.review-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2967C7, #69ACBD);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0
}

.review-name {
    font-weight: 600;
    font-size: 15px;
    color: #1a1a1a
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-top: 2px
}

.review-star {
    color: #F5B337;
    font-size: 14px
}

.review-text {
    font-size: 13px;
    color: #444;
    line-height: 1.65
}

.review-date {
    font-size: 11px;
    color: #999;
    margin-top: 10px
}

.review-form-wrap {
    background: linear-gradient(145deg, #0d1b2a, #1a2e4a);
    border: 1px solid rgba(41, 103, 199, .3);
    border-radius: 16px;
    padding: 28px;
    max-width: 560px;
    margin: 0 auto
}

.review-form-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 20px
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px
}

.form-group label {
    font-size: 13px;
    color: #90a8c0;
    font-weight: 500
}

.form-group input, .form-group textarea {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 8px;
    padding: 12px 14px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color .2s, background .2s;
    width: 100%
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #2967C7;
    background: rgba(41, 103, 199, .1)
}

.form-group textarea {
    resize: vertical;
    min-height: 100px
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: #506070
}

.form-success {
    display: none;
    background: rgba(76, 175, 80, .15);
    border: 1px solid rgba(76, 175, 80, .4);
    border-radius: 8px;
    padding: 16px;
    color: #81c784;
    font-size: 14px;
    text-align: center;
    margin-top: 12px
}

.form-success.visible {
    display: block
}

.site-footer {
    background: #3A3A3A;
    color: #b0b0b0;
    margin-top: auto
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 16px 24px
}

.footer-top {
    display: grid;
    grid-template-columns:1fr 2fr 1fr;
    gap: 32px;
    margin-bottom: 40px
}

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

.footer-desc {
    font-size: 13px;
    line-height: 1.65;
    color: #888
}

.footer-nav-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px
}

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

.footer-nav a {
    color: #888;
    font-size: 13px;
    transition: color .2s
}

.footer-nav a:hover {
    color: #F5B337;
    text-decoration: none
}

.footer-nav-cols {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 24px
}

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

.trust-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center
}

.trust-badge {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 11px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px
}

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

.payment-logo {
    background: rgba(255, 255, 255, .08);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 11px;
    color: #aaa;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, .1)
}

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

.provider-logo img {
    height: 28px;
    filter: brightness(0.8)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: #666
}

.footer-legal {
    max-width: 760px;
    line-height: 1.55
}

.footer-18 {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #666;
    flex-shrink: 0
}


.content-block {
    background: rgba(255, 255, 255, .95);
    border-radius: 16px;
    padding: 32px;
    margin: 0 0 24px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .1)
}

.content-block h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 24px 0 12px
}

.content-block h2:first-child {
    margin-top: 0
}

.content-block h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #2967C7;
    margin: 20px 0 10px
}

.content-block p {
    font-size: 15px;
    color: #333;
    line-height: 1.75;
    margin-bottom: 14px
}

.content-block ul, .content-block ol {
    padding-left: 22px;
    margin-bottom: 14px
}

.content-block li {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 6px
}

.content-block table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 16px 0
}

.content-block th {
    background: #2967C7;
    color: #fff;
    padding: 12px 14px;
    text-align: left;
    font-weight: 600
}

.content-block td {
    padding: 10px 14px;
    border: 1px solid #dde3ea;
    text-align: left;
    color: #333
}

.content-block tr:nth-child(even) td {
    background: #f5f7fa
}

.content-block a {
    color: #2967C7
}

.pros-cons-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 16px;
    margin-top: 16px
}

.pros-block {
    background: rgba(76, 175, 80, .08);
    border: 1px solid rgba(76, 175, 80, .3);
    border-radius: 12px;
    padding: 16px
}

.cons-block {
    background: rgba(244, 67, 54, .07);
    border: 1px solid rgba(244, 67, 54, .25);
    border-radius: 12px;
    padding: 16px
}

.pros-block h3 {
    color: #388e3c;
    margin-top: 0
}

.cons-block h3 {
    color: #d32f2f;
    margin-top: 0
}

.pros-block li::marker {
    color: #388e3c
}

.cons-block li::marker {
    color: #d32f2f
}

.author-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(41, 103, 199, .08), rgba(105, 172, 189, .1));
    border: 1px solid rgba(41, 103, 199, .2);
    border-radius: 12px;
    padding: 20px;
    margin-top: 24px
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2967C7, #69ACBD);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    font-weight: 700
}

.author-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px
}

.author-info p {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px
}

.author-info a {
    color: #2967C7;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.faq-block {
    max-width: 800px;
    margin: 0 auto
}

.faq-item {
    background: linear-gradient(145deg, #0d1b2a, #1a2e4a);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow .3s
}

.faq-item.open {
    box-shadow: 0 4px 20px rgba(41, 103, 199, .2)
}

.faq-question {
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    user-select: none
}

.faq-question:hover {
    background: rgba(255, 255, 255, .03)
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform .3s;
    color: #F5B337
}

.faq-item.open .faq-icon {
    transform: rotate(45deg)
}

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

.faq-answer-inner {
    padding: 0 20px 16px;
    color: #90a8c0;
    font-size: 14px;
    line-height: 1.7
}

.faq-item.open .faq-answer {
    max-height: 500px
}

.game-info-grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px
}

.game-info-card {
    background: linear-gradient(145deg, #0d1b2a, #1a2e4a);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.game-info-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #6a8090;
    font-weight: 600
}

.game-info-value {
    font-size: 14px;
    font-weight: 600;
    color: #fff
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(245, 179, 55, .4), transparent);
    margin: 8px 0
}

.breadcrumbs {
    padding: 14px 0 0;
    font-size: 13px;
    color: #d0e8f0
}

.breadcrumbs a {
    color: #d0e8f0
}

.breadcrumbs span {
    color: #F5B337
}

.similar-games {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.similar-game-card {
    background: linear-gradient(145deg, #0d1b2a, #1a2e4a);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform .2s, border-color .2s;
    cursor: pointer
}

.similar-game-card:hover {
    transform: translateY(-2px);
    border-color: rgba(245, 179, 55, .4)
}

.similar-game-card span {
    color: #c0d0e0;
    font-size: 14px;
    font-weight: 500
}

.x-vvg48 a, .x-vvg48 span, .x-vvg48 div {
    font-size: inherit
}

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

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

.rtp-fill {
    height: 100%;
    background: linear-gradient(90deg, #2967C7, #4caf50);
    border-radius: 4px
}

.wp-block-separator {
    display: none
}

.technical-content {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto
}

.technical-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 28px 0 12px;
    padding-top: 4px
}

.technical-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    color: #2967C7;
    margin: 20px 0 8px
}

.technical-content p {
    font-size: 15px;
    color: #333;
    line-height: 1.75;
    margin-bottom: 14px
}

.technical-content ul, .technical-content ol {
    padding-left: 22px;
    margin-bottom: 14px
}

.technical-content li {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 6px
}

.xw9a2 {
    display: none
}

.zk3bc {
    visibility: hidden;
    height: 0;
    overflow: hidden
}

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

    .burger {
        display: flex
    }

    .screenshots-grid {
        display: none
    }

    .screenshots-slider {
        display: block
    }

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

    .jackpots-grid {
        flex-direction: column
    }

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

    .pros-cons-grid {
        grid-template-columns:1fr
    }

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

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

    .footer-nav-cols {
        grid-template-columns:1fr
    }
}

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

    .hero-btns {
        flex-direction: column
    }

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

    .sticky-widget {
        flex-wrap: wrap
    }

    .widget-actions {
        width: 100%
    }

    .widget-actions .btn {
        flex: 1;
        text-align: center
    }

    .technical-content {
        padding: 24px 16px
    }

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

    .section {
        padding: 40px 0
    }

    .demo-footer {
        flex-direction: column
    }

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

    .author-block {
        flex-direction: column
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200px 0
    }
    100% {
        background-position: 200px 0
    }
}

.anim-fade {
    animation: fadeInUp .5s ease both
}

.anim-delay-1 {
    animation-delay: .1s
}

.anim-delay-2 {
    animation-delay: .2s
}

.anim-delay-3 {
    animation-delay: .3s
}

.nvx-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: rgba(14, 20, 31, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nvx-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nvx-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.nvx-logo img {
    height: 42px;
    width: auto;
    display: block;
}

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

.nvx-nav a {
    color: #d6dce5;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 11px 15px;
    border-radius: 12px;
    transition: 0.25s;
    white-space: nowrap;
}

.nvx-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

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

.nvx-btn {
    min-height: 42px;
    padding: 0 18px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: 0.25s;
    white-space: nowrap;
}

.nvx-btn-dark {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.nvx-btn-dark:hover {
    background: rgba(255, 255, 255, 0.16);
}

.nvx-btn-gold {
    background: #F5B337;
    color: #111;
}

.nvx-btn-gold:hover {
    background: #ffca57;
}

.nvx-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.nvx-toggle span {
    position: absolute;
    left: 12px;
    width: 22px;
    height: 2px;
    background: #fff;
    transition: 0.25s;
}

.nvx-toggle span:nth-child(1) {
    top: 15px;
}

.nvx-toggle span:nth-child(2) {
    top: 22px;
}

.nvx-toggle span:nth-child(3) {
    top: 29px;
}

.nvx-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 22px;
}

.nvx-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nvx-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 22px;
}

.nvx-mobile {
    display: none;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
    background: #121926;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nvx-mobile.active {
    display: flex;
}

.nvx-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nvx-mobile-nav a {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 14px 16px;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
}

.nvx-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body {
    padding-top: 78px;
}

@media (max-width: 960px) {
    .nvx-nav {
        display: none;
    }

    .nvx-toggle {
        display: block;
    }


    .nvx-wrap {
        padding: 12px 14px;
    }

    body {
        padding-top: 72px;
    }
}

@media (max-width: 480px) {
    .nvx-logo img {
        height: 34px;
    }

    .nvx-mobile {
        padding: 12px;
    }

    body {
        padding-top: 68px;
    }
}