@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700;800&display=swap");

:root {
  --white: rgba(255, 255, 255, 0.98);
  --text: rgba(255, 255, 255, 0.90);
  --soft: rgba(255, 255, 255, 0.80);
  --fade: rgba(255, 255, 255, 0.48);

  --line: rgba(255, 255, 255, 0.11);
  --line-2: rgba(255, 255, 255, 0.15);

  --panel: rgba(48, 38, 82, 0.22);
  --panel-2: rgba(56, 44, 94, 0.24);

  --shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.08);

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;

  --pink: #f78dca;
  --purple: #b779ff;
  --blue: #7fb3ff;

  --transition: 0.28s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #0e1022;
  color: var(--text);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  position: relative;
}

/* 背景层 */
.bg,
.bg-overlay,
.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.bg {
  z-index: -3;
  background:
    linear-gradient(rgba(18, 16, 36, 0.20), rgba(18, 16, 36, 0.32)),
    url("../images/bg.jpg") center center / cover no-repeat;
  transform: scale(1.015);
  filter: saturate(1.02) brightness(0.96);
}

.bg-overlay {
  z-index: -2;
  background:
    linear-gradient(135deg, rgba(18, 14, 36, 0.10), rgba(16, 14, 28, 0.08)),
    url("../images/overlay.png") center center / 260px 260px repeat,
    radial-gradient(circle at 14% 72%, rgba(120, 219, 255, 0.08), transparent 18%),
    radial-gradient(circle at 78% 12%, rgba(214, 154, 255, 0.12), transparent 16%),
    radial-gradient(circle at 58% 84%, rgba(255, 184, 224, 0.06), transparent 16%);
  opacity: 0.82;
}

.bg-noise {
  z-index: -1;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.03) 0.8px, transparent 0.8px);
  background-size: 18px 18px;
  opacity: 0.08;
}

/* 主布局 */
.shell {
  width: 100%;
  max-width: 1120px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 24px 20px;
  display: grid;
  grid-template-columns: 1.34fr 0.88fr;
  gap: 20px;
  align-items: center;
}

/* 玻璃卡片通用 */
.glass {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(48, 38, 82, 0.22);
  backdrop-filter: blur(14px) saturate(112%);
  -webkit-backdrop-filter: blur(14px) saturate(112%);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 0 1px rgba(255, 255, 255, 0.015);
  overflow: hidden;
}

.glass::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 26%),
    radial-gradient(circle at 84% 10%, rgba(215, 162, 255, 0.08), transparent 14%),
    radial-gradient(circle at 14% 86%, rgba(118, 224, 255, 0.05), transparent 16%);
}

/* 左卡 */
.left-card {
  min-height: 600px;
  padding: 38px 36px 28px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 86% 10%, rgba(214, 154, 255, 0.10), transparent 13%),
    radial-gradient(circle at 8% 80%, rgba(120, 219, 255, 0.08), transparent 18%),
    radial-gradient(circle at 48% 100%, rgba(255, 193, 222, 0.05), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(44, 34, 80, 0.24);
}

.left-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(44px);
  pointer-events: none;
}

.left-glow-1 {
  width: 160px;
  height: 160px;
  left: -36px;
  bottom: 88px;
  background: rgba(112, 214, 255, 0.10);
}

.left-glow-2 {
  width: 128px;
  height: 128px;
  right: 18px;
  top: -16px;
  background: rgba(220, 164, 255, 0.10);
}

.left-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 221, 237, 0.10) 0 2px, transparent 3px),
    radial-gradient(circle at 30% 12%, rgba(255, 225, 239, 0.08) 0 1.8px, transparent 3px),
    radial-gradient(circle at 66% 20%, rgba(255, 220, 236, 0.07) 0 1.8px, transparent 3px),
    radial-gradient(circle at 82% 16%, rgba(255, 220, 236, 0.07) 0 2px, transparent 3px),
    radial-gradient(circle at 74% 34%, rgba(255, 255, 255, 0.02) 0 1px, transparent 2px),
    radial-gradient(circle at 28% 30%, rgba(255, 255, 255, 0.02) 0 1px, transparent 2px);
  opacity: .80;
}

