/* =========================================================
   NEO REIGN — тизер-страница будущего проекта
   Классы с префиксом neo-. Использует глобальные переменные
   из style.css: --color-yellow, --color-green, --color-darkred.
   ========================================================= */

:root {
    --neo-cyan: #4cc9f0;
    --neo-cyan-soft: rgba(76, 201, 240, 0.35);
    --neo-bg: #060608;
    --neo-panel: #101014;
    --neo-border: rgba(255, 255, 255, 0.08);
    --neo-text-muted: #a9a9b3;
}

.neo-page {
    background-color: var(--neo-bg);
    overflow-x: hidden;
}

/* ---------------------------------------------------------
   Утилита появления при скролле
   --------------------------------------------------------- */
.neo-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1);
    will-change: transform, opacity;
}

.neo-reveal.in-view {
    opacity: 1;
    transform: none;
}

/* Скошенный тонкий разделитель между секциями — для ритма */
.neo-divider {
    position: relative;
    height: 2px;
    margin: 0 auto;
    max-width: 220px;
    background: linear-gradient(90deg, transparent, var(--neo-cyan), transparent);
    opacity: 0.55;
    transform: skewX(-18deg);
}

/* ---------------------------------------------------------
   Плавающие фоновые фигуры — органичные блобы
   --------------------------------------------------------- */
.neo-shapes-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.neo-shape {
    position: absolute;
    border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
    filter: blur(48px);
    will-change: transform;
    animation: neoDrift 17s ease-in-out infinite alternate;
}

.neo-shape.c-cyan  { background: var(--neo-cyan); opacity: 0.22; }
.neo-shape.c-gold  { background: var(--color-yellow); opacity: 0.14; }
.neo-shape.c-green { background: var(--color-green); opacity: 0.16; }

@keyframes neoDrift {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(26px, -20px) scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
    .neo-shape { animation: none; }
}

/* Искры вокруг заголовка: жёлтые = старый Reign, голубые = Neo.
   Каждая частица дрейфует и мерцает по-своему (--tx/--ty/--dur/--delay
   задаются инлайн в разметке), плюс пара "комет" перечёркивают сцену. */
.neo-sparkle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    filter: drop-shadow(0 0 4px currentColor);
    animation: neoTwinkleDrift var(--dur, 3s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

.neo-sparkle.gold { background: var(--color-yellow); color: var(--color-yellow); }
.neo-sparkle.cyan { background: var(--neo-cyan); color: var(--neo-cyan); }

.neo-sparkle.mix {
    background: linear-gradient(135deg, var(--color-yellow), var(--neo-cyan));
    color: var(--neo-cyan);
}

.neo-sparkle.big { filter: blur(1px) drop-shadow(0 0 9px currentColor); }

@keyframes neoTwinkleDrift {
    0%, 100% { opacity: 0; transform: translate(0, 0) scale(.4); }
    50%      { opacity: var(--peak, 1); transform: translate(var(--tx, 6px), var(--ty, -8px)) scale(1.2); }
}

/* Кометы: жёлтая летит слева (старый Reign), голубая — справа (Neo) */
.neo-spark-trail {
    position: absolute;
    width: var(--len, 120px);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-yellow), transparent);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    animation: neoCometSweep 6s ease-in infinite;
    animation-delay: var(--delay, 0s);
}

.neo-spark-trail.cyan {
    background: linear-gradient(90deg, transparent, var(--neo-cyan), transparent);
    animation-name: neoCometSweepCyan;
}

@keyframes neoCometSweep {
    0%   { opacity: 0; transform: translateX(0) rotate(18deg); }
    6%   { opacity: 1; }
    16%  { opacity: 0; transform: translateX(170px) rotate(18deg); }
    100% { opacity: 0; transform: translateX(170px) rotate(18deg); }
}

@keyframes neoCometSweepCyan {
    0%   { opacity: 0; transform: translateX(0) rotate(-16deg); }
    6%   { opacity: 1; }
    16%  { opacity: 0; transform: translateX(-170px) rotate(-16deg); }
    100% { opacity: 0; transform: translateX(-170px) rotate(-16deg); }
}

