:root {
    /* Фиолетовая палитра */
    --pur:     #7c3aed;
    --pur2:    #5b21b6;
    --pur3:    #4c1d95;

    /* Бирюзовая палитра */
    --teal:    #2dd4bf;
    --teal2:   #0d9488;
    --teal3:   #0f766e;

    /* Фоны */
    --bg:      #0a0612;
    --bg2:     #0e0a1a;

    /* Карточки и рамки */
    --card:    rgba(124, 58, 237, 0.07);
    --border:  rgba(124, 58, 237, 0.22);
    --tborder: rgba(45, 212, 191, 0.18);

    /* Текст */
    --text:    #d4c8f0;
    --light:   #f0eaff;
}


/* =============================================
   СБРОС / БАЗОВЫЕ СТИЛИ
   ============================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Crimson Pro', Georgia, serif;
    overflow-x: hidden;
}

/* Шум-текстура поверх всей страницы */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.6;
}


/* =============================================
   АНИМИРОВАННЫЙ ФОН
   ============================================= */

/* Контейнер градиентных пятен */
.mesh {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Одно пятно */
.mb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: bd ease-in-out infinite alternate;
}

.mb:nth-child(1) {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, transparent 70%);
    top: -200px;
    left: -150px;
    animation-duration: 18s;
}

.mb:nth-child(2) {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.14) 0%, transparent 70%);
    top: 40%;
    right: -100px;
    animation-duration: 22s;
    animation-delay: -8s;
}

.mb:nth-child(3) {
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(91, 33, 182, 0.12) 0%, transparent 70%);
    bottom: -100px;
    left: 30%;
    animation-duration: 26s;
    animation-delay: -4s;
}

@keyframes bd {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(40px, 60px) scale(1.08); }
}

/* Canvas с частицами */
#pc {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* Прогресс-бар скролла */
#sb {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--pur), var(--teal));
    z-index: 999;
    transition: width 0.1s linear;
}


/* =============================================
   НАВИГАЦИЯ
   ============================================= */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 56px;
    background: rgba(10, 6, 18, 0.82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

/* Логотип с анимацией shimmer */
.nl {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: 4px;
    background: linear-gradient(120deg, var(--teal), var(--pur) 60%, var(--teal));
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: sh 4s linear infinite;
}

@keyframes sh {
    to { background-position: 200% center; }
}

/* Список ссылок */
.nv {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
}

.nv a {
    color: rgba(212, 200, 240, 0.7);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nv a:hover {
    color: var(--teal);
}

/* CTA-кнопка в навигации */
.nc {
    background: linear-gradient(135deg, var(--pur2), var(--pur)) !important;
    color: var(--light) !important;
    padding: 8px 22px;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.nc:hover {
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.5) !important;
}


/* =============================================
   HERO — ГЛАВНЫЙ ЭКРАН
   ============================================= */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 110px 24px 80px;
    position: relative;
    z-index: 1;
}

/* Маленький бейдж над заголовком */
.he {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--tborder);
    border-radius: 3px;
    padding: 7px 20px;
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: var(--teal);
    text-transform: uppercase;
    margin-bottom: 36px;
    animation: fu 0.7s ease both;
    background: rgba(45, 212, 191, 0.05);
}

/* Пульсирующая точка в бейдже */
.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    animation: pu 2s ease infinite;
}

@keyframes pu {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.6); }
}

/* Главный заголовок */
.ht {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: clamp(3.5rem, 11vw, 8rem);
    line-height: 0.92;
    letter-spacing: -1px;
    animation: fu 0.8s ease 0.1s both;
}

.ht .l1 {
    display: block;
    background: linear-gradient(135deg, var(--pur) 0%, var(--teal) 60%, var(--pur2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Подзаголовок-слоган */
.htg {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(212, 200, 240, 0.55);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-style: italic;
    margin-top: 20px;
    animation: fu 0.8s ease 0.2s both;
}

/* Описание под слоганом */
.hd {
    max-width: 560px;
    font-size: 1.15rem;
    color: rgba(212, 200, 240, 0.6);
    line-height: 1.8;
    margin-top: 24px;
    animation: fu 0.8s ease 0.3s both;
}

/* --- IP-блок --- */

.iw {
    margin-top: 48px;
    animation: fu 0.8s ease 0.4s both;
}

.il {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 4px;
    color: rgba(212, 200, 240, 0.35);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ib {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.15);
}

.ia {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--light);
    padding: 14px 24px;
    background: rgba(124, 58, 237, 0.08);
}

.iv {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--teal);
    padding: 14px 16px;
    background: rgba(45, 212, 191, 0.07);
    border-left: 1px solid var(--tborder);
}

.ic {
    background: linear-gradient(135deg, var(--pur2), var(--pur));
    border: none;
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 2px;
    padding: 14px 20px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.ic:hover {
    opacity: 0.8;
}

/* --- Счётчики --- */

.hs {
    display: flex;
    gap: 56px;
    margin-top: 52px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fu 0.8s ease 0.5s both;
}

.si {
    text-align: center;
}

.sn {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--teal), var(--pur));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sl {
    display: block;
    margin-top: 4px;
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(212, 200, 240, 0.35);
}


/* =============================================
   РАЗДЕЛИТЕЛЬ
   ============================================= */

.dv {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.dv::before,
.dv::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border));
}

