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

:root {
    --c-bg: #26313F;
    --c-hdr: #25313F;
    --c-btn-login: #25313F;
    --c-btn-reg: #A82929;
    --c-text: #e8ecf0;
    --c-text-muted: #9aabb8;
    --c-border: #374858;
    --c-accent: #c0392b;
    --c-gold: #f0b429;
    --radius: 10px;
    --radius-lg: 16px;
    --trans: 0.28s ease
}

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

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

body {
    background: var(--c-bg);
    color: var(--c-text);
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden
}

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

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

a:hover {
    color: #fff
}

ul, ol {
    list-style: none
}

.xk7b2-wrap {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 18px
}

.nq4p1-flex {
    display: flex;
    align-items: center;
    gap: 12px
}

.zm9r3-grid {
    display: grid
}

.nv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 22px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    border: none;
    cursor: pointer;
    transition: all var(--trans);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1
}

.nv-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(0, 0, 0, .35)
}

.nv-btn-login {
    background: var(--c-btn-login);
    color: #e8ecf0;
    border: 1px solid #4a5f77
}

.nv-btn-login:hover {
    background: #1e2a36;
    color: #fff
}

.nv-btn-reg {
    background: var(--c-btn-reg);
    color: #fff
}

.nv-btn-reg:hover {
    background: #c0392b
}

.nv-btn-bonus {
    background: linear-gradient(135deg, #b52e2e, #8c1c1c);
    color: #fff;
    animation: pulseBtn 2.4s ease-in-out infinite
}

.nv-btn-bonus:hover {
    background: linear-gradient(135deg, #c0392b, #a82929)
}

.nv-btn-lg {
    padding: 14px 34px;
    font-size: 1rem;
    border-radius: 8px
}

@keyframes pulseBtn {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(168, 41, 41, .55)
    }
    50% {
        box-shadow: 0 0 0 9px rgba(168, 41, 41, 0)
    }
}

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

.nv-hdr-inner {
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    min-height: 64px
}

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

.nv-logo:hover {
    opacity: .85
}

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

.nv-nav a {
    color: #c5d4e0;
    font-size: .85rem;
    font-weight: 500;
    padding: 7px 13px;
    border-radius: 5px;
    transition: all var(--trans)
}

.nv-nav a:hover, .nv-nav a.active {
    color: #fff;
    background: rgba(255, 255, 255, .08)
}

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

.nv-online {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .78rem;
    color: var(--c-text-muted);
    background: rgba(255, 255, 255, .06);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid var(--c-border)
}

.nv-online-dot {
    width: 8px;
    height: 8px;
    background: #27ae60;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
    flex-shrink: 0
}

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

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

.nv-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #e8ecf0;
    border-radius: 2px;
    transition: all var(--trans)
}

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

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

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

.nv-mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--c-hdr);
    z-index: 899;
    padding: 18px;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .5);
    border-top: 1px solid var(--c-border);
    max-height: calc(100vh - 64px);
    overflow-y: auto
}

.nv-mobile-menu.open {
    display: flex
}

.nv-mobile-menu a {
    color: #c5d4e0;
    font-size: .92rem;
    font-weight: 500;
    padding: 11px 14px;
    border-radius: 6px;
    transition: background var(--trans)
}

.nv-mobile-menu a:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff
}

.nv-mobile-menu .nv-mobile-btns {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 10px;
    margin-top: 8px
}

.nv-hero {
    position: relative;
    overflow: hidden;
    background: #1a2430
}

.nv-slider {
    position: relative;
    width: 100%;
    height: 520px
}

.nv-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s ease;
    display: flex;
    align-items: center;
    justify-content: center
}

.nv-slide.active {
    opacity: 1;
    z-index: 2
}

.nv-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0
}

.nv-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 49, 63, .85) 0%, rgba(37, 49, 63, .45) 60%, transparent 100%);
    z-index: 1
}

.nv-slide-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 0 50px;
    max-width: 600px;
    animation: slideIn .7s ease
}

@keyframes slideIn {
    from {
        transform: translateX(-30px);
        opacity: 0
    }
    to {
        transform: translateX(0);
        opacity: 1
    }
}