.status-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #58e5bf;
  box-shadow:
    0 0 0 5px rgba(88, 229, 191, 0.08),
    0 0 12px rgba(88, 229, 191, 0.18);
}

.hero-title {
  position: relative;
  z-index: 1;
  margin: 24px 0 0;
  font-size: 72px;
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: #fffdfd;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.05),
    0 0 18px rgba(211, 160, 255, 0.04);
  padding-bottom: 8px;
}

.hero-title span {
  display: inline-block;
  background: linear-gradient(90deg, #fff9fe 0%, #e8deff 34%, #a7ebff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding-bottom: 0.06em;
}

.hero-desc {
  position: relative;
  z-index: 1;
  max-width: 610px;
  margin: 36px 0 0;
  font-size: 15px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.hero-actions {
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

.main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 212px;
  height: 52px;
  border-radius: 18px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #f78dca 0%, #b779ff 50%, #7fb3ff 100%);
  box-shadow:
    0 10px 22px rgba(177, 107, 255, 0.18),
    0 0 14px rgba(255, 130, 194, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform var(--transition), filter var(--transition), box-shadow var(--transition);
}

.main-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    0 12px 26px rgba(177, 107, 255, 0.22),
    0 0 16px rgba(255, 130, 194, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.main-btn .arrow {
  font-size: 16px;
  line-height: 1;
}

.hero-tags {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 620px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 15px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    linear-gradient(135deg, rgba(255, 220, 238, 0.06), rgba(173, 227, 255, 0.05)),
    rgba(255, 255, 255, 0.045);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.90);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 4px 10px rgba(0, 0, 0, 0.03);
}

.hero-footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 30px;
  text-align: center;
  font-size: 12px;
  color: var(--fade);
  letter-spacing: 0.02em;
}

/* 右卡 */
.right-card {
  min-height: 600px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(56, 44, 94, 0.24);
}

.preview-card {
  position: relative;
  height: 210px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
}

.preview-cover {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.14)),
    url("../images/1.jpeg") center center / cover no-repeat;
  transform: scale(1.02);
}

.preview-bar {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  min-height: 74px;
  padding: 14px 14px 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 226, 238, 0.16), rgba(214, 206, 255, 0.12)),
    rgba(94, 70, 102, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(14px) saturate(115%);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.preview-meta strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px;
}

.preview-meta em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.preview-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 102px;
  height: 42px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #f78dca 0%, #b779ff 50%, #7fb3ff 100%);
  box-shadow: 0 8px 16px rgba(180, 110, 255, 0.16);
  transition: transform var(--transition), filter var(--transition), box-shadow var(--transition);
}

.preview-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 10px 18px rgba(180, 110, 255, 0.20);
}

.info-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* =========================
   信息卡最终 hover 版
========================= */

.info-box {
  position: relative;
  display: block;
  min-height: 102px;
  padding: 16px 16px 12px;
  border-radius: 18px;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(135deg, rgba(255, 222, 239, 0.04), rgba(180, 229, 255, 0.035)),
    rgba(69, 53, 101, 0.18);

  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease,
    filter 0.28s ease;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 0 0 rgba(0, 0, 0, 0);

  will-change: transform;
}


/* ========= 亮光（只进不退）========= */

.info-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 70%;
  height: 100%;

  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.10),
      transparent);

  transform: skewX(-20deg);
  pointer-events: none;
  opacity: 0;
}


/* 👉 hover 时触发一次 */

.info-box:hover::after {
  opacity: 1;
  animation: shine-once 0.65s ease forwards;
}


/* 👉 移开直接消失，不回划 */

.info-box:not(:hover)::after {
  opacity: 0;
  animation: none;
}


@keyframes shine-once {
  from {
    left: -140%;
  }

  to {
    left: 160%;
  }
}


/* ========= hover整体效果 ========= */

.info-box:hover {
  transform: translateY(-6px);

  border-color: rgba(255, 255, 255, 0.18);

  background:
    linear-gradient(135deg, rgba(255, 210, 233, 0.08), rgba(150, 223, 255, 0.06)),
    rgba(82, 61, 118, 0.24);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 24px rgba(0, 0, 0, 0.08);

  filter: brightness(1.03);
}


