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

:root {
    --bg: #21293A;
    --header-bg: #1E2534;
    --accent: #00E0FF;
    --accent-hover: #00c8e6;
    --btn-reg: #313532;
    --btn-reg-hover: #3e4440;
    --text: #E8EDF5;
    --text-muted: #8A9AB8;
    --border: #2E3A50;
    --card-bg: #1A2135;
    --card-bg2: #1E293B;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-card: 0 2px 16px rgba(0, 224, 255, 0.07);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

h1, h2, h3, h4 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.25;
}

h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--text);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.15rem;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.btn--login {
    background: var(--accent);
    color: #0a1520;
}

.btn--login:hover {
    background: var(--accent-hover);
    color: #0a1520;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 224, 255, 0.35);
}

.btn--signup {
    background: var(--btn-reg);
    color: var(--text);
    border: 1px solid #484d47;
}

.btn--signup:hover {
    background: var(--btn-reg-hover);
    transform: translateY(-1px);
}

.btn--hero {
    background: var(--accent);
    color: #0a1520;
    padding: 14px 36px;
    font-size: 1rem;
    border-radius: var(--radius);
    box-shadow: 0 6px 28px rgba(0, 224, 255, 0.4);
}

.btn--hero:hover {
    background: var(--accent-hover);
    color: #0a1520;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 224, 255, 0.5);
}

.btn--get {
    background: var(--accent);
    color: #0a1520;
    padding: 12px 28px;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    margin-top: 12px;
}

.btn--get:hover {
    background: var(--accent-hover);
    color: #0a1520;
}

.btn--submit {
    background: var(--accent);
    color: #0a1520;
    padding: 12px 32px;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    width: 100%;
}

.btn--submit:hover {
    background: var(--accent-hover);
    color: #0a1520;
}

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

.nc-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nc-header__logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

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

.nc-header__nav a {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: color var(--transition), background var(--transition);
}

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

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

.nc-header__online {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 6px;
}

.nc-header__online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2ecc71;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(46, 204, 113, 0);
    }
}

.nc-header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 6px;
    border-radius: 6px;
}

.nc-header__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

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

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

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

.nc-mobile-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: var(--header-bg);
    border-top: 1px solid var(--border);
    padding: 12px 20px;
}

.nc-mobile-nav a {
    color: var(--text-muted);
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background var(--transition), color var(--transition);
}

.nc-mobile-nav a:hover {
    background: rgba(0, 224, 255, 0.08);
    color: var(--accent);
}

.nc-mobile-nav.is-open {
    display: flex;
}

.nc-hero {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    background: var(--card-bg);
}

.nc-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('/neon-b.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.45);
}

.nc-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 224, 255, 0.12) 0%, rgba(30, 37, 52, 0.85) 60%, rgba(33, 41, 58, 0.95) 100%);
}

.nc-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    gap: 20px;
    max-width: 640px;
}

.nc-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0, 224, 255, 0.12);
    border: 1px solid rgba(0, 224, 255, 0.3);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    width: fit-content;
}

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

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

.nc-hero__desc {
    color: rgba(232, 237, 245, 0.85);
    font-size: 1.05rem;
    line-height: 1.7;
}

.nc-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.nc-hero__bonus {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(0, 224, 255, 0.2);
    border-radius: var(--radius);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
    width: fit-content;
    backdrop-filter: blur(6px);
}

.nc-hero__bonus strong {
    color: var(--accent);
    font-size: 1.2rem;
}

.nc-section {
    padding: 56px 0 0;
    animation: fadeUp 0.6s ease both;
}

.nc-section--first {
    padding-top: 48px;
}

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

.nc-section__title {
    font-size: clamp(1.3rem, 3vw, 1.75rem);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nc-section__title::before {
    content: '';
    display: block;
    width: 4px;
    height: 24px;
    border-radius: 2px;
    background: var(--accent);
}

.nc-info-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
}

.nc-info-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: var(--shadow-card);
}

.nc-info-table tr {
    transition: background var(--transition);
}

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

.nc-info-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.025);
}

.nc-info-table tr:nth-child(even):hover {
    background: rgba(0, 224, 255, 0.04);
}

.nc-info-table td {
    padding: 13px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    text-align: left;
    vertical-align: middle;
}

.nc-info-table td:first-child {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    width: 38%;
    white-space: nowrap;
}

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

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

