:root {
    --c-bg: #21293A;
    --c-header: #1E2534;
    --c-footer: #1E2534;
    --c-accent: #00E0FF;
    --c-accent-dark: #00b8d4;
    --c-btn-reg: #313532;
    --c-btn-reg-hover: #424840;
    --c-text: #e8edf5;
    --c-text-muted: #8a9ab5;
    --c-border: rgba(0, 224, 255, 0.15);
    --c-card: #1a2132;
    --c-card-alt: #1d2840;
    --radius: 10px;
    --radius-sm: 6px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-neon: 0 0 18px rgba(0, 224, 255, 0.25);
    --font-main: 'Montserrat', 'Inter', Arial, sans-serif;
    --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-main);
    background: var(--c-bg);
    color: var(--c-text);
    font-size: 15px;
    line-height: 1.65;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

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

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

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

.x7k2m {
    display: none;
}

.wp-block-group {
    display: block;
}

.entry-content {
    display: block;
}

.elementor-widget {
    display: block;
}

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

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

.nc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    outline: none;
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.nc-btn--login {
    background: transparent;
    color: var(--c-accent);
    border: 1.5px solid var(--c-accent);
}

.nc-btn--login:hover {
    background: var(--c-accent);
    color: #0a0f1a;
    box-shadow: var(--shadow-neon);
}

.nc-btn--reg {
    background: var(--c-btn-reg);
    color: var(--c-text);
    border: 1.5px solid transparent;
}

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

.nc-btn--accent {
    background: var(--c-accent);
    color: #0a0f1a;
    font-weight: 700;
    border: none;
}

.nc-btn--accent:hover {
    background: var(--c-accent-dark);
    box-shadow: var(--shadow-neon);
    transform: translateY(-1px);
    color: #0a0f1a;
}

.nc-btn--lg {
    padding: 13px 36px;
    font-size: 15px;
    border-radius: var(--radius);
}

.nc-btn--widget {
    background: var(--c-accent);
    color: #0a0f1a;
    font-weight: 700;
    font-size: 14px;
    padding: 11px 26px;
    border-radius: var(--radius-sm);
    border: none;
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.nc-btn--widget:hover {
    background: var(--c-accent-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-neon);
    color: #0a0f1a;
}

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

.nc-hdr__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    height: 64px;
}

.nc-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}

.nc-logo img {
    height: 38px;
    width: auto;
    border-radius: 4px;
}

.nc-logo__text {
    font-size: 20px;
    font-weight: 800;
    color: var(--c-accent);
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.nc-hdr__nav a {
    color: var(--c-text-muted);
    font-size: 13.5px;
    font-weight: 500;
    padding: 6px 11px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    text-decoration: none;
}

.nc-hdr__nav a:hover {
    color: var(--c-accent);
    background: rgba(0, 224, 255, 0.07);
}

.nc-hdr__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nc-hdr__online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--c-text-muted);
    margin-right: 6px;
}

.nc-hdr__online-dot {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 6px #2ecc71;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

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

.nc-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: all var(--transition);
}

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

.nc-burger.is-open span:nth-child(2) {
    opacity: 0;
}

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

.nc-mob-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: var(--c-header);
    padding: 12px 20px 18px;
    border-top: 1px solid var(--c-border);
    animation: slideDown 0.22s ease;
}

.nc-mob-menu.is-open {
    display: flex;
}

.nc-mob-menu a {
    color: var(--c-text-muted);
    font-size: 14px;
    font-weight: 500;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition);
}

.nc-mob-menu a:hover {
    color: var(--c-accent);
    background: rgba(0, 224, 255, 0.07);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nc-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.nc-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('/banner-neonclub.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.42);
    z-index: 0;
}

.nc-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 22, 38, 0.72) 0%, rgba(0, 224, 255, 0.07) 100%);
    z-index: 1;
}

.nc-hero__content {
    position: relative;
    z-index: 2;
    padding: 60px 20px;
    max-width: 640px;
    animation: fadeUp 0.6s ease both;
}

.nc-hero__eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 14px;
}

.nc-hero__title {
    font-size: clamp(26px, 5vw, 46px);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 16px;
    text-wrap: balance;
}

.nc-hero__title span {
    color: var(--c-accent);
}