@media (prefers-reduced-motion: reduce) {
    .neo-sparkle, .neo-spark-trail { display: none; }
}

/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */
.neo-hero-section {
    min-height: 92vh;
}

.neo-hero-section .neo-hero-code-layer {
    filter: brightness(0.4) saturate(1.15) blur(1.5px) contrast(0.95);
}

.neo-hero-section .overlay {
    background: radial-gradient(ellipse at center, rgba(6,6,8,0.35) 0%, rgba(6,6,8,0.88) 78%),
                linear-gradient(180deg, rgba(6,6,8,0.2) 0%, rgba(6,6,8,0.95) 100%);
}

.neo-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 16px;
}

.neo-hero-logo {
    width: 52px;
    height: auto;
    display: block;
    margin: 0 auto 16px;
    filter: drop-shadow(0 0 14px rgba(76, 201, 240, 0.4));
    opacity: 0;
    animation: neoFadeUp .6s ease forwards .05s,
               neoLogoFloat 4s ease-in-out .7s infinite;
}

@keyframes neoLogoFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-5px); }
}

.neo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--neo-cyan);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    animation: neoFadeUp .6s ease forwards;
    animation-delay: .25s;
    margin-bottom: 18px;
}

.neo-eyebrow::before,
.neo-eyebrow::after {
    content: '';
    width: 26px;
    height: 1px;
    background: var(--neo-cyan);
    opacity: 0.6;
}

.neo-title {
    position: relative;
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    font-weight: 800;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
    font-size: clamp(2.2rem, 9vw, 5rem);
    line-height: 1.1;
    margin: 0 0 18px;
}

/* REIGN написан сразу — без задержки */
.neo-title-reign {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0;
    animation: neoReignIn .5s ease forwards;
    text-shadow: 0 0 26px rgba(255,255,255,0.18);
}

@keyframes neoReignIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* NEO — дописывается спереди, каждая буква влетает по-своему,
   без blur/scale — заливка градиентом + чёткое свечение-тень */
.neo-title-neo {
    display: inline-flex;
    align-items: center;
}

.neo-title-neo .letter {
    display: inline-block;
    background: linear-gradient(135deg, var(--neo-cyan), #b6ecff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 12px var(--neo-cyan-soft));
    opacity: 0;
}

.neo-title-neo .letter:nth-child(1) {
    animation: neoLetterIn1 .55s cubic-bezier(.2,.8,.2,1) forwards .6s;
}
.neo-title-neo .letter:nth-child(2) {
    animation: neoLetterIn2 .55s cubic-bezier(.2,.8,.2,1) forwards .76s;
}
.neo-title-neo .letter:nth-child(3) {
    animation: neoLetterIn3 .55s cubic-bezier(.2,.8,.2,1) forwards .92s;
}

@keyframes neoLetterIn1 {
    from { opacity: 0; transform: translate(-14px, -18px) rotate(-18deg); }
    to   { opacity: 1; transform: none; }
}
@keyframes neoLetterIn2 {
    from { opacity: 0; transform: translate(0, 16px) rotate(10deg); }
    to   { opacity: 1; transform: none; }
}
@keyframes neoLetterIn3 {
    from { opacity: 0; transform: translate(14px, -12px) rotate(16deg); }
    to   { opacity: 1; transform: none; }
}

.neo-cursor {
    display: inline-block;
    width: 3px;
    height: 0.72em;
    margin-left: 5px;
    background: var(--neo-cyan);
    vertical-align: middle;
    animation: neoCursorBlink .45s steps(1) infinite,
               neoCursorHide 0s 1.3s forwards;
}

@keyframes neoCursorBlink { 50% { opacity: 0; } }
@keyframes neoCursorHide  { to { opacity: 0; visibility: hidden; } }

@keyframes neoFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.neo-tagline {
    max-width: 640px;
    margin: 0 auto 34px;
    color: var(--neo-text-muted);
    font-size: 1.15rem;
    line-height: 1.6;
    opacity: 0;
    animation: neoFadeUp .8s ease forwards;
    animation-delay: 1.4s;
}

.neo-hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: neoFadeUp .8s ease forwards;
    animation-delay: 1.6s;
}

