/* Xeno Now - внутренние страницы (credits и т.п.) */
.page-hero { padding: 130px 0 34px; text-align: center; }
.page-hero h1 {
    font-size: clamp(2.4rem, 5.4vw, 3.6rem);
    font-weight: 700;
    margin-bottom: 14px;
    text-shadow: 0 0 40px rgba(255,255,255,0.25);
}
.page-hero p { max-width: 620px; margin: 0 auto; color: var(--muted); font-size: 1.05rem; }

.cr-section { padding: 24px 0 10px; }
.cr-card {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 22px;
    background:
        radial-gradient(ellipse at top, rgba(255,255,255,0.05), transparent 55%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(0,0,0,0.4) 45%, rgba(0,0,0,0.6));
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.cr-card:hover { border-color: rgba(255,255,255,0.2); box-shadow: 0 0 44px rgba(255,255,255,0.06); }
.cr-card-inner { padding: 26px 26px 18px; position: relative; }

.cr-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

.cr-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.cr-head-icon {
    position: relative;
    width: 38px; height: 38px;
    display: grid; place-items: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.06);
    color: var(--text);
    font-size: 0.95rem;
    flex-shrink: 0;
}
.cr-head-icon::before {
    content: '';
    position: absolute; inset: -7px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.22), transparent 70%);
    filter: blur(6px);
    animation: crBreathe 4s ease-in-out infinite;
}
@keyframes crBreathe { 0%,100% { opacity: 0.55; } 50% { opacity: 1; } }
.cr-head h2 {
    font-size: 1.5rem;
    background: linear-gradient(90deg, #fff, #d4d4d8, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.table-scroll { overflow-x: auto; }
.cr-table { width: 100%; border-collapse: collapse; font-size: 0.78rem; min-width: 0; }
.cr-table th, .cr-table td { padding: 10px 8px; text-align: left; white-space: nowrap; }
.cr-table thead th {
    color: var(--faint);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
}
.cr-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.06); transition: background 0.35s ease; }
.cr-table tbody tr:last-child { border-bottom: none; }
.cr-table tbody tr:hover { background: linear-gradient(90deg, rgba(255,255,255,0.05), transparent); }
.cr-table td { color: var(--muted); }
.th-right, .td-right { text-align: right !important; }

