:root {
    --clr-bg: #26313F;
    --clr-header: #25313F;
    --clr-btn-dark: #25313F;
    --clr-btn-red: #A82929;
    --clr-text: #E8EDF3;
    --clr-text-muted: #9AACBF;
    --clr-border: #3A4A5C;
    --clr-card: #2E3D4F;
    --clr-card2: #1F2D3C;
    --clr-accent: #D4A843;
    --clr-accent2: #4A7FA8;
    --clr-gold: #FFD700;
    --radius: 10px;
    --radius-sm: 6px;
    --fnt-head: 'Montserrat', Arial, sans-serif;
    --fnt-body: 'Roboto', Arial, sans-serif;
    --trans: 0.25s ease
}

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

html {
    scroll-behavior: smooth;
    background: var(--clr-bg)
}

body {
    font-family: var(--fnt-body);
    background: var(--clr-bg);
    color: var(--clr-text);
    font-size: 16px;
    line-height: 1.6;
    min-height: 100vh
}

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

a {
    color: var(--clr-accent);
    text-decoration: none;
    transition: color var(--trans)
}

a:hover {
    color: #fff
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--fnt-head);
    font-weight: 700;
    line-height: 1.3;
    color: #fff
}

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

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

.nv-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 70px
}

.nv-logo {
    flex-shrink: 0
}

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

.nv-header__nav {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 4px
}

.nv-header__nav a {
    color: var(--clr-text-muted);
    font-size: .85rem;
    font-family: var(--fnt-head);
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--trans);
    white-space: nowrap
}

.nv-header__nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .07)
}

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

.nv-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--clr-text-muted);
    white-space: nowrap
}

.nv-online__dot {
    width: 8px;
    height: 8px;
    background: #3EC96F;
    border-radius: 50%;
    animation: nv-pulse 2s infinite
}

@keyframes nv-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(62, 201, 111, .5)
    }
    50% {
        box-shadow: 0 0 0 6px rgba(62, 201, 111, 0)
    }
}

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

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

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

.nv-burger.is-active span:nth-child(2) {
    opacity: 0
}

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

.nv-mob-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--clr-header);
    border-bottom: 1px solid var(--clr-border);
    padding: 16px 20px;
    flex-direction: column;
    gap: 8px;
    z-index: 999
}

.nv-mob-nav.is-open {
    display: flex
}

.nv-mob-nav a {
    color: var(--clr-text-muted);
    font-family: var(--fnt-head);
    font-size: .9rem;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--trans);
    border: 1px solid transparent
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--fnt-head);
    font-weight: 600;
    font-size: .83rem;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--trans);
    white-space: nowrap;
    text-decoration: none
}

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

.btn:active {
    transform: translateY(0)
}

.btn--login {
    background: var(--clr-btn-dark);
    color: #fff;
    border: 1px solid var(--clr-border)
}

.btn--login:hover {
    background: #2e3f52;
    color: #fff
}

.btn--signup {
    background: var(--clr-btn-red);
    color: #fff
}

.btn--signup:hover {
    background: #c42f2f;
    color: #fff
}

.btn--hero {
    background: var(--clr-btn-red);
    color: #fff;
    font-size: 1rem;
    padding: 14px 36px;
    border-radius: var(--radius)
}

.btn--hero:hover {
    background: #c42f2f;
    box-shadow: 0 6px 24px rgba(168, 41, 41, .5);
    color: #fff
}

.btn--bonus-widget {
    background: var(--clr-btn-red);
    color: #fff;
    font-size: .9rem;
    padding: 10px 22px;
    border-radius: var(--radius)
}

.btn--bonus-widget:hover {
    background: #c42f2f;
    color: #fff
}

.btn--app {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1px solid var(--clr-border);
    padding: 10px 20px
}

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