.btn-neo-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 30px;
    padding: 11px 26px;
}

.btn-neo-outline:hover {
    border-color: var(--neo-cyan);
    color: var(--neo-cyan);
    background: transparent;
}

.neo-scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 2;
    color: rgba(255,255,255,0.55);
    font-size: 1.3rem;
    opacity: 0;
    animation: neoScrollIn .6s ease forwards 1.8s,
               neoBounce 2.2s ease-in-out 2.3s infinite;
}

@keyframes neoScrollIn { to { opacity: 1; } }

@keyframes neoBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}

/* ---------------------------------------------------------
   INTRO / манифест — асимметричный, редакторский
   --------------------------------------------------------- */
.neo-intro-section {
    position: relative;
    padding: 100px 8vw 90px;
}

.neo-intro-wrap {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-left: 26px;
    border-left: 2px solid var(--neo-cyan);
}

.neo-intro-text {
    font-size: 1.35rem;
    line-height: 1.75;
    color: #e7e7ea;
}

.neo-intro-text b,
.neo-intro-highlight {
    color: var(--neo-cyan);
    font-weight: 700;
}

@media (max-width: 640px) {
    .neo-intro-section { padding: 70px 24px; }
    .neo-intro-wrap { padding-left: 18px; }
    .neo-intro-text { font-size: 1.15rem; }
}

/* ---------------------------------------------------------
   FEATURES — полноэкранные блоки без рамок и отступов
   --------------------------------------------------------- */
.neo-features-section {
    position: relative;
}

.neo-feature-block {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 76vh;
    overflow: hidden;
    border-top: 1px solid var(--neo-border);
}

.neo-feature-block.layout-full   { min-height: 92vh; align-items: flex-end; }
.neo-feature-block.layout-floating { min-height: 62vh; }

.neo-feature-block.reverse { flex-direction: row-reverse; }

/* --- split: фото занимает половину экрана и растворяется в чёрный к тексту --- */
.neo-feature-media-half {
    position: relative;
    flex: 0 0 56%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 32%);
    mask-image: linear-gradient(90deg, transparent 0%, black 32%);
}

.neo-feature-block.reverse .neo-feature-media-half {
    -webkit-mask-image: linear-gradient(270deg, transparent 0%, black 32%);
    mask-image: linear-gradient(270deg, transparent 0%, black 32%);
}

.neo-feature-media-half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 8s ease;
}

.neo-feature-block:hover .neo-feature-media-half img {
    transform: scale(1.08);
}

.neo-feature-media-half::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.18;
    pointer-events: none;
}

.neo-feature-block.accent-cyan  .neo-feature-media-half::after { background: radial-gradient(circle at 30% 30%, var(--neo-cyan), transparent 65%); }
.neo-feature-block.accent-gold  .neo-feature-media-half::after { background: radial-gradient(circle at 30% 30%, var(--color-yellow), transparent 65%); }
.neo-feature-block.accent-green .neo-feature-media-half::after { background: radial-gradient(circle at 30% 30%, var(--color-green), transparent 65%); }

.neo-feature-content-half {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 6vw;
    min-width: 260px;
}

/* --- full: фото на весь блок, текст снизу поверх затемнения --- */
.neo-feature-block.layout-full .neo-feature-media-half {
    position: absolute;
    inset: 0;
    flex: none;
    -webkit-mask-image: none;
    mask-image: none;
}

.neo-feature-block.layout-full .neo-feature-media-half::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6,6,8,0.05) 0%, rgba(6,6,8,0.35) 55%, var(--neo-bg) 100%);
}

.neo-feature-block.layout-full .neo-feature-content-half {
    width: 100%;
    padding: 70px 8vw;
    max-width: 680px;
}

