﻿:root {
    --ink-900: #102531;
    --ink-800: #163444;
    --jade-700: #21494b;
    --gold-500: #c59a55;
    --paper: rgba(248, 243, 233, 0.82);
    --paper-strong: rgba(255, 250, 242, 0.94);
    --line: rgba(44, 62, 80, 0.12);
    --text: #20313b;
    --muted: #657480;
    --shadow: 0 22px 60px rgba(16, 37, 49, 0.14);
    --radius-xl: 28px;
    --radius-lg: 22px;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    min-height: 100%;
    font-family: "Microsoft YaHei UI", "PingFang SC", "Noto Serif SC", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(197, 154, 85, 0.22), transparent 28%),
        radial-gradient(circle at 80% 0%, rgba(33, 73, 75, 0.22), transparent 26%),
        linear-gradient(135deg, #f5efe3 0%, #efe7d7 38%, #f8f4eb 100%);
}

body::before,
body::after {
    content: "";
    position: fixed;
    width: 30vw;
    height: 30vw;
    border-radius: 999px;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.32;
}

body::before {
    top: -10vw;
    right: -8vw;
    background: rgba(40, 88, 90, 0.4);
}

body::after {
    bottom: -12vw;
    left: -10vw;
    background: rgba(197, 154, 85, 0.25);
}

a {
    color: inherit;
    text-decoration: none;
}

.shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    min-height: 100vh;
}

.sidebar {
    padding: 28px 24px;
    background: linear-gradient(180deg, rgba(16, 37, 49, 0.96), rgba(22, 52, 68, 0.92));
    color: #f7f0e6;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.brand {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: center;
}

.brand-mark {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(227, 202, 160, 0.9), rgba(197, 154, 85, 0.82));
    color: var(--ink-900);
    display: grid;
    place-items: center;
    font-size: 26px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.brand h1 {
    margin: 4px 0 0;
    font-size: 22px;
    line-height: 1.3;
}

.brand-kicker,
.eyebrow {
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(247, 240, 230, 0.7);
}

.identity-card,
.sidebar-note {
    padding: 18px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.identity-card h2 {
    margin: 10px 0 6px;
    font-size: 24px;
}

.identity-card p,
.sidebar-note ul {
    margin: 0;
    color: rgba(247, 240, 230, 0.8);
}

.identity-accent {
    margin: 14px 0;
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), rgba(255, 255, 255, 0.15));
}

select,
input,
textarea,
button { font: inherit; }

.identity-form select,
input,
textarea,
select {
    width: 100%;
    border: 1px solid rgba(32, 49, 59, 0.12);
    background: rgba(255, 250, 242, 0.94);
    border-radius: 14px;
    padding: 12px 14px;
    color: var(--text);
    outline: none;
}

.nav {
    display: grid;
    gap: 10px;
}

.nav-link {
    padding: 14px 16px;
    border-radius: 16px;
    color: rgba(247, 240, 230, 0.78);
    transition: 160ms ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(2px);
}

.sidebar-note ul {
    margin-top: 12px;
    padding-left: 18px;
    line-height: 1.8;
}

.main {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
}

.topbar h2 {
    margin: 6px 0 0;
    font-size: 34px;
    color: var(--ink-900);
}

.topbar .eyebrow { color: var(--muted); }

.topbar-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.topbar-meta span,
.chip,
.tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(197, 154, 85, 0.22);
    color: var(--ink-800);
}

.flash-stack { display: grid; gap: 10px; }

.flash {
    padding: 14px 18px;
    border-radius: 16px;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.hero,
.panel,
.metric-card {
    position: relative;
    overflow: hidden;
    background: var(--paper);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.hero::before,
.panel::before,
.metric-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 28%), radial-gradient(circle at top right, rgba(197, 154, 85, 0.16), transparent 25%);
    pointer-events: none;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.8fr);
    gap: 24px;
    padding: 30px;
}

.hero-copy h3 {
    margin: 10px 0 14px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
    color: var(--ink-900);
}