.cr-avatar {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
    border: 2px solid rgba(255,255,255,0.12);
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 0 14px rgba(255,255,255,0.08);
}
.cr-user-cell { display: flex; align-items: center; gap: 13px; }
.cr-name {
    font-weight: 600;
    background: linear-gradient(90deg, #fff, #cfcfd4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cr-role { display: inline-flex; align-items: center; gap: 9px; transition: color 0.3s ease; }
tr:hover .cr-role { color: var(--text-2); }
.cr-role i, .cr-role svg { opacity: 0.85; }

.cr-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-weight: 500;
    transition: color 0.25s ease;
    position: relative;
}
.cr-link svg { transition: transform 0.25s ease; }
.cr-link::after {
    content: '';
    position: absolute;
    left: 0; right: 36px; bottom: -3px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}
.cr-link:hover { color: var(--text); }
.cr-link:hover::after { transform: scaleX(1); }
.cr-link:hover svg { transform: translate(3px, -3px); }

.cr-amount-usd {
    font-family: 'Consolas', 'Courier New', monospace;
    color: #34d399;
    font-weight: 600;
    transition: color 0.25s ease;
}
tr:hover .cr-amount-usd { color: #6ee7b7; }
.cr-amount-rbx {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    font-family: 'Consolas', 'Courier New', monospace;
    color: #facc15;
    font-weight: 600;
    transition: color 0.25s ease;
}
tr:hover .cr-amount-rbx { color: #fde047; }
.cr-rbx-icon { width: 15px; height: 15px; fill: currentColor; stroke: none !important; flex-shrink: 0; }

.cr-platform { display: inline-flex; align-items: center; justify-content: flex-end; gap: 8px; }
.cr-platform i, .cr-platform svg { opacity: 0.8; }
.cr-platform span { color: var(--faint); transition: color 0.25s ease; }
tr:hover .cr-platform span { color: var(--muted); }

.cr-note {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: var(--faint);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 900px) {
    .page-hero { padding-top: 110px; }
    .cr-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .cr-card-inner { padding: 20px 16px 12px; }
    .cr-table th, .cr-table td { padding: 11px 10px; }
}

/* ===== Картинки-оверлеи (пользователь кладёт файлы в images/) ===== */
.logo-mark, .cr-avatar, .cr-head-icon, .dn-ico, .scan-logo, .m-img, .video-fallback, .dl-logo-big { position: relative; }
.logo-mark, .cr-avatar, .dw-logo, .dl-logo-big { overflow: hidden; }
.logo-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: inherit;
    z-index: 2;
}

/* ===== Toast ===== */
.toast {
    position: fixed;
    bottom: 26px; left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #111;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 999px;
    padding: 10px 20px;
    color: #fafafa;
    font-size: 0.84rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 300;
    box-shadow: 0 0 30px rgba(255,255,255,0.08);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== ABOUT ===== */
.about-card { padding: 36px; }
.about-text p { color: var(--muted); font-size: 1.02rem; line-height: 1.8; margin-bottom: 16px; }
.about-text p:last-child { margin-bottom: 0; }
.about-text a, .linklike {
    color: var(--text);
    background: none; border: none; padding: 0;
    font: inherit; cursor: pointer;
    transition: color 0.2s ease;
}
.about-text a:hover, .linklike:hover { color: var(--muted); }

.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 36px 0; }
.feat-cell {
    display: flex; flex-direction: column; gap: 16px;
    padding: 24px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.feat-cell:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.2); transform: scale(1.04); }
.feat-cell .f-ico { color: var(--text); font-size: 1.3rem; }
.feat-cell h3 { font-size: 1.02rem; font-weight: 500; }
.feat-cell.small { padding: 18px; gap: 10px; }
.feat-cell.small h3 { font-size: 0.95rem; }
.feat-cell.small p { font-size: 0.8rem; color: var(--muted); }

/* Discord widget */
.dw-card {
    height: 400px;
    display: flex; flex-direction: column;
    overflow: hidden;
    padding: 18px;
    border-radius: 18px;
    background: rgba(0,0,0,0.85);
    border: 1px solid var(--border);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}
.dw-head { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.dw-logo { width: 28px; height: 28px; border-radius: 50%; overflow: hidden; flex-shrink: 0; display: grid; place-items: center; background: rgba(255,255,255,0.08); position: relative; }
.dw-name { font-weight: 800; font-size: 1.1rem; background: linear-gradient(90deg, #fff, #9ca3af); -webkit-background-clip: text; background-clip: text; color: transparent; }
.dw-online { font-size: 0.78rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.dw-dot { width: 8px; height: 8px; border-radius: 50%; background: #23a55a; box-shadow: 0 0 8px #23a55a; }
.dw-join {
    margin-left: auto;
    padding: 8px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 600;
    transition: background 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
}
.dw-join:hover { background: rgba(255,255,255,0.12); transform: scale(1.05); }
.dw-list { flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 8px; padding-right: 4px; }
.dw-member { display: flex; align-items: center; gap: 12px; padding: 8px 10px; border-radius: 10px; transition: background 0.25s ease; }
.dw-member:hover { background: rgba(255,255,255,0.05); }
.dw-ava {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: grid; place-items: center;
    font-size: 0.78rem; font-weight: 700; color: #fff;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.dw-ava img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.dw-nm { font-size: 0.88rem; color: var(--text-2); }
.dw-st { font-size: 0.72rem; color: var(--faint); }

.skel { background: rgba(255,255,255,0.1); border-radius: 6px; animation: skelPulse 1.6s ease-in-out infinite; }
@keyframes skelPulse { 0%,100% { opacity: 0.45; } 50% { opacity: 1; } }

/* ===== HELP ===== */
.help-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 1080px; margin: 0 auto; align-items: start; }
.video-card {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    background-image:
        linear-gradient(to right, #161616 1px, transparent 1px),
        linear-gradient(to bottom, #161616 1px, transparent 1px);
    background-size: 20px 20px;
    background-color: #0a0a0a;
}
.video-card video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-veil {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    background: rgba(0,0,0,0.55);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    transition: opacity 0.3s ease;
    cursor: pointer;
}
.video-card:hover .video-veil { opacity: 0; }
.play-badge {
    width: 62px; height: 62px;
    border-radius: 50%;
    background: #fff;
    display: grid; place-items: center;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    transition: transform 0.25s ease;
}
.video-veil:hover .play-badge { transform: scale(1.1); }
.play-badge svg { width: 26px; height: 26px; fill: #000; margin-left: 3px; }
.issues { display: flex; flex-direction: column; gap: 20px; }
.issues h2 { display: flex; align-items: center; gap: 12px; font-size: 1.5rem; margin-bottom: 8px; }
.issues h2 span { background: linear-gradient(90deg, #fff, #d4d4d8, #fff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.issue-card { border-radius: 14px; }
.issue-flex { display: flex; gap: 16px; align-items: flex-start; }
.issue-ico { padding: 10px; border-radius: 10px; background: rgba(255,255,255,0.1); color: var(--text); flex-shrink: 0; }
.issue-body h3 { font-size: 1.12rem; margin-bottom: 8px; background: linear-gradient(90deg, #fff, #d4d4d8); -webkit-background-clip: text; background-clip: text; color: transparent; }
.issue-body p { color: var(--muted); font-size: 0.9rem; margin-bottom: 12px; }
.issue-links { display: flex; flex-direction: column; gap: 10px; }
.issue-links a { display: inline-flex; align-items: center; gap: 8px; color: var(--text-2); font-size: 0.88rem; width: fit-content; transition: color 0.25s ease; }
.issue-links a b { font-weight: 500; border-bottom: 1px solid transparent; transition: border-color 0.25s ease; }
.issue-links a:hover { color: var(--text); }
.issue-links a:hover b { border-color: #fff; }

/* ===== DONATE ===== */
.dn-meth { display: flex; align-items: center; gap: 14px; }
.dn-ico {
    width: 52px; height: 52px;
    flex-shrink: 0;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
    display: grid; place-items: center;
    overflow: hidden;
    font-weight: 800; color: var(--text);
    transition: transform 0.3s ease;
}
tr:hover .dn-ico { transform: scale(1.1); }
.dn-t { font-weight: 600; font-size: 0.98rem; background: linear-gradient(90deg, #fff, #d4d4d8); -webkit-background-clip: text; background-clip: text; color: transparent; }
.dn-d { font-size: 0.76rem; color: var(--faint); }
.addr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    max-width: 300px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    color: #cfcfcf;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 0.76rem;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}
.addr-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }
.addr-btn .txt { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.addr-btn i { flex-shrink: 0; color: var(--faint); transition: color 0.3s ease; }
.addr-btn.ok i { color: #4ade80; }

/* ===== DOWNLOAD ===== */
.dl-card { padding: 38px; }
.dl-grid { display: grid; grid-template-columns: 1.9fr 1fr; gap: 34px; }
.dl-id { display: flex; align-items: center; gap: 22px; margin-bottom: 28px; flex-wrap: wrap; }
.dl-logo-big {
    width: 84px; height: 84px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.05);
    display: grid; place-items: center;
    overflow: hidden;
    flex-shrink: 0;
}
.dl-logo-big svg { width: 40px; height: 40px; fill: #fff; }
.dl-ver { font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 800; margin-bottom: 6px; background: linear-gradient(90deg, #fff, #d4d4d8, #fff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.dl-tagline { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 0.86rem; }
.mini-feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 28px; }
.glowbtn {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    border-radius: 14px;
    padding: 15px 40px;
    background: none;
    color: var(--text);
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}
.glowbtn::before {
    content: '';
    position: absolute; inset: 0; z-index: -2;
    border-radius: inherit;
    background: linear-gradient(100deg, rgba(255,255,255,0.35), rgba(255,255,255,0.1), rgba(255,255,255,0.35));
    opacity: 0.5;
    transition: opacity 0.5s ease;
}
.glowbtn::after {
    content: '';
    position: absolute; inset: 1px; z-index: -1;
    border-radius: 13px;
    background: #000;
}
.glowbtn:hover::before { opacity: 1; }
.glowbtn svg { transition: transform 0.3s ease; }
.glowbtn:hover svg { transform: translateX(4px); }
.upd-panel { padding: 22px; border-radius: 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.upd-head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.upd-head h3 { font-size: 1.12rem; display: flex; align-items: center; gap: 10px; flex: 1; }
.icon-btn {
    width: 36px; height: 36px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text);
    cursor: pointer;
    transition: background 0.25s ease;
}
.icon-btn:hover { background: rgba(255,255,255,0.2); }
.chlog { display: flex; flex-direction: column; gap: 10px; max-height: 320px; overflow-y: auto; padding-right: 6px; }
.chlog::-webkit-scrollbar { width: 6px; }
.chlog::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 999px; }
.cl-item {
    position: relative;
    padding: 12px 14px 12px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    color: var(--muted);
    font-size: 0.83rem;
    transition: background 0.3s ease, color 0.3s ease;
}
.cl-item::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 3px; height: 0;
    border-radius: 999px;
    background: linear-gradient(to bottom, #fff, #9ca3af);
    transition: height 0.3s ease;
}
.cl-item:hover { background: rgba(255,255,255,0.09); color: var(--text-2); }
.cl-item:hover::before { height: 100%; }
.scan-panel { margin-top: 28px; padding: 22px; border-radius: 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.scan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.scan-card {
    display: flex; align-items: center; gap: 14px;
    padding: 15px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s ease, border-color 0.3s ease;
}
.scan-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.scan-logo {
    width: 42px; height: 42px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.08);
    display: grid; place-items: center;
    overflow: hidden;
    font-weight: 800; font-size: 0.8rem; color: #fff;
}
.scan-t { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.scan-m { font-size: 0.78rem; color: var(--text-2); display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.scan-r { font-size: 0.76rem; color: var(--muted); margin-top: 2px; }

/* ===== METHOD ===== */
.m-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.m-card {
    display: flex; flex-direction: column; gap: 14px;
    padding: 26px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background:
        radial-gradient(ellipse at top, rgba(255,255,255,0.05), transparent 55%),
        linear-gradient(135deg, rgba(255,255,255,0.05), rgba(0,0,0,0.4));
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: transform 0.35s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.m-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.22); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.m-img { height: 76px; display: grid; place-items: center; font-size: 1.5rem; font-weight: 800; color: var(--text); }
.m-img img { max-height: 64px; max-width: 80%; object-fit: contain; }
.m-card h3 { font-size: 1.15rem; }
.m-desc { color: var(--muted); font-size: 0.87rem; }
.m-feats { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 0.82rem; color: var(--text-2); }
.m-feats li { display: flex; align-items: center; gap: 9px; }
.m-feats i { color: var(--text); font-size: 0.75rem; }
.m-card .glowbtn { margin-top: auto; padding: 11px 26px; font-size: 0.9rem; justify-content: center; }
.rot-wrap { position: relative; border-radius: 20px; padding: 1px; overflow: hidden; isolation: isolate; }
.rot-wrap::before {
    content: '';
    position: absolute; inset: -120%;
    z-index: -1;
    background: conic-gradient(#ffd60a, #c45cff, #fff45c, #a838ff, #ffd60a);
    animation: rotSpin 4.5s linear infinite;
}
@keyframes rotSpin { to { transform: rotate(360deg); } }
.rot-inner { position: relative; border-radius: 19px; background: #050505; padding: 26px; }
.modal-ov {
    position: fixed; inset: 0; z-index: 200;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.85);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    padding: 20px;
}
.modal-box {
    position: relative;
    width: 100%; max-width: 560px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: #050505;
    padding: 28px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.7);
    animation: fadeUp 0.35s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.modal-close {
    position: absolute; top: 16px; right: 16px;
    width: 34px; height: 34px;
    border-radius: 50%;
    display: grid; place-items: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--text-2);
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}
.modal-close:hover { background: rgba(255,255,255,0.12); color: #fff; }
.ver-opt {
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    width: 100%;
    margin-top: 12px;
    padding: 16px 18px;
    border-radius: 13px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text);
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
.ver-opt:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.22); transform: scale(1.01); }
.ver-opt small { display: block; font-weight: 400; font-size: 0.74rem; color: var(--muted); margin-top: 3px; }
.ver-opt .badge { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; padding: 3px 9px; border-radius: 999px; background: rgba(255,255,255,0.12); }

/* ===== EXECUTOR ===== */
.ex-shell { max-width: 1280px; margin: 0 auto; padding: 118px 20px 40px; }
.ex-window {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(160deg, #0c0c0c, #050505);
    box-shadow: 0 40px 120px rgba(0,0,0,0.65);
}
.ex-titlebar {
    height: 44px;
    display: flex; align-items: center; gap: 8px;
    padding: 0 14px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ex-titlebar .xe-dot { width: 10px; height: 10px; border-radius: 50%; background: #2e2e2e; }
.ex-wtitle { margin-left: 8px; font-size: 0.72rem; letter-spacing: 0.14em; color: var(--faint); }
.ex-wactions { margin-left: auto; display: flex; gap: 8px; }
.ex-tabs { display: flex; align-items: flex-end; gap: 4px; padding: 10px 14px 0; background: rgba(255,255,255,0.02); border-bottom: 1px solid rgba(255,255,255,0.08); }
.ex-tab {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.08);
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    background: rgba(255,255,255,0.04);
    color: var(--muted);
    font-size: 0.78rem;
    cursor: default;
    max-width: 200px;
}
.ex-tab.on { background: #101010; color: var(--text); }
.ex-tab .t { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ex-add { padding: 8px 12px; color: var(--faint); font-size: 0.9rem; }
.ex-toolbar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.tb-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px;
    border-radius: 9px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #e5e5e5;
    font-family: var(--font-main);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}
.tb-btn:hover { background: rgba(255,255,255,0.11); }
.tb-btn.accent { background: #fff; border-color: #fff; color: #000; }
.tb-btn.accent:hover { box-shadow: 0 0 24px rgba(255,255,255,0.35); }
.tb-sep { flex: 1; }
.ex-main { display: grid; grid-template-columns: 1fr 330px; }
.ed-pane { display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,0.08); min-width: 0; }
.ed-area { position: relative; flex: 1; min-height: 430px; background: #0a0a0a; }
.ed-gutter {
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 48px;
    padding: 14px 8px 14px 0;
    text-align: right;
    color: #3f3f46;
    font-family: 'Consolas', monospace;
    font-size: 0.78rem;
    line-height: 1.75;
    overflow: hidden;
    border-right: 1px solid rgba(255,255,255,0.06);
    user-select: none;
}
#edText {
    position: absolute; inset: 0;
    padding: 14px 16px 14px 60px;
    background: transparent;
    color: #e4e4e7;
    caret-color: #fff;
    border: none; outline: none; resize: none;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 0.82rem;
    line-height: 1.75;
    white-space: pre;
    overflow: auto;
}
.ed-status { height: 30px; display: flex; align-items: center; gap: 18px; padding: 0 14px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.66rem; color: var(--faint); }
.ed-status .ok { color: #4ade80; }
.hub-pane { display: flex; flex-direction: column; min-width: 0; background: rgba(255,255,255,0.015); }
.hub-head { display: flex; gap: 8px; padding: 12px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.hub-search {
    flex: 1; min-width: 0;
    padding: 9px 12px;
    border-radius: 9px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text);
    font-family: var(--font-main);
    font-size: 0.8rem;
    outline: none;
    transition: border-color 0.25s ease;
}
.hub-search:focus { border-color: rgba(255,255,255,0.28); }
.hub-search::placeholder { color: var(--faint); }
.hub-list { flex: 1; overflow-y: auto; padding: 10px; display: flex; flex-direction: column; gap: 8px; max-height: 520px; }
.hub-list::-webkit-scrollbar { width: 6px; }
.hub-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 999px; }
.hub-item { padding: 11px 12px; border-radius: 10px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); transition: background 0.25s ease, border-color 0.25s ease; }
.hub-item:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); }
.hub-row { display: flex; align-items: baseline; gap: 8px; }
.hub-t { font-size: 0.82rem; font-weight: 600; color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hub-load { margin-left: auto; flex-shrink: 0; background: none; border: none; color: var(--faint); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; cursor: pointer; transition: color 0.2s ease; }
.hub-load:hover { color: #fff; }
.hub-g { font-size: 0.68rem; color: var(--faint); margin-top: 3px; }
.hub-tags { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.tag { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.05em; padding: 2px 9px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.14); color: var(--muted); }
.tag.ok { color: #4ade80; border-color: rgba(74,222,128,0.4); }
.tag.warn { color: #facc15; border-color: rgba(250,204,21,0.35); }
.console { border-top: 1px solid rgba(255,255,255,0.08); background: #070707; max-height: 150px; overflow-y: auto; padding: 10px 16px; font-family: 'Consolas', monospace; font-size: 0.73rem; line-height: 1.9; color: #9ca3af; }
.console .ok { color: #4ade80; }
.console .err { color: #f87171; }
.console .sys { color: #71717a; }
.set-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.set-row:last-child { border-bottom: none; }
.set-row span { font-size: 0.88rem; color: var(--text-2); }
.sw { position: relative; width: 40px; height: 22px; border-radius: 999px; background: rgba(255,255,255,0.15); cursor: pointer; transition: background 0.25s ease; flex-shrink: 0; border: none; }
.sw::after { content: ''; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: #fff; transition: left 0.25s ease; }
.sw.on { background: #fff; }
.sw.on::after { left: 21px; background: #000; }
@media (max-width: 1080px) {
    .ex-main { grid-template-columns: 1fr; }
    .ed-pane { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .ed-area { min-height: 320px; }
    .hub-list { max-height: 320px; }
}

@media (max-width: 900px) {
    .help-grid { grid-template-columns: 1fr; }
    .feat-grid { grid-template-columns: 1fr 1fr; }
    .mini-feats { grid-template-columns: 1fr; }
    .m-cards { grid-template-columns: 1fr; }
    .dl-grid { grid-template-columns: 1fr; }
    .scan-grid { grid-template-columns: 1fr; }
    .dl-card { padding: 24px; }
    .about-card { padding: 24px; }
}
@media (max-width: 560px) {
    .feat-grid { grid-template-columns: 1fr; }
}

/* ===== Анимация героя при открытии страницы ===== */
@keyframes heroIn {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: none; }
}
.page-hero .container { animation: heroIn 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
.page-hero .container p { animation: heroIn 0.8s 0.18s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
.cr-table td span.cr-amount-rbx {
    color: #fbbf24;
}
tr:hover .cr-table td span.cr-amount-rbx {
    color: #fde047;
}

/* CREDITS ANIM */
.cr-card { animation: crCardIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) backwards; }
.cr-grid-2 .cr-card:nth-child(2) { animation-delay: 0.14s; }
@keyframes crCardIn { from { opacity: 0; transform: translateY(20px) scale(0.985); } to { opacity: 1; transform: none; } }
.cr-table tbody tr { animation: crRowIn 0.55s ease-out backwards; }
.cr-table tbody tr:nth-child(1) { animation-delay: 0,13s; }
.cr-table tbody tr:nth-child(2) { animation-delay: 0,18s; }
.cr-table tbody tr:nth-child(3) { animation-delay: 0,23s; }
.cr-table tbody tr:nth-child(4) { animation-delay: 0,28s; }
.cr-table tbody tr:nth-child(5) { animation-delay: 0,33s; }
.cr-table tbody tr:nth-child(6) { animation-delay: 0,38s; }
.cr-table tbody tr:nth-child(7) { animation-delay: 0,43s; }
.cr-table tbody tr:nth-child(8) { animation-delay: 0,48s; }
.cr-table tbody tr:nth-child(9) { animation-delay: 0,53s; }
.cr-table tbody tr:nth-child(10) { animation-delay: 0,58s; }
.cr-table tbody tr:nth-child(11) { animation-delay: 0,63s; }
.cr-table tbody tr:nth-child(12) { animation-delay: 0,68s; }
.cr-table tbody tr:nth-child(13) { animation-delay: 0,73s; }
.cr-table tbody tr:nth-child(14) { animation-delay: 0,78s; }
@keyframes crRowIn { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: none; } }
.cr-head-icon { animation: crPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s backwards; }
@keyframes crPop { from { transform: scale(0.5); opacity: 0; } to { transform: none; opacity: 1; } }
.cr-card:hover .cr-head-icon { transform: rotate(-8deg) scale(1.1); transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); }