    :root {
      --bg: #0b0b0d;
      --card: #121216;
      --line: #26262b;
      --text: #eaeaf0;
      --sub: #b8bac7;
      --btn: #1f6feb;
    }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      background: var(--bg);
      color: var(--text);
      font-family: -apple-system, BlinkMacSystemFont, "Noto Sans TC", Segoe UI, Roboto, Helvetica, Arial;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
    }
    .wrap { width: 100%; max-width: 880px; padding: 32px; }
    .card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 40px 36px;
      box-shadow: 0 10px 30px rgba(0,0,0,.35);
      text-align: center;
    }
    h1 {
      font-size: clamp(22px, 2.2vw, 30px);
      font-weight: 800;
      letter-spacing: .3px;
      line-height: 1.25;
      margin: 0 0 18px;
      text-align: center;
    }
    h1 .server-name {
      background: linear-gradient(180deg,#ffffff,#cfe0ff);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 6px 22px rgba(123,163,255,.25);
    }
    h1::after {
      content:"";
      display:block;
      width: 120px;
      height: 3px;
      margin: 10px auto 0;
      border-radius: 999px;
      background: linear-gradient(90deg,#5f8cff, #7cc5ff);
      box-shadow: 0 2px 14px rgba(100,150,255,.35);
    }
    .meta {
      color:#bfc3d4;
      margin: 16px 0 14px;
      font-size: 15px;
    }
    .thumb {
      width: 680px;
      max-width: 100%;
      border-radius: 16px;
      border: 1px solid var(--line);
      display: block;
      margin: 20px auto 24px;
      background: #1a1a21;
      box-shadow: 0 10px 28px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.03) inset;
    }
    .desc {
      max-width: 760px;
      margin: 0 auto 18px;
      text-align: left;
      font-size: clamp(15px, 1.6vw, 16.8px);
      line-height: 1.9;
      color: #e6e8f0;
      letter-spacing: .2px;
    }
    .desc p { margin: .6em 0; }
    .desc strong {
      color:#ffffff;
      text-shadow: 0 4px 18px rgba(140,180,255,.25);
    }
    .progress {
      width: 480px;
      max-width: 90%;
      height: 8px;
      border-radius: 999px;
      background: #1a1a21;
      border: 1px solid var(--line);
      overflow: hidden;
      margin: 14px auto 22px;
    }
    .progress .bar {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, #6aa8ff, #7cc5ff);
    }
    .cta {
      margin-top: 28px;
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .btn {
      display: inline-block;
      padding: 12px 24px;
      border-radius: 12px;
      border: 1px solid #3a3a42;
      text-decoration: none;
      color: #fff;
      background: var(--btn);
      font-size: 15px;
      transition: all .2s ease;
    }
    .btn:hover { filter: brightness(1.1); transform: translateY(-1px); }
    footer {
      opacity: .6;
      text-align: center;
      margin-top: 18px;
      font-size: 12px;
    }