.nc-info-table .td-accent {
    color: var(--accent);
    font-weight: 600;
}

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

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

.nc-screenshot-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.nc-screenshot-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.nc-screenshot-caption {
    background: var(--card-bg);
    padding: 10px 14px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nc-slider-wrap {
    position: relative;
}

.nc-slider-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}

.nc-slider-track::-webkit-scrollbar {
    display: none;
}

.nc-slider-dots {
    display: none;
    justify-content: center;
    gap: 7px;
    margin-top: 14px;
}

.nc-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: background var(--transition), transform var(--transition);
    cursor: pointer;
}

.nc-slider-dot.is-active {
    background: var(--accent);
    transform: scale(1.25);
}

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

.nc-tournament-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.nc-tournament-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.nc-tournament-card:hover {
    border-color: rgba(0, 224, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.nc-tournament-card__badge {
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    width: fit-content;
}

.nc-tournament-card__badge--active {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
}

.nc-tournament-card__badge--soon {
    background: rgba(241, 196, 15, 0.15);
    color: #f1c40f;
}

.nc-tournament-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
}

.nc-tournament-card__desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
}

.nc-tournament-card__prize {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent);
    font-family: 'Montserrat', sans-serif;
}

.nc-tournament-card__prize span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
    display: block;
}

.nc-tournament-timer {
    display: flex;
    gap: 6px;
    align-items: center;
}

.nc-timer-block {
    background: var(--header-bg);
    border-radius: 6px;
    padding: 5px 9px;
    text-align: center;
    min-width: 42px;
}

.nc-timer-block__num {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Montserrat', sans-serif;
}

.nc-timer-block__label {
    font-size: 0.62rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.nc-timer-sep {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.nc-video-wrap {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    position: relative;
}

.nc-video-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.nc-article-content {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 36px;
}

.nc-article-content h2 {
    font-size: 1.5rem;
    color: var(--text);
    margin: 0 0 16px;
}

.nc-article-content h3 {
    font-size: 1.15rem;
    color: var(--text);
    margin: 24px 0 10px;
}

.nc-article-content p {
    color: rgba(232, 237, 245, 0.85);
    margin-bottom: 14px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.nc-article-content ul, .nc-article-content ol {
    margin: 12px 0 12px 20px;
}

.nc-article-content li {
    color: rgba(232, 237, 245, 0.82);
    margin-bottom: 6px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.nc-article-content ul li {
    list-style: disc;
}

.nc-article-content ol li {
    list-style: decimal;
}

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

.nc-article-content table td, .nc-article-content table th {
    border: 1px solid var(--border);
    padding: 10px 14px;
    font-size: 0.88rem;
}

.nc-article-content table th {
    background: var(--header-bg);
    color: var(--accent);
}

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

.nc-article-author {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--header-bg);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-top: 24px;
    border-left: 3px solid var(--accent);
}

.nc-article-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.nc-article-author__name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
}

.nc-article-author__bio {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 3px;
}

.nc-article-author__link {
    font-size: 0.78rem;
    color: var(--accent);
}

.nc-wheel-wrap {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.nc-wheel-title {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
}

.nc-wheel-subtitle {
    color: var(--text-muted);
    text-align: center;
    font-size: 0.9rem;
}

.nc-wheel-canvas-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nc-wheel-pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 24px solid var(--accent);
    filter: drop-shadow(0 2px 6px rgba(0, 224, 255, 0.6));
    z-index: 2;
}

#ncWheelCanvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(0, 224, 255, 0.2);
}

.nc-wheel-result {
    text-align: center;
    padding: 20px;
    background: rgba(0, 224, 255, 0.08);
    border: 1px solid rgba(0, 224, 255, 0.25);
    border-radius: var(--radius);
    display: none;
    max-width: 360px;
}

.nc-wheel-result.is-visible {
    display: block;
    animation: fadeUp 0.4s ease;
}

.nc-wheel-result__icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.nc-wheel-result__text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.nc-wheel-result__sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.nc-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.nc-review-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    transition: border-color var(--transition), transform var(--transition);
}

.nc-review-card:hover {
    border-color: rgba(0, 224, 255, 0.25);
    transform: translateY(-2px);
}

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

.nc-review-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.nc-review-card__name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
}

.nc-review-card__date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.nc-review-card__stars {
    display: flex;
    gap: 3px;
    color: #f5c518;
    margin-bottom: 10px;
}