.btn--slot {
    background: linear-gradient(135deg, #D4A843, #c9952c);
    color: #1a1a1a;
    font-size: 1rem;
    padding: 12px 32px;
    border-radius: var(--radius);
    font-weight: 700
}

.btn--slot:hover {
    box-shadow: 0 6px 20px rgba(212, 168, 67, .4);
    color: #1a1a1a
}

.btn--win {
    background: linear-gradient(135deg, #3EC96F, #2aa855);
    color: #fff;
    font-size: 1rem;
    padding: 12px 32px;
    border-radius: var(--radius);
    display: none;
    margin-top: 12px
}

.btn--win.is-visible {
    display: inline-flex
}

.btn--review {
    background: transparent;
    color: var(--clr-accent);
    border: 1px solid var(--clr-accent);
    padding: 10px 24px;
    margin-top: 8px
}

.btn--review:hover {
    background: var(--clr-accent);
    color: #1a1a1a
}

.nv-hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: var(--clr-card2)
}

.nv-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('/nivabet-banner.png');
    background-size: cover;
    background-position: center;
    filter: brightness(.45)
}

.nv-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(37, 49, 63, .85) 0%, rgba(37, 49, 63, .2) 100%)
}

.nv-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns:1fr;
    gap: 24px;
    max-width: 680px
}

.nv-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(168, 41, 41, .25);
    border: 1px solid rgba(168, 41, 41, .5);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: .8rem;
    font-family: var(--fnt-head);
    font-weight: 600;
    color: #ff8a8a;
    width: fit-content
}

.nv-hero__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .5)
}

.nv-hero__title span {
    color: var(--clr-accent)
}

.nv-hero__text {
    color: var(--clr-text-muted);
    font-size: 1.05rem;
    max-width: 520px
}

.nv-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center
}

.nv-hero__bonus {
    font-size: .85rem;
    color: var(--clr-text-muted)
}

.nv-hero__bonus strong {
    color: var(--clr-accent)
}

.nv-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    gap: 40px
}

.nv-section {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 28px;
    animation: nv-fadein .5s ease both
}

@keyframes nv-fadein {
    from {
        opacity: 0;
        transform: translateY(20px)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.nv-section--alt {
    background: var(--clr-card2)
}

.nv-section__title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--clr-border)
}

.nv-section__title svg {
    flex-shrink: 0
}

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

.nv-tbl {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem
}

.nv-tbl th, .nv-tbl td {
    padding: 11px 16px;
    text-align: left;
    border: 1px solid var(--clr-border);
    vertical-align: top
}

.nv-tbl th {
    background: var(--clr-card2);
    color: var(--clr-text-muted);
    font-family: var(--fnt-head);
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap
}

.nv-tbl td:first-child {
    color: var(--clr-text-muted);
    font-weight: 500;
    white-space: nowrap;
    min-width: 180px
}

.nv-tbl td:last-child {
    color: #fff
}

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

.nv-badge {
    display: inline-block;
    background: rgba(62, 201, 111, .15);
    border: 1px solid rgba(62, 201, 111, .35);
    color: #3EC96F;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: .78rem;
    font-weight: 600
}

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

.nv-badge--gold {
    background: rgba(212, 168, 67, .15);
    border-color: rgba(212, 168, 67, .35);
    color: var(--clr-accent)
}

.nv-winners {
    display: grid;
    gap: 0
}

.nv-winners__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    transition: background var(--trans)
}

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

.nv-winners__item:not(:last-child) {
    border-bottom: 1px solid var(--clr-border)
}

.nv-winners__rank {
    font-size: .8rem;
    font-family: var(--fnt-head);
    font-weight: 700;
    color: var(--clr-text-muted);
    min-width: 28px
}

.nv-winners__rank--gold {
    color: var(--clr-gold)
}

.nv-winners__rank--silver {
    color: #C0C0C0
}

.nv-winners__rank--bronze {
    color: #CD7F32
}

.nv-winners__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-accent2), var(--clr-btn-red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    flex-shrink: 0;
    font-family: var(--fnt-head)
}

.nv-winners__name {
    flex: 1;
    font-size: .9rem;
    font-weight: 500
}