.hero-copy p:last-of-type {
    max-width: 720px;
    line-height: 1.8;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.button {
    border: none;
    cursor: pointer;
    border-radius: 14px;
    padding: 12px 18px;
    transition: 160ms ease;
}

.button:hover { transform: translateY(-1px); }

.button.primary {
    background: linear-gradient(135deg, var(--ink-900), var(--jade-700));
    color: #fff;
    box-shadow: 0 14px 28px rgba(16, 37, 49, 0.18);
}

.button.secondary,
.button.tiny {
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(32, 49, 59, 0.12);
    color: var(--ink-900);
}

.button.tiny { padding: 8px 12px; }

.hero-panel {
    display: grid;
    gap: 14px;
    align-content: start;
}

.seal {
    display: inline-grid;
    place-items: center;
    width: 120px;
    height: 120px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(197, 154, 85, 0.18), rgba(16, 37, 49, 0.9));
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.22em;
}

.hero-stat,
.metric-card { padding: 20px; }

.hero-stat strong,
.metric-card strong {
    display: block;
    font-size: 34px;
    color: var(--ink-900);
}

.hero-stat span,
.metric-card span,
.muted { color: var(--muted); }

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.metric-card p { margin: 0 0 12px; color: var(--muted); }

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.content-grid.two-thirds {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
}

.panel { padding: 24px; }

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.panel-header h3 {
    margin: 6px 0 0;
    font-size: 24px;
    color: var(--ink-900);
}

.panel .eyebrow { color: var(--muted); }

.card-grid,
.permission-grid,
.ranking-list,
.progress-list,
.attention-list,
.timeline,
.bar-chart,
.donut-stack,
.radar-grid { display: grid; gap: 14px; }

.resource-card,
.permission-card,
.ranking-item,
.progress-item,
.attention-item,
.timeline-item,
.donut-item {
    padding: 18px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(32, 49, 59, 0.08);
}

.resource-topline,
.attention-item,
.timeline-item,
.ranking-item,
.bar-row,
.progress-head,
.progress-meta,
.donut-item,
.meta-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.resource-card h4,
.permission-card h4 { margin: 14px 0 10px; font-size: 20px; }

.meta-list { margin: 12px 0 0; display: grid; gap: 8px; }
.meta-list dt, .meta-list dd { margin: 0; }

.status {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    background: rgba(32, 49, 59, 0.08);
}

.status.已发布,
.status.运行中,
.status.在线,
.status.活跃,
.status.已开放 {
    background: rgba(109, 143, 107, 0.16);
    color: #3c6341;
}

.status.待发布,
.status.筹备中,
.status.体验中 {
    background: rgba(192, 139, 66, 0.16);
    color: #91661d;
}

.status.维护中,
.status.离线 {
    background: rgba(179, 93, 79, 0.14);
    color: #93473c;
}

.table-wrap { overflow: auto; }

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

th, td {
    text-align: left;
    padding: 14px 12px;
    border-bottom: 1px solid rgba(32, 49, 59, 0.08);
    vertical-align: top;
}

th { color: var(--muted); font-weight: 600; font-size: 14px; }
td p { margin: 4px 0 0; }

.filter-grid,
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.filter-grid { grid-template-columns: 2fr 1fr 1fr auto; }
textarea {
    resize: vertical;
    min-height: 108px;
    grid-column: 1 / -1;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.attention-progress { text-align: right; max-width: 240px; }
.attention-progress span { display: block; font-size: 26px; color: var(--ink-900); }

.bar-track {
    width: 100%;
    height: 12px;
    border-radius: 999px;
    background: rgba(32, 49, 59, 0.08);
    overflow: hidden;
}

.bar-track.thin { height: 10px; }
.bar-fill { height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--gold-500), var(--jade-700)); }

.rank-badge {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(197, 154, 85, 0.22), rgba(16, 37, 49, 0.92));
    color: #fff;
    font-weight: 700;
}

.ranking-copy p { margin: 6px 0 0; color: var(--muted); }