/* ========= 标题/正文提亮 ========= */

.info-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;

  transition: color 0.28s ease, transform 0.28s ease;
}

.info-box:hover strong {
  transform: translateY(-1px);
  color: #ffffff;
}

.info-box span {
  display: block;
  font-size: 12px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.76);

  transition: color 0.28s ease;
}

.info-box:hover span {
  color: rgba(255, 255, 255, 0.88);
}


/* ========= 右上角箭头 ========= */

.info-arrow {
  position: absolute;
  top: 12px;
  right: 14px;
  font-style: normal;
  font-size: 14px;
  line-height: 1;

  color: rgba(255, 255, 255, 0.38);

  transition:
    transform 0.28s ease,
    color 0.28s ease,
    opacity 0.28s ease;

  pointer-events: none;
}

.info-box:hover .info-arrow {
  transform: translate(2px, -2px);
  color: rgba(255, 255, 255, 0.82);
}

.info-arrow {
  position: absolute;
  top: 12px;
  right: 14px;
  font-style: normal;
  font-size: 14px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.38);
  transition: transform 0.28s ease, color 0.28s ease, opacity 0.28s ease;
  pointer-events: none;
}

.info-box:hover .info-arrow {
  transform: translate(2px, -2px);
  color: rgba(255, 255, 255, 0.82);
}

/* 四张卡 hover 时带一点不同色的泛光 */
.box-home:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 24px rgba(0, 0, 0, 0.08),
    0 0 18px rgba(127, 179, 255, 0.10);
}

.box-backup:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 24px rgba(0, 0, 0, 0.08),
    0 0 18px rgba(183, 121, 255, 0.10);
}

.box-log:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 24px rgba(0, 0, 0, 0.08),
    0 0 18px rgba(247, 141, 202, 0.10);
}

.box-group:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 24px rgba(0, 0, 0, 0.08),
    0 0 18px rgba(88, 229, 191, 0.10);
}

.notice-box {
  margin-top: 14px;
  padding: 16px 16px 13px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(135deg, rgba(255, 225, 239, 0.05), rgba(168, 214, 255, 0.04)),
    rgba(72, 56, 108, 0.20);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 8px 14px rgba(0, 0, 0, 0.03);
}

.notice-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

.notice-box p {
  margin: 0;
  font-size: 12px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.84);
}

/* 入场动画 */
.reveal {
  opacity: 0;
  filter: blur(8px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s ease;
}

.reveal-up {
  transform: translateY(26px);
}

.reveal-right {
  transform: translateX(34px);
}

.reveal.active {
  opacity: 1;
  transform: translate(0, 0);
  filter: blur(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

.delay-4 {
  transition-delay: 0.32s;
}

.delay-5 {
  transition-delay: 0.40s;
}

/* 轻微漂浮 */
.left-card,
.right-card {
  animation: floaty 8s ease-in-out infinite;
}

.right-card {
  animation-delay: 1.2s;
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* 响应式 */
@media (max-width: 1180px) {
  .shell {
    max-width: 860px;
    grid-template-columns: 1fr;
  }

  .left-card,
  .right-card {
    min-height: auto;
  }

  .hero-title {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  .shell {
    padding: 16px 14px 24px;
    gap: 14px;
  }

  .left-card,
  .right-card {
    border-radius: 22px;
  }

  .left-card {
    padding: 24px 20px 22px;
  }

  .right-card {
    padding: 12px;
  }

  .hero-title {
    font-size: 44px;
    line-height: 0.95;
  }

  .hero-desc {
    font-size: 14px;
    line-height: 1.9;
  }

  .main-btn {
    width: 100%;
  }

  .hero-tags span {
    width: 100%;
  }

  .preview-card {
    height: 220px;
  }

  .preview-bar {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
  }

  .preview-btn {
    width: 100%;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   风吹樱花特效 🌸
========================= */
/* 花瓣层 */
#petal-canvas {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	pointer-events: none;
}

/* 如果你的主要内容层级不够高，可以给内容容器加更高层级 */
/* 例如：
#wrapper, #main, #header, #footer {
	position: relative;
	z-index: 3;
}
*/