.nc-hero__desc {
    font-size: 15px;
    color: rgba(232, 237, 245, 0.82);
    margin-bottom: 28px;
    line-height: 1.65;
    max-width: 500px;
}

.nc-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

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

.nc-section {
    padding: 60px 0;
}

.nc-section--alt {
    background: rgba(26, 33, 50, 0.6);
}

.nc-section__title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.nc-section__title::after {
    content: '';
    display: block;
    width: 42px;
    height: 3px;
    background: var(--c-accent);
    border-radius: 3px;
    margin-left: 4px;
}

.nc-section__subtitle {
    color: var(--c-text-muted);
    font-size: 14px;
    margin-bottom: 32px;
}

.nc-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 36px;
    padding: 14px 18px;
    background: var(--c-card);
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
}

.nc-author__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--c-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: #0a0f1a;
    flex-shrink: 0;
}

.nc-author__name {
    font-weight: 700;
    color: #fff;
    font-size: 14px;
}

.nc-author__role {
    font-size: 12px;
    color: var(--c-text-muted);
    line-height: 1.45;
    margin-top: 2px;
}

.nc-author__link {
    font-size: 12px;
    color: var(--c-accent);
    margin-top: 3px;
    display: inline-block;
}

.nc-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.nc-table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    background: var(--c-card);
}

.nc-table tr {
    border-bottom: 1px solid rgba(0, 224, 255, 0.08);
    transition: background var(--transition);
}

.nc-table tr:hover {
    background: rgba(0, 224, 255, 0.05);
}

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

.nc-table td {
    padding: 13px 20px;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
}

.nc-table td:first-child {
    color: var(--c-text-muted);
    font-weight: 600;
    width: 220px;
    border-right: 1px solid rgba(0, 224, 255, 0.08);
}

.nc-table td:last-child {
    color: var(--c-text);
}

.nc-table__badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(0, 224, 255, 0.12);
    color: var(--c-accent);
    border: 1px solid rgba(0, 224, 255, 0.2);
}

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

.nc-screen {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow);
    border: 1px solid var(--c-border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.nc-screen:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-neon);
}

.nc-screen img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.nc-screen__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(14, 22, 38, 0.9) 0%, transparent 100%);
    padding: 18px 14px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text);
}

.nc-screens-mobile {
    display: none;
}

.nc-screens-mobile .nc-sldr {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

.nc-screens-mobile .nc-sldr::-webkit-scrollbar {
    height: 4px;
}

.nc-screens-mobile .nc-sldr::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.nc-screens-mobile .nc-sldr::-webkit-scrollbar-thumb {
    background: var(--c-accent);
    border-radius: 2px;
}

.nc-screens-mobile .nc-screen {
    flex: 0 0 80vw;
    scroll-snap-align: start;
}

.nc-winners {
    display: grid;
    gap: 8px;
}

.nc-winner {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 11px 18px;
    background: var(--c-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--c-border);
    transition: background var(--transition), transform var(--transition);
    animation: fadeUp 0.4s ease both;
}

.nc-winner:hover {
    background: var(--c-card-alt);
    transform: translateX(4px);
}

.nc-winner__rank {
    font-size: 13px;
    font-weight: 800;
    color: var(--c-text-muted);
    text-align: center;
}

.nc-winner__rank--gold {
    color: #f4c430;
}

.nc-winner__rank--silver {
    color: #c0c0c0;
}

.nc-winner__rank--bronze {
    color: #cd7f32;
}

.nc-winner__info {
    display: flex;
    flex-direction: column;
}

.nc-winner__nick {
    font-size: 14px;
    font-weight: 600;
    color: var(--c-text);
}

.nc-winner__game {
    font-size: 12px;
    color: var(--c-text-muted);
}

.nc-winner__sum {
    font-size: 15px;
    font-weight: 800;
    color: var(--c-accent);
    white-space: nowrap;
}

.nc-slot {
    max-width: 480px;
    margin: 0 auto;
    background: var(--c-card);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow);
}

.nc-slot__title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.nc-slot__reels {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.nc-slot__reel {
    width: 80px;
    height: 96px;
    background: #111827;
    border-radius: 8px;
    border: 2px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    line-height: 1;
    overflow: hidden;
    position: relative;
    transition: border-color var(--transition);
}

.nc-slot__reel.spinning {
    border-color: var(--c-accent);
    box-shadow: 0 0 12px rgba(0, 224, 255, 0.3);
}

.nc-slot__sym {
    display: block;
    transition: transform 0.1s ease;
}

.nc-slot__btn {
    background: var(--c-accent);
    color: #0a0f1a;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: var(--radius-sm);
    padding: 13px 42px;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-main);
}