.progress-ring {
    min-width: 78px;
    min-height: 78px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 250, 242, 0.92) 48%, transparent 49%), conic-gradient(var(--gold-500), var(--jade-700));
    display: grid;
    place-items: center;
    font-weight: 700;
    color: var(--ink-900);
}

.timeline-item span,
.timeline-item em { color: var(--muted); font-style: normal; white-space: nowrap; }

.permission-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.line-chart {
    min-height: 260px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(248, 243, 233, 0.72));
    border: 1px solid rgba(32, 49, 59, 0.08);
    padding: 20px;
}

.line-chart svg { width: 100%; height: 220px; display: block; }
.bar-row span:first-child { min-width: 112px; color: var(--ink-900); }
.bar-row.vertical span:first-child { min-width: 136px; }
.donut-item strong { font-size: 30px; color: var(--ink-900); }
.radar-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.radar-item { text-align: center; }

.radar-ring {
    width: 116px;
    height: 116px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 250, 242, 0.92) 50%, transparent 51%), conic-gradient(var(--gold-500) calc(var(--score) * 1%), rgba(32, 49, 59, 0.08) 0);
    display: grid;
    place-items: center;
    font-size: 24px;
    color: var(--ink-900);
    font-weight: 700;
}

@media (max-width: 1200px) {
    .shell { grid-template-columns: 1fr; }
    .sidebar { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
    .metrics-grid,
    .content-grid,
    .content-grid.two-thirds,
    .permission-grid,
    .radar-grid { grid-template-columns: 1fr; }
    .hero { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .main, .sidebar { padding: 18px; }
    .topbar { flex-direction: column; align-items: flex-start; }
    .filter-grid, .form-grid { grid-template-columns: 1fr; }
    .hero-copy h3 { font-size: 30px; }
    .timeline-item,
    .attention-item,
    .ranking-item,
    .bar-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .progress-ring, .radar-ring { width: 92px; height: 92px; }
}

body.screen-body {
    background:
        radial-gradient(circle at 15% 20%, rgba(197, 154, 85, 0.14), transparent 24%),
        radial-gradient(circle at 80% 8%, rgba(96, 135, 122, 0.16), transparent 22%),
        linear-gradient(135deg, #f1eadf 0%, #e8e1d2 42%, #f6f1e7 100%);
}

.screen-hero,
.screen-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(19, 38, 48, 0.94), rgba(30, 63, 68, 0.9)),
        radial-gradient(circle at top right, rgba(197, 154, 85, 0.18), transparent 32%);
    color: #f7efe3;
    border: 1px solid rgba(197, 154, 85, 0.16);
    box-shadow: 0 26px 70px rgba(13, 26, 33, 0.22);
}

.screen-hero::before,
.screen-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 28%),
        radial-gradient(circle at bottom left, rgba(197, 154, 85, 0.16), transparent 22%);
    pointer-events: none;
}

.screen-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) 320px;
    gap: 24px;
    padding: 32px;
}

.screen-heading h3 {
    margin: 10px 0 14px;
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 1.08;
}

.screen-heading p:last-child {
    max-width: 760px;
    line-height: 1.85;
    color: rgba(247, 239, 227, 0.78);
}

.screen-index {
    display: grid;
    place-items: center;
}

.index-orbit {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    background:
        radial-gradient(circle at center, rgba(17, 35, 44, 0.94) 38%, transparent 39%),
        conic-gradient(from 120deg, rgba(197, 154, 85, 0.92), rgba(89, 132, 120, 0.84), rgba(197, 154, 85, 0.92));
    box-shadow: inset 0 0 0 16px rgba(255, 255, 255, 0.04);
}

.index-orbit span,
.index-orbit small {
    display: block;
    color: rgba(247, 239, 227, 0.75);
}

.index-orbit strong {
    display: block;
    font-size: 64px;
    line-height: 1;
    margin: 12px 0;
}

.screen-grid {
    display: grid;
    gap: 18px;
}