.nv-slide-content h1, .nv-slide-content .nv-slide-h {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .5)
}

.nv-slide-content p {
    font-size: 1.05rem;
    margin-bottom: 24px;
    max-width: 480px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
}

.nv-slide-badge {
    display: inline-block;
    background: var(--c-btn-reg);
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: .5px
}

.nv-slider-nav {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
    z-index: 5
}

.nv-slider-nav button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .5);
    background: transparent;
    cursor: pointer;
    transition: all var(--trans);
    padding: 0
}

.nv-slider-nav button.active {
    background: #fff;
    border-color: #fff;
    width: 26px;
    border-radius: 5px
}

.nv-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(37, 49, 63, .7);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--trans)
}

.nv-slider-arrow:hover {
    background: rgba(168, 41, 41, .7)
}

.nv-slider-arrow.prev {
    left: 16px
}

.nv-slider-arrow.next {
    right: 16px
}

.nv-section {
    padding: 56px 0
}

.nv-section-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 14px
}

.nv-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 54px;
    height: 3px;
    background: var(--c-btn-reg);
    border-radius: 2px
}

.nv-section-sub {
    color: var(--c-text-muted);
    font-size: .95rem;
    margin-bottom: 32px
}

.nv-block {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 28px;
    transition: box-shadow var(--trans)
}

.nv-block:hover {
    box-shadow: 0 6px 32px rgba(0, 0, 0, .25)
}

.nv-block-alt {
    background: rgba(168, 41, 41, .07);
    border-color: rgba(168, 41, 41, .2)
}

.nv-block-dark {
    background: rgba(0, 0, 0, .2);
    border-color: #2e3f51
}

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

.nv-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 420px
}

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

.nv-table tr:last-child {
    border-bottom: none
}

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

.nv-table td {
    padding: 13px 16px;
    font-size: .92rem;
    vertical-align: top;
    text-align: left
}

.nv-table td:first-child {
    color: var(--c-text-muted);
    font-weight: 500;
    width: 42%;
    min-width: 160px
}

.nv-table td:last-child {
    color: #e8ecf0;
    font-weight: 400
}

.nv-table-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(39, 174, 96, .15);
    color: #27ae60;
    border: 1px solid rgba(39, 174, 96, .3);
    padding: 2px 10px;
    border-radius: 14px;
    font-size: .8rem;
    font-weight: 600
}

.nv-table-badge.red {
    background: rgba(168, 41, 41, .15);
    color: #e55a5a;
    border-color: rgba(168, 41, 41, .3)
}

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

.nv-screenshot-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--c-border);
    cursor: pointer;
    transition: transform var(--trans), box-shadow var(--trans)
}

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

.nv-screenshot-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block
}

.nv-screenshot-cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(37, 49, 63, .9));
    padding: 12px 14px;
    font-size: .82rem;
    color: #c5d4e0;
    font-weight: 500
}

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

.nv-app-btns {
    display: grid;
    grid-template-columns:1fr;
    gap: 12px;
    margin-top: 20px
}

.nv-app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid var(--c-border);
    background: rgba(255, 255, 255, .05);
    color: #e8ecf0;
    font-size: .92rem;
    font-weight: 600;
    transition: all var(--trans);
    text-decoration: none
}

.nv-app-btn:hover {
    background: rgba(168, 41, 41, .15);
    border-color: rgba(168, 41, 41, .4);
    color: #fff
}

.nv-app-btn svg, .nv-app-btn .nv-app-ico {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center
}

.nv-app-btn-label {
    line-height: 1.2
}

.nv-app-btn-label small {
    display: block;
    font-size: .73rem;
    color: var(--c-text-muted);
    font-weight: 400
}

.nv-video-wrap {
    position: relative;
    padding-top: 56.25%;
    border-radius: 10px;
    overflow: hidden;
    background: #111;
    border: 1px solid var(--c-border)
}

.nv-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.nv-slot-wrap {
    text-align: center
}

.nv-slot-machine {
    display: inline-flex;
    gap: 12px;
    background: rgba(0, 0, 0, .3);
    border: 2px solid var(--c-border);
    border-radius: 14px;
    padding: 28px 32px;
    margin: 0 auto 24px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, .4)
}