.nc-slot__btn:hover:not(:disabled) {
    background: var(--c-accent-dark);
    box-shadow: var(--shadow-neon);
    transform: translateY(-1px);
}

.nc-slot__btn:disabled {
    opacity: 0.6;
    cursor: default;
}

.nc-slot__result {
    margin-top: 20px;
    padding: 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    display: none;
}

.nc-slot__result.win {
    display: block;
    background: rgba(0, 224, 255, 0.1);
    border: 1px solid rgba(0, 224, 255, 0.3);
    color: var(--c-accent);
}

.nc-slot__result.lose {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.nc-slot__result-title {
    font-size: 17px;
    margin-bottom: 6px;
}

.nc-slot__result-btn {
    margin-top: 12px;
}

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

.nc-review {
    background: var(--c-card);
    border-radius: var(--radius);
    padding: 22px 20px;
    border: 1px solid var(--c-border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.nc-review:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon);
}

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

.nc-review__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    color: #0a0f1a;
    flex-shrink: 0;
}

.nc-review__name {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}

.nc-review__date {
    font-size: 12px;
    color: var(--c-text-muted);
}

.nc-review__stars {
    color: #f4c430;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.nc-review__text {
    font-size: 13.5px;
    color: var(--c-text-muted);
    line-height: 1.65;
}

.nc-review-form {
    background: var(--c-card);
    border-radius: var(--radius);
    padding: 28px 26px;
    border: 1px solid var(--c-border);
    max-width: 560px;
}

.nc-review-form h3 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.nc-form-field {
    margin-bottom: 16px;
}

.nc-form-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text-muted);
    margin-bottom: 7px;
}

.nc-form-field input,
.nc-form-field textarea {
    width: 100%;
    background: #111827;
    border: 1.5px solid rgba(0, 224, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: var(--c-text);
    font-family: var(--font-main);
    font-size: 14px;
    outline: none;
    transition: border-color var(--transition);
    resize: vertical;
}

.nc-form-field input:focus,
.nc-form-field textarea:focus {
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px rgba(0, 224, 255, 0.1);
}

.nc-form-field textarea {
    min-height: 100px;
}

.nc-form-success {
    display: none;
    padding: 14px 18px;
    background: rgba(0, 224, 255, 0.1);
    border: 1px solid rgba(0, 224, 255, 0.3);
    border-radius: var(--radius-sm);
    color: var(--c-accent);
    font-weight: 600;
    font-size: 14px;
    margin-top: 12px;
}

.nc-form-success.is-visible {
    display: block;
    animation: fadeUp 0.3s ease;
}

.nc-faq {
    max-width: 780px;
}

.nc-faq__item {
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
    background: var(--c-card);
}

.nc-faq__q {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 14.5px;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    transition: background var(--transition);
    user-select: none;
}

.nc-faq__q:hover {
    background: rgba(0, 224, 255, 0.05);
}

.nc-faq__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
    color: var(--c-accent);
}

.nc-faq__icon::before,
.nc-faq__icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.nc-faq__icon::before {
    width: 12px;
    height: 2px;
    top: 9px;
    left: 4px;
}

.nc-faq__icon::after {
    width: 2px;
    height: 12px;
    top: 4px;
    left: 9px;
}

.nc-faq__item.is-open .nc-faq__icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.nc-faq__a {
    display: none;
    padding: 0 20px 16px;
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.65;
}

.nc-faq__item.is-open .nc-faq__a {
    display: block;
    animation: fadeUp 0.2s ease;
}

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

.nc-ftr__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    margin-bottom: 36px;
    align-items: start;
}

.nc-ftr__brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nc-ftr__brand-desc {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.65;
    max-width: 240px;
}

.nc-ftr__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
}

.nc-ftr__nav a {
    color: var(--c-text-muted);
    font-size: 13px;
    transition: color var(--transition);
}

.nc-ftr__nav a:hover {
    color: var(--c-accent);
}

.nc-ftr__logos-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--c-text-muted);
    margin-bottom: 12px;
}