.screen-grid-top {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.screen-grid-main {
    grid-template-columns: 1.4fr 0.9fr;
}

.screen-grid-mid {
    grid-template-columns: 1.3fr 0.9fr;
}

.screen-grid-bottom {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.screen-card {
    padding: 24px;
}

.screen-card.metric p,
.screen-card-header .eyebrow,
.signal-item small,
.signal-item span {
    color: rgba(247, 239, 227, 0.68);
}

.screen-card.metric strong {
    display: block;
    margin: 8px 0 10px;
    font-size: 42px;
    color: #fff2dc;
}

.screen-card.metric span {
    color: rgba(247, 239, 227, 0.78);
}

.screen-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.screen-card-header h3 {
    margin: 6px 0 0;
    font-size: 24px;
    color: #fff0d6;
}

.virtue-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

.virtue-item {
    text-align: center;
}

.virtue-disc {
    --size: 110px;
    width: var(--size);
    height: var(--size);
    margin: 0 auto 10px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at center, rgba(19, 38, 48, 0.94) 50%, transparent 51%),
        conic-gradient(#d4ab67 calc(var(--score) * 1%), rgba(255, 255, 255, 0.08) 0);
    color: #fff2dc;
    font-size: 28px;
    font-weight: 700;
}

.screen-radar-grid,
.signal-list {
    display: grid;
    gap: 14px;
}

.screen-radar-item,
.signal-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.screen-radar-item span:first-child {
    min-width: 96px;
    color: #fff0d6;
}

.screen-radar-item strong {
    color: #fff2dc;
}

.screen-card .bar-track {
    background: rgba(255, 255, 255, 0.12);
}

.screen-card .bar-fill {
    background: linear-gradient(90deg, #d8b16f, #6ea295);
}

.screen-chart {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.06);
}

.screen-score-item strong {
    color: #fff0d6;
}

.screen-score-item span {
    color: rgba(247, 239, 227, 0.75);
}

@media (max-width: 1200px) {
    .screen-hero,
    .screen-grid-top,
    .screen-grid-main,
    .screen-grid-mid,
    .screen-grid-bottom,
    .virtue-grid {
        grid-template-columns: 1fr;
    }

    .index-orbit {
        width: 200px;
        height: 200px;
    }
}

.screen-body .shell {
    grid-template-columns: 1fr;
}

.screen-body .sidebar {
    display: none;
}

.screen-body .main {
    min-height: 100vh;
    padding: 18px 20px 22px;
    gap: 16px;
}

.screen-body .topbar {
    align-items: center;
    padding: 10px 14px;
    border-radius: 22px;
    background: rgba(16, 37, 49, 0.74);
    border: 1px solid rgba(197, 154, 85, 0.16);
    box-shadow: 0 18px 45px rgba(10, 18, 25, 0.22);
}

.screen-body .topbar h2,
.screen-body .topbar .eyebrow {
    color: #f7efe3;
}

.screen-meta-panel {
    align-items: center;
}

.screen-fullscreen-btn {
    border: 1px solid rgba(216, 177, 111, 0.45);
    background: linear-gradient(135deg, rgba(216, 177, 111, 0.2), rgba(95, 148, 139, 0.22));
    color: #fff3de;
    border-radius: 999px;
    padding: 10px 16px;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.screen-fullscreen-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(216, 177, 111, 0.18);
    border-color: rgba(216, 177, 111, 0.7);
}

.screen-stage {
    position: relative;
    min-height: calc(100vh - 110px);
    display: grid;
    gap: 16px;
    padding: 6px 2px 2px;
    isolation: isolate;
}

.screen-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: repeating-linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.028),
        rgba(255, 255, 255, 0.028) 1px,
        transparent 1px,
        transparent 7px
    );
    mix-blend-mode: soft-light;
    pointer-events: none;
    opacity: 0.4;
    animation: screenScan 14s linear infinite;
}

.screen-aura {
    position: absolute;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.28;
    pointer-events: none;
    z-index: -2;
}