.nv-winners__amount {
    font-family: var(--fnt-head);
    font-weight: 700;
    color: var(--clr-accent);
    font-size: .9rem;
    white-space: nowrap
}

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

.nv-t-card {
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--trans), box-shadow var(--trans)
}

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

.nv-t-card__top {
    background: linear-gradient(135deg, #1a2a38, #2a3f55);
    padding: 20px;
    border-bottom: 1px solid var(--clr-border)
}

.nv-t-card__name {
    font-family: var(--fnt-head);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px
}

.nv-t-card__desc {
    font-size: .83rem;
    color: var(--clr-text-muted);
    line-height: 1.5
}

.nv-t-card__body {
    padding: 16px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.nv-t-card__prize {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.nv-t-card__prize-label {
    font-size: .78rem;
    color: var(--clr-text-muted);
    font-family: var(--fnt-head);
    text-transform: uppercase;
    letter-spacing: .5px
}

.nv-t-card__prize-val {
    font-family: var(--fnt-head);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--clr-accent)
}

.nv-t-card__timer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: var(--clr-text-muted)
}

.nv-timer {
    display: flex;
    gap: 6px
}

.nv-timer__unit {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: 4px;
    padding: 4px 8px;
    font-family: var(--fnt-head);
    font-weight: 700;
    font-size: .9rem;
    color: #fff;
    min-width: 36px;
    text-align: center
}

.nv-timer__sep {
    color: var(--clr-text-muted);
    align-self: center;
    font-weight: 700
}

.nv-t-card__join {
    margin-top: auto;
    padding-top: 12px
}

.nv-t-card__join .btn {
    width: 100%
}

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

.nv-app-btns {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.nv-app-btns .btn--app {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left
}

.nv-app-btns .btn--app svg {
    flex-shrink: 0
}

.nv-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0
}

.nv-slot__reels {
    display: flex;
    gap: 8px;
    justify-content: center
}

.nv-reel {
    width: 88px;
    height: 100px;
    background: var(--clr-card2);
    border: 2px solid var(--clr-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    overflow: hidden;
    position: relative;
    transition: border-color var(--trans)
}

.nv-reel.is-spinning {
    border-color: var(--clr-accent);
    animation: nv-reel-shake .15s infinite
}

@keyframes nv-reel-shake {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-3px)
    }
}

.nv-slot__result {
    font-family: var(--fnt-head);
    font-size: 1.1rem;
    font-weight: 700;
    min-height: 28px;
    text-align: center;
    transition: all var(--trans)
}

.nv-slot__result--win {
    color: #3EC96F;
    animation: nv-winpop .4s ease
}

.nv-slot__result--lose {
    color: #e85555
}

@keyframes nv-winpop {
    0% {
        transform: scale(.8)
    }
    60% {
        transform: scale(1.1)
    }
    100% {
        transform: scale(1)
    }
}

.nv-slot__credit {
    color: var(--clr-text-muted);
    font-size: .85rem
}

.nv-reviews {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 28px
}

.nv-review-card {
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform var(--trans)
}

.nv-review-card:hover {
    transform: translateY(-3px)
}

.nv-review-card__top {
    display: flex;
    align-items: center;
    gap: 12px
}

.nv-review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0
}

.nv-review-card__meta {
}

.nv-review-card__name {
    font-family: var(--fnt-head);
    font-weight: 600;
    font-size: .9rem;
    color: #fff
}

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

.nv-review-card__stars svg {
    color: var(--clr-gold)
}

.nv-review-card__text {
    font-size: .88rem;
    color: var(--clr-text-muted);
    line-height: 1.6
}

.nv-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 560px
}

.nv-form label {
    font-size: .85rem;
    color: var(--clr-text-muted);
    font-family: var(--fnt-head);
    font-weight: 500;
    margin-bottom: 4px;
    display: block
}