.nc-review-card__stars svg {
    width: 16px;
    height: 16px;
}

.nc-review-card__text {
    font-size: 0.88rem;
    color: rgba(232, 237, 245, 0.82);
    line-height: 1.7;
}

.nc-review-form {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 32px;
    margin-top: 24px;
}

.nc-review-form h3 {
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.nc-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.nc-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.nc-form-field label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.nc-form-field input, .nc-form-field textarea {
    background: var(--header-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

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

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

.nc-form-full {
    grid-column: 1 / -1;
}

.nc-form-success {
    display: none;
    text-align: center;
    padding: 20px;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: var(--radius-sm);
    color: #2ecc71;
    font-weight: 600;
}

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

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

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

.nc-faq-q {
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    transition: background var(--transition);
}

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

.nc-faq-q svg {
    transition: transform var(--transition);
    flex-shrink: 0;
    color: var(--accent);
}

.nc-faq-item.is-open .nc-faq-q svg {
    transform: rotate(180deg);
}

.nc-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

.nc-faq-item.is-open .nc-faq-a {
    max-height: 300px;
    padding: 0 20px 16px;
}

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

.nc-footer__inner {
    display: grid;
    grid-template-columns: 220px 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.nc-footer__logo {
    margin-bottom: 12px;
}

.nc-footer__logo img {
    height: 38px;
}

.nc-footer__desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.nc-footer__heading {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.nc-footer__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nc-footer__links a {
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: color var(--transition);
}

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

.nc-footer__payment-logos, .nc-footer__provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.nc-payment-pill, .nc-provider-pill {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

.nc-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    align-items: flex-start;
}

.nc-footer__copy {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.nc-footer__legal {
    font-size: 0.72rem;
    color: rgba(138, 154, 184, 0.65);
    max-width: 640px;
    line-height: 1.55;
}

.nc-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: linear-gradient(135deg, #0f1b2d 0%, #1E2534 100%);
    border-top: 1px solid rgba(0, 224, 255, 0.25);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}

.nc-widget__text {
    font-size: 0.88rem;
    color: var(--text);
}

.nc-widget__text strong {
    color: var(--accent);
}

.nc-widget__close {
    background: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 4px;
    margin-left: auto;
    transition: color var(--transition);
}

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

.nc-widget__btn {
    background: var(--btn-reg);
    color: var(--text);
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.88rem;
    border: 1px solid #484d47;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
}

.nc-widget__btn:hover {
    background: var(--btn-reg-hover);
    color: var(--text);
    transform: scale(1.03);
}

.nc-widget__bonus {
    font-size: 0.78rem;
    color: var(--accent);
    font-weight: 600;
    text-align: center;
    margin-top: 2px;
}

body {
    padding-bottom: 70px;
}

.nc-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.nc-fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.nc-breadcrumb {
    padding: 14px 0;
}

.nc-breadcrumb ol {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.nc-breadcrumb li {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.nc-breadcrumb li + li::before {
    content: '/';
    margin-right: 8px;
    color: var(--border);
}

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

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

.u-hidden {
    display: none !important;
}

.e7x2k {
    pointer-events: none;
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.f9p1q {
    display: none;
    visibility: hidden;
}

.q3w8r {
    contain: strict;
}

.r5t6y {
    isolation: isolate;
}

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

    .nc-header__burger {
        display: flex;
    }

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

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

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

    .nc-footer__inner > *:first-child {
        grid-column: 1 / -1;
    }

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

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

    .nc-slider-track {
        display: flex;
    }

    .nc-slider-dots {
        display: flex;
    }

    .nc-screenshot-slider-item {
        min-width: 80vw;
        scroll-snap-align: start;
    }

    .nc-screenshot-slider-item img {
        height: 200px;
    }

    .nc-footer__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .nc-article-content {
        padding: 20px;
    }

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

    .nc-tournaments-grid .nc-tournament-card {
        min-width: 76vw;
        scroll-snap-align: start;
    }

    .nc-section {
        padding-top: 36px;
    }
}

@media (max-width: 480px) {
    .nc-widget {
        flex-wrap: wrap;
        gap: 8px;
    }

    .nc-wheel-canvas-wrap canvas {
        max-width: 280px;
        max-height: 280px;
    }
}

.wp-block-template-skip-link {
    display: none;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.elementor-section {
    position: relative;
}

.wp-site-blocks {
    display: contents;
}