.nc-ftr__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.nc-ftr__logo-badge {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    color: var(--c-text-muted);
    letter-spacing: 0.5px;
}

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

.nc-ftr__copy {
    font-size: 12px;
    color: var(--c-text-muted);
}

.nc-ftr__legal {
    font-size: 11.5px;
    color: rgba(138, 154, 181, 0.7);
    max-width: 640px;
    line-height: 1.55;
    text-align: right;
}

.nc-widget {
    position: fixed;
    bottom: 24px;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.nc-widget__inner {
    pointer-events: all;
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--c-header);
    border: 1px solid var(--c-border);
    border-radius: 14px;
    padding: 14px 22px;
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.5), var(--shadow-neon);
    max-width: 540px;
    width: calc(100% - 40px);
    animation: fadeUp 0.5s 0.8s ease both;
}

.nc-widget__text {
    flex: 1;
    min-width: 0;
}

.nc-widget__bonus {
    font-size: 16px;
    font-weight: 800;
    color: var(--c-accent);
    white-space: nowrap;
}

.nc-widget__sub {
    font-size: 12px;
    color: var(--c-text-muted);
}

.nc-widget__close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--c-text-muted);
    font-size: 18px;
    padding: 4px;
    line-height: 1;
    transition: color var(--transition);
    flex-shrink: 0;
}

.nc-widget__close:hover {
    color: var(--c-text);
}

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

.nc-content-block h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.3;
}

.nc-content-block h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--c-accent);
    margin: 24px 0 12px;
}

.nc-content-block h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 20px 0 10px;
}

.nc-content-block p {
    color: var(--c-text-muted);
    font-size: 14.5px;
    line-height: 1.75;
    margin: 0 0 14px;
}

.nc-content-block ul, .nc-content-block ol {
    padding-left: 20px;
    margin: 0 0 14px;
}

.nc-content-block li {
    color: var(--c-text-muted);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 5px;
}

.nc-content-block a {
    color: var(--c-accent);
}

.nc-content-block strong {
    color: var(--c-text);
    font-weight: 600;
}

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

.nc-content-block table th {
    background: rgba(0, 224, 255, 0.1);
    color: var(--c-accent);
    padding: 10px 14px;
    font-size: 13px;
    text-align: left;
    border: 1px solid var(--c-border);
}

.nc-content-block table td {
    padding: 10px 14px;
    font-size: 14px;
    color: var(--c-text-muted);
    border: 1px solid rgba(0, 224, 255, 0.08);
}

.nc-content-block blockquote {
    border-left: 3px solid var(--c-accent);
    padding: 10px 18px;
    background: rgba(0, 224, 255, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 16px 0;
    color: var(--c-text-muted);
    font-style: italic;
    font-size: 14px;
}

.nc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    padding: 14px 0;
    color: var(--c-text-muted);
}

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

.nc-breadcrumb a:hover {
    color: var(--c-accent);
}

.nc-breadcrumb__sep {
    color: rgba(138, 154, 181, 0.4);
}

.nc-breadcrumb__current {
    color: var(--c-accent);
    font-weight: 600;
}

.wp-content-fake {
    display: none;
}

.wpcf7-not-valid-tip {
    display: none;
}

.wpcf7-validation-errors {
    display: none;
}

.elementor-hidden-phone {
}