.screen-aura-one {
    width: 360px;
    height: 360px;
    top: 2%;
    left: 4%;
    background: rgba(212, 171, 103, 0.45);
    animation: auraFloat 9s ease-in-out infinite;
}

.screen-aura-two {
    width: 420px;
    height: 420px;
    right: 1%;
    bottom: 8%;
    background: rgba(95, 148, 139, 0.38);
    animation: auraFloat 11s ease-in-out infinite reverse;
}

.screen-gridlines {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    opacity: 0.34;
    pointer-events: none;
    z-index: -1;
}

.screen-hero,
.screen-card {
    backdrop-filter: blur(18px);
}

.screen-hero {
    min-height: 230px;
}

.index-orbit {
    animation: orbitGlow 8s linear infinite;
}

.index-orbit::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    border: 1px solid rgba(255, 243, 222, 0.18);
    animation: orbitPulse 3.4s ease-in-out infinite;
}

.screen-card-animated {
    animation: cardEnter 0.8s ease forwards;
    opacity: 0;
    transform: translateY(18px);
}

.delay-a { animation-delay: 0.08s; }
.delay-b { animation-delay: 0.16s; }
.delay-c { animation-delay: 0.24s; }
.delay-d { animation-delay: 0.32s; }
.delay-e { animation-delay: 0.40s; }
.delay-f { animation-delay: 0.48s; }

.screen-card::after {
    content: "";
    position: absolute;
    inset: -40% auto auto -20%;
    width: 45%;
    height: 180%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent);
    transform: rotate(14deg);
    animation: cardSweep 10s linear infinite;
    pointer-events: none;
}

.screen-card.metric strong,
.index-orbit strong,
.virtue-disc span,
.screen-score-item strong {
    text-shadow: 0 0 24px rgba(216, 177, 111, 0.24);
}

.screen-card .bar-fill {
    position: relative;
    overflow: hidden;
}

.screen-card .bar-fill::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: barFlow 2.6s linear infinite;
}

.signal-item,
.screen-radar-item,
.screen-score-item {
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.signal-item:hover,
.screen-radar-item:hover,
.screen-score-item:hover {
    transform: translateY(-2px);
    border-color: rgba(216, 177, 111, 0.28);
    background: rgba(255, 255, 255, 0.08);
}

@keyframes screenScan {
    0% { transform: translateY(-2%); }
    100% { transform: translateY(2%); }
}

@keyframes auraFloat {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(14px, -18px, 0) scale(1.06); }
}

@keyframes orbitGlow {
    0% { box-shadow: inset 0 0 0 16px rgba(255, 255, 255, 0.04), 0 0 20px rgba(212, 171, 103, 0.18); }
    50% { box-shadow: inset 0 0 0 16px rgba(255, 255, 255, 0.06), 0 0 36px rgba(95, 148, 139, 0.24); }
    100% { box-shadow: inset 0 0 0 16px rgba(255, 255, 255, 0.04), 0 0 20px rgba(212, 171, 103, 0.18); }
}

@keyframes orbitPulse {
    0%, 100% { transform: scale(1); opacity: 0.45; }
    50% { transform: scale(1.06); opacity: 0.16; }
}

@keyframes cardEnter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardSweep {
    0% { transform: translateX(-120%) rotate(14deg); }
    100% { transform: translateX(320%) rotate(14deg); }
}

@keyframes barFlow {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(150%); }
}

@media (max-width: 1200px) {
    .screen-body .main {
        min-height: auto;
    }

    .screen-body .topbar {
        gap: 12px;
        align-items: flex-start;
    }

    .screen-stage {
        min-height: auto;
    }
}

@media (max-width: 760px) {
    .screen-body .main {
        padding: 12px;
    }

    .screen-meta-panel {
        width: 100%;
    }

    .screen-fullscreen-btn {
        width: 100%;
    }

    .screen-hero {
        padding: 22px;
    }
}

.index-orbit {
    position: relative;
}