.dv::after {
    transform: scaleX(-1);
}

.di {
    color: var(--pur);
    font-size: 1.2rem;
    flex-shrink: 0;
}


/* =============================================
   ОБЩИЕ СТИЛИ СЕКЦИЙ
   ============================================= */

.sec {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
}

/* Маленький лейбл над заголовком секции */
.st {
    display: block;
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 5px;
    color: var(--teal);
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* Заголовок секции */
.sh {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    text-align: center;
    color: var(--light);
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.sh span {
    background: linear-gradient(90deg, var(--teal), var(--pur));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* =============================================
   СЕКЦИЯ «О СЕРВЕРЕ»
   ============================================= */

/* Сетка: текст | окно чата */
.ag {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.at p {
    font-size: 1.15rem;
    line-height: 1.85;
    color: rgba(212, 200, 240, 0.65);
    margin-bottom: 16px;
}

.at p strong {
    color: var(--teal);
}

/* Карточка с имитацией чата */
.av {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    overflow: hidden;
}

.av::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(45, 212, 191, 0.06));
}

/* Окно Minecraft-чата */
.mw {
    position: relative;
    z-index: 1;
    background: #0a0612;
    border-radius: 8px;
    border: 1px solid rgba(45, 212, 191, 0.2);
    font-family: monospace;
    font-size: 0.85rem;
    overflow: hidden;
}

.mb2 {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 8px 14px;
    background: rgba(45, 212, 191, 0.08);
    border-bottom: 1px solid rgba(45, 212, 191, 0.15);
}

/* Цветные кружки в заголовке окна */
.md { width: 8px; height: 8px; border-radius: 50%; }
.md:nth-child(1) { background: #ff5f57; }
.md:nth-child(2) { background: #febc2e; }
.md:nth-child(3) { background: #28c840; }

.mt {
    margin-left: 8px;
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: rgba(212, 200, 240, 0.4);
}

.mbody { padding: 16px; }

.ml {
    padding: 3px 0;
    color: rgba(212, 200, 240, 0.5);
    font-size: 0.82rem;
}

/* Цвета ников и сообщений */
.ml .p { color: var(--teal); }
.ml .s { color: #a78bfa; }
.ml .w { color: #fbbf24; }

/* Мигающий курсор */
.mcur {
    display: inline-block;
    width: 8px;
    height: 14px;
    background: var(--teal);
    margin-left: 2px;
    vertical-align: middle;
    animation: bl 0.9s step-end infinite;
}

@keyframes bl {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}


/* =============================================
   СЕКЦИЯ «ОСОБЕННОСТИ» — КАРТОЧКИ
   ============================================= */

.fg {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.fc {
    position: relative;
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 30px 26px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

/* Бирюзовая линия снизу при наведении */
.fc::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.fc:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 16px 50px rgba(124, 58, 237, 0.12);
}

.fc:hover::after {
    opacity: 1;
}

.fi {
    display: block;
    font-size: 2rem;
    margin-bottom: 14px;
    filter: drop-shadow(0 0 12px rgba(45, 212, 191, 0.4));
}

.fc h3 {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--light);
    margin-bottom: 10px;
}

.fc p {
    color: rgba(212, 200, 240, 0.52);
    line-height: 1.7;
    font-size: 0.95rem;
}


/* =============================================
   СЕКЦИЯ «КАК ВОЙТИ» — ШАГИ
   ============================================= */

.sw {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
}

/* Вертикальная линия-таймлайн */
.sl2 {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, var(--pur), var(--teal), var(--pur));
    opacity: 0.25;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px 0;
    position: relative;
}

/* Номер шага */
.sn2 {
    flex-shrink: 0;
    z-index: 1;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--pur3), var(--pur2));
    border: 1px solid rgba(124, 58, 237, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--teal);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.25);
}

.sc h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--light);
    margin-bottom: 8px;
}

.sc p {
    color: rgba(212, 200, 240, 0.55);
    line-height: 1.7;
    font-size: 0.95rem;
}

.sc code {
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: 4px;
    padding: 2px 8px;
    color: var(--teal);
    font-size: 0.85rem;
}

.sc a {
    color: #a78bfa;
    text-decoration: none;
}

.sc a:hover {
    text-decoration: underline;
}


/* =============================================
   СЕКЦИЯ «ТАРИФЫ»
   ============================================= */

.pw {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
}

.pc2 {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pc2:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15);
}