@media (max-width: 900px) {
    .nc-hdr__nav {
        display: none;
    }

    .nc-burger {
        display: flex;
    }

    .nc-hdr__inner {
        grid-template-columns: auto 1fr auto auto;
    }

    .nc-screens {
        display: none;
    }

    .nc-screens-mobile {
        display: block;
    }

    .nc-ftr__top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .nc-ftr__legal {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .nc-container {
        padding: 0 14px;
    }

    .nc-section {
        padding: 40px 0;
    }

    .nc-hero {
        min-height: 360px;
    }

    .nc-hero__content {
        padding: 40px 0;
    }

    .nc-slot {
        padding: 22px 14px;
    }

    .nc-slot__reel {
        width: 64px;
        height: 80px;
        font-size: 34px;
    }

    .nc-reviews {
        grid-template-columns: 1fr;
    }

    .nc-widget__inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .nc-ftr__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .nc-table td:first-child {
        width: 160px;
    }

    .nc-winner {
        grid-template-columns: 28px 1fr auto;
        gap: 10px;
    }
}

.nc-rating-bar {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nc-rating-bar__star {
    width: 16px;
    height: 16px;
    fill: #f4c430;
}

.nc-rating-num {
    font-weight: 700;
    font-size: 14px;
    color: #f4c430;
    margin-left: 4px;
}

.nc-tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 600;
    gap: 4px;
}

.nc-tag--green {
    background: rgba(46, 204, 113, 0.12);
    color: #2ecc71;
}

.nc-tag--blue {
    background: rgba(0, 224, 255, 0.12);
    color: var(--c-accent);
}

.nc-tag--yellow {
    background: rgba(244, 196, 48, 0.12);
    color: #f4c430;
}

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

.nc-wrap,
main,
.nc-section,
.nc-hero,
.nc-ftr,
.nc-hdr {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

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

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

@media (max-width: 768px) {
    .nc-container {
        max-width: 100%;
        padding-left: 14px;
        padding-right: 14px;
    }

    .nc-hdr__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 56px;
        height: auto;
        gap: 10px;
    }

    .nc-hdr__nav,
    .nc-hdr__online {
        display: none;
    }

    .nc-burger {
        display: flex;
        margin-left: auto;
    }

    .nc-logo img {
        max-width: 100px;
        height: auto;
    }

    .nc-hero {
        min-height: 360px;
        display: flex;
        align-items: center;
    }

    .nc-hero__content {
        width: 100%;
        max-width: 100%;
        padding: 42px 0;
    }

    .nc-hero__title {
        font-size: 26px;
        line-height: 1.18;
        max-width: 100%;
    }

    .nc-hero__desc {
        font-size: 14px;
        line-height: 1.55;
        max-width: 100%;
    }

    .nc-hero__actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .nc-hero__actions .nc-btn {
        width: 100%;
        max-width: 100%;
    }

    .nc-section {
        padding: 38px 0;
    }

    .nc-section__title {
        display: block;
        font-size: 22px;
        line-height: 1.25;
    }

    .nc-section__title::after {
        margin: 10px 0 0;
    }

    .nc-section__subtitle {
        font-size: 13px;
        margin-bottom: 22px;
    }

    .nc-table-wrap {
        overflow: visible;
        box-shadow: none;
    }

    .nc-table {
        min-width: 0;
        width: 100%;
        display: block;
        background: transparent;
    }

    .nc-table tbody,
    .nc-table tr,
    .nc-table td {
        display: block;
        width: 100%;
    }

    .nc-table tr {
        margin-bottom: 10px;
        padding: 12px;
        background: var(--c-card);
        border: 1px solid var(--c-border);
        border-radius: 10px;
    }

    .nc-table td {
        padding: 0;
        border: 0;
        font-size: 13px;
        line-height: 1.45;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .nc-table td:first-child {
        width: 100%;
        margin-bottom: 4px;
        color: var(--c-text-muted);
        font-size: 12px;
        border: 0;
    }

    .nc-screens {
        display: none;
    }

    .nc-screens-mobile {
        display: block;
    }

    .nc-screens-mobile .nc-sldr {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        overflow: visible;
    }

    .nc-screens-mobile .nc-screen {
        flex: none;
        width: 100%;
    }

    .nc-screen img {
        width: 100%;
        height: auto;
        min-height: 140px;
        object-fit: cover;
    }

    .nc-winner {
        grid-template-columns: 28px 1fr;
        align-items: start;
        padding: 12px;
        gap: 10px;
    }

    .nc-winner__sum {
        grid-column: 2;
        font-size: 13px;
        margin-top: 3px;
    }

    .nc-reviews {
        grid-template-columns: 1fr;
    }

    .nc-content-block {
        width: 100%;
        max-width: 100%;
        padding: 20px 14px;
        margin-top: 20px !important;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .nc-content-block table {
        display: block;
        width: 100%;
        overflow-x: auto;
    }

    .nc-ftr__top {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .nc-ftr__nav {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .nc-ftr__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .nc-ftr__legal {
        max-width: 100%;
        text-align: left;
    }
}

@media (max-width: 420px) {
    .nc-container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .nc-hero__title {
        font-size: 23px;
    }

    .nc-hero__desc {
        font-size: 13px;
    }

    .nc-section {
        padding: 32px 0;
    }

    .nc-section__title {
        font-size: 20px;
    }
}