.nv-form__field {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.nv-form input, .nv-form textarea {
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: var(--fnt-body);
    font-size: .9rem;
    padding: 10px 14px;
    width: 100%;
    transition: border-color var(--trans);
    outline: none;
    resize: vertical
}

.nv-form input:focus, .nv-form textarea:focus {
    border-color: var(--clr-accent2)
}

.nv-form textarea {
    min-height: 100px
}

.nv-form__msg {
    display: none;
    background: rgba(62, 201, 111, .12);
    border: 1px solid rgba(62, 201, 111, .35);
    color: #3EC96F;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: .88rem
}

.nv-form__msg.is-visible {
    display: block
}

.nv-footer {
    background: var(--clr-header);
    border-top: 1px solid var(--clr-border);
    padding: 40px 0 20px
}

.nv-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    gap: 32px
}

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

.nv-footer__logo img {
    height: 38px;
    width: auto;
    object-fit: contain
}

.nv-footer__desc {
    font-size: .83rem;
    color: var(--clr-text-muted);
    margin-top: 10px;
    line-height: 1.6
}

.nv-footer__nav-title {
    font-family: var(--fnt-head);
    font-size: .8rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 12px
}

.nv-footer__nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.nv-footer__nav a {
    color: var(--clr-text-muted);
    font-size: .85rem;
    transition: color var(--trans)
}

.nv-footer__nav a:hover {
    color: #fff
}

.nv-footer__logos {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.nv-footer__logos-label {
    font-size: .78rem;
    font-family: var(--fnt-head);
    font-weight: 600;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px
}

.nv-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center
}

.nv-payment-badge, .nv-provider-badge {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: .78rem;
    font-family: var(--fnt-head);
    font-weight: 600;
    color: var(--clr-text-muted);
    transition: all var(--trans)
}

.nv-payment-badge:hover, .nv-provider-badge:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff
}

.nv-footer__bottom {
    border-top: 1px solid var(--clr-border);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    align-items: center
}

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

.nv-footer__legal {
    font-size: .73rem;
    color: rgba(154, 172, 191, .55);
    line-height: 1.6;
    max-width: 700px
}

.nv-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: linear-gradient(90deg, #1a2a38, #1e3040);
    border-top: 2px solid var(--clr-btn-red);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5)
}

.nv-widget__text {
    font-size: .88rem;
    color: var(--clr-text-muted);
    line-height: 1.4
}

.nv-widget__text strong {
    color: #fff;
    display: block;
    font-family: var(--fnt-head);
    font-size: 1rem
}

.nv-widget__close {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    transition: color var(--trans)
}

.nv-widget__close:hover {
    color: #fff
}

.nv-content-body {
    font-size: .95rem;
    line-height: 1.7;
    color: var(--clr-text)
}

.nv-content-body h2 {
    font-size: 1.3rem;
    margin: 24px 0 12px;
    color: #fff
}

.nv-content-body h3 {
    font-size: 1.1rem;
    margin: 18px 0 10px;
    color: #dce8f5
}

.nv-content-body p {
    margin-bottom: 14px;
    color: var(--clr-text-muted)
}

.nv-content-body ul, .nv-content-body ol {
    margin: 0 0 14px 22px;
    color: var(--clr-text-muted)
}

.nv-content-body li {
    margin-bottom: 6px
}

.nv-content-body strong {
    color: #fff
}

.nv-content-body em {
    color: var(--clr-accent)
}

.nv-content-body a {
    color: var(--clr-accent);
    text-decoration: underline
}

.nv-content-body a:hover {
    color: #fff
}

.nv-content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: .88rem
}

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

.nv-content-body table th {
    background: var(--clr-card2);
    color: var(--clr-text-muted);
    font-family: var(--fnt-head);
    font-size: .78rem;
    text-transform: uppercase
}

.nv-content-body blockquote {
    border-left: 3px solid var(--clr-accent2);
    padding: 12px 18px;
    background: rgba(74, 127, 168, .08);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 16px 0;
    color: var(--clr-text-muted);
    font-style: italic
}

.nv-content-body hr {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 20px 0
}

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