/* --- floating: изображение "парит" карточкой на цветном фоне --- */
.neo-feature-block.layout-floating {
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 60px 6vw;
    background: radial-gradient(circle at 25% 30%, rgba(76,201,240,0.1), transparent 60%), #0b0d12;
}

.neo-feature-floating-card {
    flex: 0 0 300px;
    max-width: 82vw;
}

.neo-feature-floating-card img {
    width: 100%;
    display: block;
    border-radius: 14px;
    border: 1px solid var(--neo-border);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    transform: rotate(-3deg);
    transition: transform 0.5s ease;
}

.neo-feature-block.layout-floating:hover .neo-feature-floating-card img {
    transform: rotate(0deg) scale(1.03);
}

.neo-feature-block.layout-floating .neo-feature-content-half {
    flex: 0 0 380px;
    max-width: 420px;
    padding: 0;
}

/* --- общие текстовые элементы --- */
.neo-feature-tag {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 600;
}

.neo-feature-block.accent-cyan  .neo-feature-tag { color: var(--neo-cyan); }
.neo-feature-block.accent-gold  .neo-feature-tag { color: var(--color-yellow); }
.neo-feature-block.accent-green .neo-feature-tag { color: var(--color-green); }

.neo-feature-title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
}

.neo-feature-block.layout-full .neo-feature-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
}

/* На полноэкранных фото-секциях мелкий текст плохо читается на пёстром
   фоне — делаем его ярче, жёлтым, вместо приглушённого серого. */
.neo-feature-block.layout-full .neo-feature-desc {
    color: var(--color-yellow);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

.neo-feature-desc {
    color: var(--neo-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 480px;
}

@media (max-width: 820px) {
    .neo-feature-block,
    .neo-feature-block.reverse {
        flex-direction: column;
        min-height: auto;
    }

    .neo-feature-media-half {
        flex: 0 0 46vh;
        width: 100%;
        -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 40%);
        mask-image: linear-gradient(180deg, transparent 0%, black 40%);
    }

    .neo-feature-block.layout-full { align-items: stretch; }
    .neo-feature-block.layout-full .neo-feature-media-half { position: relative; inset: auto; height: 50vh; }
    .neo-feature-block.layout-full .neo-feature-content-half { padding: 34px 24px 50px; max-width: none; }

    .neo-feature-content-half { padding: 40px 24px; text-align: center; }
    .neo-feature-desc { margin: 0 auto; }

    .neo-feature-block.layout-floating { flex-direction: column; text-align: center; padding: 50px 24px; }
    .neo-feature-block.layout-floating .neo-feature-content-half { max-width: none; }
}

/* ---------------------------------------------------------
   ИГРАЙТЕ СЕЙЧАС (ReignCraft активен)
   --------------------------------------------------------- */
.neo-current-section {
    padding: 70px 20px;
}

.neo-current-card {
    max-width: 980px;
    margin: 0 auto;
    background: linear-gradient(135deg, #161512 0%, #0c0c0d 100%);
    border: 1px solid rgba(250, 219, 10, 0.25);
    border-radius: 22px;
    padding: 44px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.neo-current-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 20%, rgba(250,219,10,0.12), transparent 55%);
    pointer-events: none;
}

.neo-current-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-yellow);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 14px;
}

.neo-current-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-yellow);
    animation: neoDotPulse 1.8s infinite;
}

@keyframes neoDotPulse {
    0%   { box-shadow: 0 0 0 0 rgba(250,219,10,0.55); }
    70%  { box-shadow: 0 0 0 10px rgba(250,219,10,0); }
    100% { box-shadow: 0 0 0 0 rgba(250,219,10,0); }
}

.neo-current-text {
    flex: 1;
    min-width: 280px;
    position: relative;
    z-index: 1;
}

.neo-current-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.neo-current-desc {
    color: var(--neo-text-muted);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 520px;
}

.neo-current-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ---------------------------------------------------------
   ROADMAP — горизонтальные "рельсы" от текущей игры к Neo Reign
   --------------------------------------------------------- */
