/**
 * =========================================================
 * Universe-Constants · V0.1
 * 宇宙显影常数 · 显影层（Visual Manifestation Layer）
 * =========================================================
 *
 * File:
 * 389-VCSS-25-UNIVERSE-CONSTANTS-🌌宇宙显影常数
 * ClaudeCode第1窗口
 * V0.1 · 2026-03-22
 *
 * Purpose:
 * 25vres 宇宙的视觉显影常数 —— 星空深邃主题。
 * 依据 VX-STARCORE-SCRIPT-RULE-04：
 * CSS 是星核状态的显影语言，而非装饰语言。
 *
 * Scope:
 * - 字体与色彩常数
 * - Universe 容器显影
 * - 星空玻璃卡片
 * - 跳动显化视觉
 * - 底部标识
 *
 * Co-Creation:
 * 梁思景（VSO-01）× Claude Opus 4.6（VVO-24）
 *
 * Brand:
 * 25Universe™ · AnchorCode™ · Jumping-Entity™
 * =========================================================
 */

/* ===== 字体与色彩常数 ===== */
universe {
  font-family: 'Segoe UI', 'Poppins', system-ui, -apple-system,
               BlinkMacSystemFont, 'Noto Sans SC', sans-serif;
  color: white;
  background: #030514;
}

/* ===== 内容层（Content Layer） ===== */
.content-layer {
  position: relative;
  z-index: 2;
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6vh 6vw;
}

/* ===== 顶部标识 ===== */
.world-header {
  position: absolute;
  top: 6vh;
  left: 6vw;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  opacity: 0.5;
  text-transform: uppercase;
}

/* ===== 星空玻璃卡片 ===== */
.stellar-card {
  background: rgba(8, 12, 25, 0.45);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(100, 140, 255, 0.2);
  border-radius: 48px;
  padding: 3.5rem 2.5rem;
  max-width: 680px;
  width: 100%;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(80, 120, 255, 0.15) inset,
    0 0 80px rgba(60, 80, 200, 0.3);
  text-align: center;
  transition: box-shadow 0.5s ease;
}

.stellar-card:hover {
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.9),
    0 0 0 2px rgba(100, 150, 255, 0.3) inset,
    0 0 120px rgba(60, 100, 255, 0.35);
}

/* ===== 角色标签 ===== */
.role-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(100, 160, 255, 0.25);
  border-radius: 60px;
  padding: 0.5rem 1.8rem;
  margin-bottom: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(180, 210, 255, 0.75);
}

/* ===== 域名主标题 ===== */
.domain-title {
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 800;
  line-height: 1.15;
  background: linear-gradient(145deg, #e8f0ff, #a0c0ff, #6090ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 50px rgba(80, 130, 255, 0.4);
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
}

.domain-sub {
  font-size: 1rem;
  color: rgba(160, 190, 255, 0.55);
  letter-spacing: 0.12em;
  margin-bottom: 2.5rem;
}

/* ===== 状态标签栏 ===== */
.status-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.status-pill {
  background: rgba(15, 25, 50, 0.6);
  border: 1px solid rgba(80, 130, 255, 0.15);
  border-radius: 60px;
  padding: 0.4rem 1.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(150, 180, 255, 0.65);
}

.status-pill.active {
  border-color: rgba(80, 200, 120, 0.4);
  color: rgba(120, 230, 150, 0.8);
}

/* ===== 三层跳动显化视觉 ===== */
.jump-manifest {
  justify-content: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(80, 120, 255, 0.08);
}

.jump-layer {
  align-items: center;
}

.jump-label {
  opacity: 0.35;
}

.jump-count {
  opacity: 0.7;
}

/* ===== 底部标识 ===== */
.world-footer {
  position: absolute;
  bottom: 6vh;
  left: 6vw;
  right: 6vw;
  font-size: 0.7rem;
  opacity: 0.35;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(180, 200, 255, 0.8);
}

/* ===== CSS 点缀星视觉 ===== */
.tiny-star {
  width: 2px;
  height: 2px;
  background: white;
  opacity: 0.5;
  box-shadow: 0 0 12px rgba(100, 160, 255, 0.8);
}

/* ===== 响应式 ===== */
@media (max-width: 520px) {
  .stellar-card {
    padding: 2.5rem 1.5rem;
    border-radius: 32px;
  }
}