.nv-reel {
    width: 80px;
    height: 100px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--c-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    overflow: hidden;
    position: relative;
    transition: all var(--trans)
}

.nv-reel-inner {
    transition: transform .6s cubic-bezier(.25, .46, .45, .94)
}

.nv-reel-spinning {
    animation: reelSpin .12s linear infinite
}

@keyframes reelSpin {
    0% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-10px)
    }
    100% {
        transform: translateY(0)
    }
}

.nv-slot-spin-btn {
    background: var(--c-btn-reg);
    color: #fff;
    border: none;
    padding: 14px 48px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--trans);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif
}

.nv-slot-spin-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(168, 41, 41, .45)
}

.nv-slot-spin-btn:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none
}

.nv-slot-result {
    min-height: 68px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 10px;
    padding: 16px;
    transition: all var(--trans)
}

.nv-slot-win {
    background: rgba(39, 174, 96, .12);
    border: 1px solid rgba(39, 174, 96, .3);
    animation: fadeIn .5s ease
}

.nv-slot-lose {
    background: rgba(168, 41, 41, .1);
    border: 1px solid rgba(168, 41, 41, .25);
    animation: fadeIn .5s ease
}

.nv-slot-win-text {
    color: #2ecc71;
    font-size: 1.15rem;
    font-weight: 700
}

.nv-slot-lose-text {
    color: #e55a5a;
    font-size: 1rem;
    font-weight: 500
}

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

.nv-faq {
    display: grid;
    gap: 10px
}

.nv-faq-item {
    border: 1px solid var(--c-border);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, .03);
    transition: border-color var(--trans)
}

.nv-faq-item.open {
    border-color: rgba(168, 41, 41, .4)
}

.nv-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    font-size: .97rem;
    font-weight: 600;
    color: #e8ecf0;
    user-select: none;
    transition: background var(--trans)
}

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

.nv-faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 1px solid var(--c-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: var(--c-text-muted);
    transition: all var(--trans)
}

.nv-faq-item.open .nv-faq-icon {
    background: var(--c-btn-reg);
    border-color: var(--c-btn-reg);
    color: #fff;
    transform: rotate(45deg)
}

.nv-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s ease, padding .3s ease
}

.nv-faq-a-inner {
    padding: 0 22px 18px;
    color: var(--c-text-muted);
    font-size: .92rem;
    line-height: 1.7
}

.nv-faq-item.open .nv-faq-a {
    max-height: 400px
}

.nv-footer {
    background: var(--c-hdr);
    border-top: 1px solid var(--c-border);
    padding: 44px 0 24px
}

.nv-footer-grid {
    display: grid;
    grid-template-columns:200px 1fr 1fr;
    gap: 32px;
    margin-bottom: 36px
}

.nv-footer-logo {
    margin-bottom: 16px
}

.nv-footer-logo img {
    height: 36px
}

.nv-footer-desc {
    font-size: .82rem;
    color: var(--c-text-muted);
    line-height: 1.6
}

.nv-footer-col h5 {
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .6px
}

.nv-footer-col ul li {
    margin-bottom: 8px
}

.nv-footer-col ul a {
    font-size: .84rem;
    color: var(--c-text-muted);
    transition: color var(--trans)
}

.nv-footer-col ul a:hover {
    color: #fff
}

.nv-footer-logos {
    margin: 28px 0 20px
}

.nv-footer-logos h6 {
    font-size: .78rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-bottom: 12px
}

.nv-logo-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center
}

.nv-logo-pill {
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: .78rem;
    font-weight: 600;
    color: #a0b4c5;
    white-space: nowrap;
    transition: all var(--trans)
}

.nv-logo-pill:hover {
    background: rgba(255, 255, 255, .12);
    color: #e8ecf0
}

.nv-footer-bottom {
    border-top: 1px solid var(--c-border);
    padding-top: 20px;
    display: grid;
    grid-template-columns:1fr auto;
    align-items: center;
    gap: 16px
}

.nv-footer-copy {
    font-size: .78rem;
    color: var(--c-text-muted);
    line-height: 1.6
}

.nv-footer-age {
    background: var(--c-btn-reg);
    color: #fff;
    font-weight: 700;
    font-size: .75rem;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    flex-shrink: 0
}