.neo-roadmap-section {
    position: relative;
    padding: 50px 0 90px;
    overflow: hidden;
}

.neo-roadmap-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.16;
    filter: grayscale(0.25) brightness(0.7);
    z-index: 0;
}

.neo-roadmap-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--neo-bg) 0%, rgba(6,6,8,0.75) 45%, var(--neo-bg) 100%);
}

.neo-roadmap-header {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.neo-roadmap-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.neo-roadmap-note {
    color: var(--neo-text-muted);
    font-size: 0.95rem;
}

.neo-roadmap-swipe-hint {
    display: none;
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-top: 10px;
}

.neo-roadmap-track {
    position: relative;
    z-index: 2;
    overflow-x: auto;
    padding: 10px 8vw 26px;
    scroll-snap-type: x proximity;
}

.neo-roadmap-track::-webkit-scrollbar { height: 6px; }
.neo-roadmap-track::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 3px; }

.neo-roadmap-rail {
    position: relative;
    display: flex;
    min-width: max-content;
    padding-top: 14px;
}

.neo-roadmap-rail::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 23px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-yellow), var(--neo-cyan) 55%, var(--color-green));
    opacity: 0.5;
}

.neo-roadmap-station {
    flex: 0 0 250px;
    padding: 0 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    scroll-snap-align: start;
}

.neo-roadmap-node {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: currentColor;
    border: 3px solid var(--neo-bg);
    box-shadow: 0 0 14px currentColor;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.neo-roadmap-node.status-progress { color: var(--neo-cyan); }
.neo-roadmap-node.status-planned  { color: var(--color-yellow); }
.neo-roadmap-node.status-research { color: var(--color-green); }
.neo-roadmap-node.status-idea     { color: var(--color-darkred); }

.neo-roadmap-card {
    width: 100%;
    background: var(--neo-panel);
    border: 1px solid var(--neo-border);
    border-radius: 14px;
    padding: 18px 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.neo-roadmap-station:hover .neo-roadmap-card {
    transform: translateY(-4px);
    border-color: rgba(76, 201, 240, 0.35);
}

.neo-roadmap-status {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.neo-roadmap-status.status-progress { color: var(--neo-cyan); background: rgba(76, 201, 240, 0.12); border: 1px solid rgba(76, 201, 240, 0.35); }
.neo-roadmap-status.status-planned  { color: var(--color-yellow); background: rgba(250, 219, 10, 0.1); border: 1px solid rgba(250, 219, 10, 0.3); }
.neo-roadmap-status.status-research { color: var(--color-green); background: rgba(82, 172, 98, 0.12); border: 1px solid rgba(82, 172, 98, 0.35); }
.neo-roadmap-status.status-idea     { color: #ff8a8a; background: rgba(170, 0, 0, 0.15); border: 1px solid rgba(170, 0, 0, 0.4); }

.neo-roadmap-card-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.neo-roadmap-card-desc {
    color: var(--neo-text-muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

@media (max-width: 768px) {
    .neo-roadmap-swipe-hint { display: block; }
}

/* ---------------------------------------------------------
   ПОДДЕРЖКА / BOOSTY — с "живым" персонажем на плашке
   --------------------------------------------------------- */
.neo-support-section {
    position: relative;
    padding: 30px 20px 100px;
}

.neo-support-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(180deg, rgba(76,201,240,0.06), rgba(82,172,98,0.05));
    border: 1px solid var(--neo-border);
    border-radius: 22px;
    padding: 52px 34px 46px;
}

.neo-support-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.neo-support-desc {
    color: var(--neo-text-muted);
    font-size: 1.02rem;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 28px;
}

.btn-boosty {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(120deg, var(--neo-cyan), var(--color-green));
    color: #060608 !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 13px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 10px 30px rgba(76, 201, 240, 0.2);
}

.btn-boosty:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(76, 201, 240, 0.35);
    color: #060608 !important;
}

.neo-support-fine {
    margin-top: 18px;
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
}