.nv-author__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0
}

.nv-author__name {
    font-family: var(--fnt-head);
    font-weight: 700;
    font-size: .95rem;
    color: #fff
}

.nv-author__role {
    font-size: .8rem;
    color: var(--clr-text-muted);
    margin-top: 2px
}

.nv-author__link {
    font-size: .78rem;
    color: var(--clr-accent2)
}

.nv-breadcrumb {
    font-size: .8rem;
    color: var(--clr-text-muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px
}

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

.nv-breadcrumb a:hover {
    color: #fff
}

.nv-breadcrumb span {
    color: rgba(154, 172, 191, .5)
}

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

.nv-faq__item {
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    overflow: hidden
}

.nv-faq__q {
    width: 100%;
    background: var(--clr-card2);
    border: none;
    color: #fff;
    font-family: var(--fnt-head);
    font-size: .9rem;
    font-weight: 600;
    padding: 14px 18px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: background var(--trans)
}

.nv-faq__q:hover {
    background: rgba(255, 255, 255, .07)
}

.nv-faq__q svg {
    flex-shrink: 0;
    transition: transform var(--trans)
}

.nv-faq__item.is-open .nv-faq__q svg {
    transform: rotate(180deg)
}

.nv-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease
}

.nv-faq__item.is-open .nv-faq__a {
    max-height: 400px
}

.nv-faq__a-inner {
    padding: 14px 18px;
    font-size: .88rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
    border-top: 1px solid var(--clr-border)
}

.nv-2col {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 24px
}

.nv-divider {
    height: 1px;
    background: var(--clr-border);
    margin: 8px 0
}

.wp-block-hidden {
    display: none !important
}

.elementor-widget-wrap {
}

.entry-content {
}

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

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

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

    .nv-2col {
        grid-template-columns:1fr
    }
}

@media (max-width: 768px) {
    .nv-header__nav {
        display: none
    }

    .nv-burger {
        display: flex
    }

    .nv-online {
        display: none
    }

    .nv-hero__inner {
        padding: 40px 20px
    }

    .nv-tournaments {
        grid-template-columns:1fr;
        display: grid
    }

    .nv-t-card {
        display: flex
    }

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

    .nv-footer__bottom {
        flex-direction: column;
        text-align: center
    }

    .nv-widget {
        flex-wrap: wrap
    }

    .nv-widget__text {
        font-size: .8rem
    }

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

    .nv-reel {
        width: 72px;
        height: 84px;
        font-size: 2.5rem
    }

    .nv-header__actions .btn {
        font-size: .75rem;
        padding: 7px 12px
    }
}

@media (max-width: 480px) {
    .nv-reel {
        width: 60px;
        height: 74px;
        font-size: 2rem
    }

    .nv-hero__actions {
        flex-direction: column
    }

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

    .nv-slot__reels {
        gap: 6px
    }
}

.nv-scroll-hint {
    text-align: center;
    font-size: .75rem;
    color: rgba(154, 172, 191, .4);
    margin-top: 6px;
    display: none
}

@media (max-width: 768px) {
    .nv-scroll-hint {
        display: block
    }
}

.js-nv-anim {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease
}

.js-nv-anim.is-visible {
    opacity: 1;
    transform: none
}

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

.nv-wrap,
.nv-main,
.nv-section,
.nv-content-body,
.lmsnbfvd {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.lmsnbfvd * {
    max-width: 100%;
    box-sizing: border-box;
}

.lmsnbfvd a,
.lmsnbfvd p,
.lmsnbfvd span,
.lmsnbfvd li,
.lmsnbfvd td,
.lmsnbfvd h1,
.lmsnbfvd h2,
.lmsnbfvd h3 {
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .nv-main {
        padding-left: 12px;
        padding-right: 12px;
    }

    .nv-section {
        padding: 20px 14px;
    }

    .lmsnbfvd {
        width: 100%;
        margin: 0;
        padding: 18px 0;
    }
}