/* Популярный тариф */
.pc2.hot {
    border-color: rgba(45, 212, 191, 0.35);
    background: rgba(45, 212, 191, 0.05);
    box-shadow: 0 0 50px rgba(45, 212, 191, 0.1);
}

/* Лейбл «ПОПУЛЯРНЫЙ» */
.pr {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    padding: 5px 18px;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--teal2), var(--teal));
    color: var(--bg);
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.pn {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 5px;
    color: rgba(212, 200, 240, 0.45);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.pp {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--teal), var(--pur));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pc3 {
    display: block;
    font-size: 0.85rem;
    color: rgba(212, 200, 240, 0.35);
    letter-spacing: 1px;
    margin: 6px 0 24px;
}

/* Список возможностей тарифа */
.pf {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

.pf li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: rgba(212, 200, 240, 0.58);
    border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}

.pf li::before {
    content: '◆';
    flex-shrink: 0;
    color: var(--teal);
    font-size: 0.5rem;
}

/* Кнопка покупки */
.bb {
    width: 100%;
    border: none;
    border-radius: 8px;
    padding: 14px;
    cursor: pointer;
    background: linear-gradient(135deg, var(--pur2), var(--pur));
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}

.bb:hover {
    opacity: 0.85;
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(124, 58, 237, 0.4);
}

/* Кнопка популярного тарифа — бирюзовая */
.pc2.hot .bb {
    background: linear-gradient(135deg, var(--teal2), var(--teal));
    box-shadow: 0 0 20px rgba(45, 212, 191, 0.25);
}

.pc2.hot .bb:hover {
    box-shadow: 0 0 40px rgba(45, 212, 191, 0.45);
}


/* =============================================
   МОДАЛЬНОЕ ОКНО ОПЛАТЫ
   ============================================= */

/* Затемнённый фон */
.ov {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(5, 3, 12, 0.92);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.ov.open {
    opacity: 1;
    pointer-events: all;
}

/* Само окно */
.mo {
    position: relative;
    width: 100%;
    max-width: 460px;
    padding: 44px;
    background: var(--bg2);
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 60px rgba(124, 58, 237, 0.12);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.35s ease;
}

.ov.open .mo {
    transform: translateY(0) scale(1);
}

/* Кнопка закрытия */
.mx {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(212, 200, 240, 0.3);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s;
}

.mx:hover {
    color: var(--light);
}

.mo h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--light);
    margin-bottom: 6px;
}

/* Бейдж с названием тарифа */
.mtag {
    display: inline-block;
    padding: 3px 14px;
    margin-bottom: 28px;
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid var(--tborder);
    border-radius: 4px;
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--teal);
}

/* Поле формы */
.mf {
    margin-bottom: 16px;
}

.mf label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: rgba(212, 200, 240, 0.4);
    text-transform: uppercase;
}

.mf input,
.mf select {
    width: 100%;
    padding: 13px 16px;
    background: rgba(124, 58, 237, 0.07);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--light);
    font-family: 'Crimson Pro', serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.mf input:focus,
.mf select:focus {
    border-color: var(--teal);
}

.mf select option {
    background: var(--bg2);
}

/* Строка «итого» */
.mtt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    margin: 22px 0;
    background: rgba(45, 212, 191, 0.05);
    border: 1px solid rgba(45, 212, 191, 0.15);
    border-radius: 10px;
}

.mtt span {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: rgba(212, 200, 240, 0.4);
}

.mtt strong {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    background: linear-gradient(90deg, var(--teal), var(--pur));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Кнопка оплаты */
.bp {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    background: linear-gradient(135deg, var(--pur2), var(--teal2));
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    box-shadow: 0 0 40px rgba(45, 212, 191, 0.2);
    transition: opacity 0.2s, transform 0.2s;
}

.bp:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

/* Подпись под кнопкой */
.ms {
    margin-top: 14px;
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: rgba(212, 200, 240, 0.25);
}


/* =============================================
   ФУТЕР
   ============================================= */

footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 44px 56px;
    border-top: 1px solid var(--border);
}

.fl {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 4px;
    background: linear-gradient(90deg, var(--teal), var(--pur));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

footer p {
    color: rgba(212, 200, 240, 0.28);
    font-size: 0.85rem;
}

footer a {
    color: #a78bfa;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}


/* =============================================
   АНИМАЦИЯ ПОЯВЛЕНИЯ ПРИ СКРОЛЛЕ
   ============================================= */

.rv {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.rv.in {
    opacity: 1;
    transform: translateY(0);
}

/* Базовая анимация fadeUp */
@keyframes fu {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* =============================================
   АДАПТИВ — МОБИЛЬНЫЕ УСТРОЙСТВА
   ============================================= */

@media (max-width: 768px) {
    nav {
        padding: 14px 20px;
    }

    /* Скрываем навигационные ссылки */
    .nv {
        display: none;
    }

    /* Секция «О сервере» — в одну колонку */
    .ag {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 32px 20px;
        flex-direction: column;
        text-align: center;
    }
}