.nv-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    background: linear-gradient(135deg, #1a2430, #25313F);
    border-top: 2px solid var(--c-btn-reg);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .45)
}

.nv-widget-text {
    font-size: .87rem;
    font-weight: 600;
    color: #e8ecf0;
    flex: 1;
    min-width: 0
}

.nv-widget-text span {
    color: var(--c-gold);
    font-weight: 700
}

.nv-widget-close {
    background: none;
    border: none;
    color: var(--c-text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px 8px;
    flex-shrink: 0;
    transition: color var(--trans)
}

.nv-widget-close:hover {
    color: #fff
}

body.widget-closed .nv-widget {
    display: none
}

body.has-widget {
    padding-bottom: 62px
}

.nv-author-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--c-border);
    border-radius: 10px;
    padding: 18px 22px;
    margin-top: 24px
}

.nv-author-ava {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-btn-reg), #2c3e50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.nv-author-info {
    flex: 1
}

.nv-author-name {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px
}

.nv-author-bio {
    font-size: .8rem;
    color: var(--c-text-muted);
    line-height: 1.5
}

.nv-author-link {
    font-size: .8rem;
    color: var(--c-gold);
    font-weight: 500
}

.nv-review-content {
    font-size: .94rem;
    line-height: 1.75;
    color: #c5d4e0
}

.nv-review-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 24px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--c-border)
}

.nv-review-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #e8ecf0;
    margin: 20px 0 10px
}

.nv-review-content p {
    margin-bottom: 14px
}

.nv-review-content ul, .nv-review-content ol {
    margin: 12px 0 16px 20px;
    padding-left: 8px
}

.nv-review-content ul li {
    list-style: disc;
    margin-bottom: 6px
}

.nv-review-content ol li {
    list-style: decimal;
    margin-bottom: 6px
}

.nv-review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    min-width: 320px
}

.nv-review-content table th {
    background: rgba(168, 41, 41, .15);
    color: #e8ecf0;
    font-weight: 600;
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--c-border);
    font-size: .88rem
}

.nv-review-content table td {
    padding: 10px 14px;
    border: 1px solid var(--c-border);
    font-size: .88rem;
    vertical-align: top
}

.nv-review-content table tr:hover td {
    background: rgba(255, 255, 255, .03)
}

.nv-review-content strong, .nv-review-content b {
    color: #e8ecf0;
    font-weight: 600
}

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

.nv-review-content blockquote {
    border-left: 3px solid var(--c-btn-reg);
    padding: 12px 18px;
    background: rgba(168, 41, 41, .07);
    margin: 16px 0;
    font-style: italic;
    color: #b0c4d4;
    border-radius: 0 6px 6px 0
}

.nv-rating-stars {
    color: #f0b429;
    font-size: 1.2rem;
    letter-spacing: 2px
}

.nv-rating-val {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1
}

.nv-rating-label {
    font-size: .8rem;
    color: var(--c-text-muted)
}

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

.nv-pros, .nv-cons {
    border-radius: 10px;
    padding: 18px;
    border: 1px solid
}

.nv-pros {
    background: rgba(39, 174, 96, .07);
    border-color: rgba(39, 174, 96, .2)
}

.nv-cons {
    background: rgba(168, 41, 41, .07);
    border-color: rgba(168, 41, 41, .2)
}

.nv-pros h4 {
    color: #27ae60;
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.nv-cons h4 {
    color: #e55a5a;
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.nv-pros li, .nv-cons li {
    font-size: .84rem;
    color: var(--c-text-muted);
    margin-bottom: 7px;
    display: flex;
    gap: 7px;
    align-items: flex-start
}

.nv-pros li::before {
    content: '✓';
    color: #27ae60;
    font-weight: 700;
    flex-shrink: 0
}

.nv-cons li::before {
    content: '✗';
    color: #e55a5a;
    font-weight: 700;
    flex-shrink: 0
}

.zp3m7-unused {
    display: none;
    visibility: hidden;
    opacity: 0;
    pointer-events: none
}

.wb5t6-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0)
}

.yd3s8-noop {
}

@media (max-width: 1024px) {
    .nv-footer-grid {
        grid-template-columns:1fr 1fr
    }

    .nv-footer-grid > :first-child {
        grid-column: 1/-1
    }
}

@media (max-width: 768px) {
    .nv-hdr-inner {
        grid-template-columns:auto auto;
        gap: 10px
    }

    .nv-nav {
        display: none
    }

    .nv-burger {
        display: flex
    }

    .nv-slider {
        height: 400px
    }

    .nv-slide-content {
        padding: 0 28px
    }

    .nv-slide-content h1, .nv-slide-content .nv-slide-h {
        font-size: 1.6rem
    }

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

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

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

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

    .nv-footer-bottom {
        grid-template-columns:1fr;
        text-align: center
    }

    .nv-section {
        padding: 36px 0
    }

    .nv-slot-machine {
        padding: 18px 16px;
        gap: 8px
    }

    .nv-reel {
        width: 66px;
        height: 84px;
        font-size: 2rem
    }

    .nv-widget {
        flex-wrap: wrap;
        gap: 8px
    }

    .nv-hdr-right .nv-online {
        display: none
    }

    .nv-online-mobile {
        display: flex !important
    }
}

@media (max-width: 480px) {
    .nv-slider {
        height: 320px
    }

    .nv-slide-content h1, .nv-slide-content .nv-slide-h {
        font-size: 1.3rem
    }

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

    .nv-slot-machine {
        gap: 6px
    }

    .nv-reel {
        width: 56px;
        height: 74px;
        font-size: 1.7rem
    }
}

.nv-online-mobile {
    display: none
}

@media (max-width: 768px) {
    #app {
        padding: 34px 0;
    }

    #app .nv-section-title {
        font-size: 1.35rem;
        line-height: 1.25;
        text-align: center;
        padding-bottom: 12px;
        margin-bottom: 8px;
    }

    #app .nv-section-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 48px;
    }

    #app .nv-section-sub {
        max-width: 300px;
        margin: 0 auto 20px;
        text-align: center;
        font-size: .86rem;
        line-height: 1.45;
    }

    #app .nv-block {
        padding: 16px;
        border-radius: 14px;
        margin-bottom: 0;
        background: rgba(255, 255, 255, .035);
    }

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

    #app .nv-table-wrap {
        width: 100%;
        overflow: visible;
    }

    #app .nv-table {
        min-width: 0;
        width: 100%;
        display: block;
    }

    #app .nv-table tbody {
        display: grid;
        gap: 8px;
    }

    #app .nv-table tr {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3px;
        padding: 10px 12px;
        border: 1px solid var(--c-border);
        border-radius: 10px;
        background: rgba(0, 0, 0, .12);
    }

    #app .nv-table td {
        display: block;
        width: 100%;
        min-width: 0;
        padding: 0;
        font-size: .84rem;
        line-height: 1.35;
    }

    #app .nv-table td:first-child {
        width: 100%;
        min-width: 0;
        font-size: .72rem;
        text-transform: uppercase;
        letter-spacing: .04em;
        color: var(--c-text-muted);
    }

    #app .nv-table td:last-child {
        font-size: .9rem;
        color: #fff;
        font-weight: 600;
    }

    #app .nv-app-grid > div:last-child > p {
        margin-bottom: 14px !important;
        font-size: .86rem !important;
        line-height: 1.6 !important;
        text-align: center;
    }

    #app .nv-app-btns {
        gap: 10px;
        margin-top: 0;
    }

    #app .nv-app-btn {
        min-height: 58px;
        padding: 11px 14px;
        border-radius: 12px;
        background: rgba(255, 255, 255, .055);
    }

    #app .nv-app-ico {
        width: 34px;
        height: 34px;
        font-size: 1.45rem;
        border-radius: 10px;
        background: rgba(255, 255, 255, .06);
    }

    #app .nv-app-btn-label {
        font-size: .92rem;
    }

    #app .nv-app-btn-label small {
        font-size: .68rem;
    }
}

@media (max-width: 380px) {
    #app .nv-block {
        padding: 14px 12px;
    }

    #app .nv-section-title {
        font-size: 1.22rem;
    }

    #app .nv-app-btn {
        padding: 10px 12px;
    }
}