
    /* 页面级兜底：防止公共样式覆盖导致容器不居中 */
    body.ai-prompt-page .container {
      width: min(1280px, calc(100% - 48px)) !important;
      margin-left: auto !important;
      margin-right: auto !important;
    }

    body.ai-prompt-page .main-layout {
      margin-left: auto;
      margin-right: auto;
    }

    /* ========================================
       HERO 区域 - 橙黄色系渐变 + 浮动光晕动画
    ======================================== */
    .prompt-hero {
      position: relative;
      overflow: hidden;
      padding: 56px 0 48px;
      background:
        radial-gradient(ellipse 120% 80% at 20% 0%, rgba(251, 191, 36, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 100% 60% at 80% 20%, rgba(245, 158, 11, 0.35) 0%, transparent 45%),
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(217, 119, 6, 0.4) 0%, transparent 40%),
        radial-gradient(ellipse 60% 40% at 10% 80%, rgba(251, 146, 60, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #fbbf24 0%, #f59e0b 25%, #d97706 50%, #ea580c 100%);
      color: #fffbeb;
    }

    /* 浮动光晕效果 - 多层动画 */
    .prompt-hero::before {
      content: "";
      position: absolute;
      top: -30%;
      right: -10%;
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(251, 191, 36, 0.5) 0%, rgba(245, 158, 11, 0.2) 40%, transparent 70%);
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
      animation: floatGlow1 8s ease-in-out infinite;
    }

    .prompt-hero::after {
      content: "";
      position: absolute;
      bottom: -40%;
      left: -15%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(251, 191, 36, 0.1) 40%, transparent 65%);
      border-radius: 50%;
      filter: blur(60px);
      pointer-events: none;
      animation: floatGlow2 10s ease-in-out infinite;
    }

    /* 额外光晕层 */
    .prompt-hero__content::before {
      content: "";
      position: absolute;
      top: 20%;
      left: 30%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(234, 88, 12, 0.2) 0%, transparent 60%);
      border-radius: 50%;
      filter: blur(50px);
      pointer-events: none;
      animation: floatGlow3 12s ease-in-out infinite;
      z-index: 0;
    }

    @keyframes floatGlow1 {
      0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
      50% { transform: translate(-30px, 20px) scale(1.1); opacity: 0.8; }
    }

    @keyframes floatGlow2 {
      0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
      50% { transform: translate(20px, -30px) scale(1.15); opacity: 0.7; }
    }

    @keyframes floatGlow3 {
      0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
      33% { transform: translate(40px, -20px) scale(1.05); opacity: 0.6; }
      66% { transform: translate(-20px, 30px) scale(0.95); opacity: 0.5; }
    }

    .prompt-hero__content {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    /* 标题 - 更大更醒目，带文字渐变 */
    .prompt-hero h1 {
      margin: 0 0 16px;
      font-size: clamp(36px, 6vw, 56px);
      font-weight: 900;
      letter-spacing: -0.03em;
      background: linear-gradient(180deg, #ffffff 0%, #fef3c7 50%, #fde68a 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
      animation: titleShine 3s ease-in-out infinite;
    }

    @keyframes titleShine {
      0%, 100% { filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15)) brightness(1); }
      50% { filter: drop-shadow(0 4px 20px rgba(251, 191, 36, 0.3)) brightness(1.05); }
    }

    .prompt-hero__desc {
      margin: 0 auto 28px;
      max-width: 640px;
      line-height: 1.8;
      font-size: 16px;
      color: rgba(255, 255, 255, 0.95);
      text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    }

    /* 搜索框 - 现代设计，聚焦光晕 */
    .prompt-hero__search {
      max-width: 600px;
      margin: 0 auto;
      position: relative;
    }

    .prompt-hero__search::before {
      content: "";
      position: absolute;
      left: 22px;
      top: 50%;
      transform: translateY(-50%);
      width: 22px;
      height: 22px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23f59e0b' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z'/%3E%3C/svg%3E") no-repeat center;
      background-size: contain;
      pointer-events: none;
      z-index: 2;
      transition: transform 0.3s ease;
    }

    .prompt-hero__search:focus-within::before {
      transform: translateY(-50%) scale(1.1);
    }

    .prompt-hero__search input {
      width: 100%;
      padding: 18px 24px 18px 56px;
      border: 2px solid rgba(255, 255, 255, 0.4);
      border-radius: 50px;
      font-size: 16px;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(12px);
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.1),
        0 0 0 0 rgba(251, 191, 36, 0),
        inset 0 1px 2px rgba(0, 0, 0, 0.05);
      color: var(--ink);
    }

    .prompt-hero__search input:focus {
      outline: none;
      border-color: #fbbf24;
      box-shadow: 
        0 8px 32px rgba(245, 158, 11, 0.25),
        0 0 0 4px rgba(251, 191, 36, 0.15),
        inset 0 1px 2px rgba(0, 0, 0, 0.05);
      transform: translateY(-2px);
    }

    .prompt-hero__search input::placeholder {
      color: #9ca3af;
      transition: color 0.3s ease;
    }

    .prompt-hero__search input:focus::placeholder {
      color: #d1d5db;
    }

    /* 顶部标签 - 毛玻璃效果 */
    .prompt-tags {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-top: 28px;
    }

    .prompt-tags a {
      text-decoration: none;
      color: rgba(255, 255, 255, 0.98);
      font-size: 14px;
      font-weight: 500;
      padding: 10px 20px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 25px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .prompt-tags a:hover {
      background: rgba(255, 255, 255, 0.3);
      border-color: rgba(255, 255, 255, 0.5);
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .prompt-hero__actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-top: 18px;
    }

    .prompt-hero__action {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 18px;
      border-radius: 999px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      color: #7c2d12;
      background: rgba(255, 251, 235, 0.92);
      box-shadow: 0 10px 24px rgba(120, 53, 15, 0.16);
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    }

    .prompt-hero__action:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(120, 53, 15, 0.2);
      background: #fff;
    }

    /* ========================================
       面包屑导航 - 现代简约风格
    ======================================== */
    .breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      background: linear-gradient(135deg, #fff 0%, #fffbeb 100%);
      border-radius: 999px;
      border: 1px solid rgba(251, 191, 36, 0.3);
      box-shadow: 0 2px 8px rgba(245, 158, 11, 0.1);
      font-size: 14px;
      margin: 20px 0;
    }

    .breadcrumb a {
      color: #d97706;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.2s ease;
      padding: 2px 6px;
      border-radius: 6px;
    }

    .breadcrumb a:hover {
      color: #ea580c;
      background: rgba(251, 191, 36, 0.1);
    }

    .breadcrumb__sep {
      color: #fbbf24;
      font-weight: 600;
    }

    .breadcrumb__current {
      color: #78350f;
      font-weight: 600;
      padding: 2px 6px;
    }

    /* ========================================
       侧边栏 - 粘性定位 + 毛玻璃效果
    ======================================== */
    .main-layout {
      display: grid;
      grid-template-columns: 280px minmax(0, 1fr);
      gap: 28px;
      padding-bottom: 48px;
    }

    .prompt-overview {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin: 12px 0 28px;
    }

    .prompt-overview__card {
      padding: 22px 22px 18px;
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 251, 235, 0.96) 100%);
      border: 1px solid rgba(251, 191, 36, 0.22);
      box-shadow: 0 18px 40px rgba(245, 158, 11, 0.1);
    }

    .prompt-overview__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(251, 191, 36, 0.14);
      color: #b45309;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .prompt-overview__card h2 {
      margin: 16px 0 10px;
      font-size: 22px;
      color: #7c2d12;
      letter-spacing: -0.02em;
    }

    .prompt-overview__card p {
      margin: 0 0 16px;
      color: #6b4f1d;
      line-height: 1.75;
      font-size: 14px;
    }

    .prompt-overview__chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .prompt-overview__chips a,
    .prompt-overview__chips button {
      border: 0;
      cursor: pointer;
      text-decoration: none;
      padding: 9px 14px;
      border-radius: 999px;
      background: #fff;
      color: #9a3412;
      font-size: 13px;
      font-weight: 700;
      box-shadow: inset 0 0 0 1px rgba(251, 191, 36, 0.26);
      transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    }

    .prompt-overview__chips a:hover,
    .prompt-overview__chips button:hover {
      transform: translateY(-2px);
      background: #fffbeb;
      box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.35), 0 8px 18px rgba(245, 158, 11, 0.14);
    }

    .prompt-route {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin: 0 0 28px;
    }

    .prompt-route__item {
      padding: 22px 20px;
      border-radius: 22px;
      background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
      border: 1px solid rgba(251, 191, 36, 0.18);
      box-shadow: 0 14px 32px rgba(217, 119, 6, 0.08);
    }

    .prompt-route__step {
      display: inline-flex;
      width: 32px;
      height: 32px;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: linear-gradient(135deg, #f59e0b, #ea580c);
      color: #fff;
      font-weight: 800;
      font-size: 14px;
      margin-bottom: 12px;
    }

    .prompt-route__item h3 {
      margin: 0 0 8px;
      font-size: 18px;
      color: #7c2d12;
    }

    .prompt-route__item p {
      margin: 0;
      color: #6b4f1d;
      line-height: 1.7;
      font-size: 14px;
    }

    .prompt-directory {
      margin: 0 0 30px;
    }

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

    .prompt-directory__section {
      padding: 24px 22px 18px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.88);
      border: 1px solid rgba(251, 191, 36, 0.16);
      box-shadow: 0 14px 36px rgba(148, 163, 184, 0.08);
      backdrop-filter: blur(10px);
      text-align: center;
    }

    .prompt-directory__section h2 {
      margin: 0 0 8px;
      font-size: 22px;
      color: #7c2d12;
    }

    .prompt-directory__section p {
      margin: 0 0 16px;
      color: #6b4f1d;
      line-height: 1.75;
      font-size: 14px;
    }

    .prompt-directory__chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: flex-start;
      justify-content: center;
    }

    .prompt-directory__chips a {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      padding: 9px 14px;
      border-radius: 999px;
      background: #fff7ed;
      color: #9a3412;
      font-size: 13px;
      font-weight: 700;
      box-shadow: inset 0 0 0 1px rgba(251, 191, 36, 0.24);
      transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    }

    .prompt-directory__chips a:hover {
      transform: translateY(-2px);
      background: #fff;
      box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.32), 0 8px 18px rgba(245, 158, 11, 0.12);
    }

    .prompt-sidebar {
      position: sticky;
      top: 24px;
      align-self: start;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 20px;
      border: 1px solid rgba(251, 191, 36, 0.2);
      box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.06),
        0 1px 2px rgba(0, 0, 0, 0.04);
      padding: 20px;
      max-height: calc(100vh - 48px);
      overflow: auto;
      transition: box-shadow 0.3s ease;
    }

    .prompt-sidebar:hover {
      box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 1px 2px rgba(0, 0, 0, 0.04);
    }

    .prompt-sidebar__title {
      font-size: 15px;
      font-weight: 800;
      color: #1f2937;
      margin: 0 0 16px;
      padding-bottom: 16px;
      border-bottom: 2px solid rgba(251, 191, 36, 0.2);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .prompt-sidebar__title::before {
      content: "??";
      font-size: 18px;
    }

    .prompt-sidebar__list {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .prompt-sidebar__item {
      position: relative;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      border-radius: 12px;
      font-size: 14px;
      font-weight: 500;
      color: #4b5563;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      border: none;
      background: transparent;
      width: 100%;
      text-align: left;
      overflow: hidden;
    }

    /* 左侧橙色指示条 */
    .prompt-sidebar__item::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%) scaleY(0);
      width: 4px;
      height: 60%;
      background: linear-gradient(180deg, #fbbf24, #f59e0b, #d97706);
      border-radius: 0 4px 4px 0;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .prompt-sidebar__item:hover {
      background: rgba(251, 191, 36, 0.1);
      color: #d97706;
    }

    .prompt-sidebar__item:hover::before {
      transform: translateY(-50%) scaleY(1);
    }

    /* 选中项 - 渐变背景和阴影 */
    .prompt-sidebar__item.active {
      background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
      color: white;
      font-weight: 600;
      box-shadow: 
        0 4px 16px rgba(245, 158, 11, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.1);
      transform: translateX(4px);
    }

    .prompt-sidebar__item.active::before {
      transform: translateY(-50%) scaleY(0);
    }

    .prompt-sidebar__icon {
      font-size: 18px;
      transition: transform 0.3s ease;
    }

    .prompt-sidebar__item:hover .prompt-sidebar__icon {
      transform: scale(1.1);
    }

    /* ========================================
       卡片设计 - 橙黄色渐变 + 悬停效果
    ======================================== */
    .prompt-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
    }

    .prompt-section {
      background: rgba(255, 255, 255, 0.8);
      border-radius: 24px;
      border: 1px solid rgba(251, 191, 36, 0.15);
      box-shadow: 
        0 8px 32px rgba(148, 163, 184, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.04);
      padding: 24px;
      margin-bottom: 24px;
      backdrop-filter: blur(12px);
      transition: box-shadow 0.3s ease;
    }

    .prompt-section:hover {
      box-shadow: 
        0 12px 40px rgba(148, 163, 184, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.06);
    }

    .prompt-section__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 20px;
    }

    .prompt-section__head h2 {
      margin: 0;
      font-size: 22px;
      font-weight: 700;
      color: #1f2937;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .prompt-section__count {
      font-size: 13px;
      font-weight: 600;
      color: #92400e;
      background: linear-gradient(135deg, #fef3c7, #fde68a);
      border-radius: 999px;
      padding: 8px 16px;
      box-shadow: 0 2px 8px rgba(251, 191, 36, 0.2);
    }

    .prompt-section__footer {
      margin-top: 20px;
      display: flex;
      justify-content: flex-end;
    }

    .prompt-section__more {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: #b45309;
      font-size: 14px;
      font-weight: 700;
      padding: 10px 16px;
      border-radius: 999px;
      background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
      border: 1px solid rgba(251, 146, 60, 0.25);
      box-shadow: 0 2px 10px rgba(249, 115, 22, 0.08);
      transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    }

    .prompt-section__more:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(249, 115, 22, 0.14);
      color: #ea580c;
    }

    .prompt-section--featured {
      border-color: rgba(245, 158, 11, 0.22);
      background:
        radial-gradient(circle at top right, rgba(251, 191, 36, 0.14), transparent 30%),
        linear-gradient(180deg, rgba(255, 251, 235, 0.96) 0%, rgba(255, 247, 237, 0.9) 100%);
    }

    .prompt-section--featured .prompt-section__head h2 {
      color: #9a3412;
    }

    .prompt-section--featured .prompt-section__count {
      background: linear-gradient(135deg, #f59e0b, #ea580c);
      color: #fff7ed;
      box-shadow: 0 8px 20px rgba(245, 158, 11, 0.22);
    }

    .prompt-card {
      display: flex;
      flex-direction: column;
      padding: 24px;
      background: linear-gradient(145deg, #fffbeb 0%, #fef3c7 50%, #fde68a 100%);
      border: 1px solid rgba(251, 191, 36, 0.3);
      border-radius: 20px;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      height: 100%;
      position: relative;
      overflow: hidden;
      box-shadow: 
        0 4px 16px rgba(251, 191, 36, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.05);
    }

    /* 悬停时顶部渐变条 */
    .prompt-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706, #f97316);
      background-size: 200% 100%;
      opacity: 0;
      transition: opacity 0.4s ease;
      animation: gradientFlow 3s linear infinite;
    }

    @keyframes gradientFlow {
      0% { background-position: 0% 50%; }
      100% { background-position: 200% 50%; }
    }

    .prompt-card:hover {
      transform: translateY(-8px) scale(1.01);
      box-shadow: 
        0 20px 40px rgba(245, 158, 11, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.08);
      border-color: rgba(251, 191, 36, 0.5);
    }

    .prompt-card:hover::before {
      opacity: 1;
    }

    .prompt-card__header {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      margin-bottom: 16px;
    }

    .prompt-card__icon {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.15));
      display: grid;
      place-items: center;
      font-size: 24px;
      flex-shrink: 0;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 2px 8px rgba(251, 191, 36, 0.15);
    }

    /* 图标悬浮旋转放大 */
    .prompt-card:hover .prompt-card__icon {
      transform: rotate(8deg) scale(1.15);
      background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(245, 158, 11, 0.25));
      box-shadow: 0 4px 16px rgba(245, 158, 11, 0.25);
    }

    .prompt-card__title-wrap {
      flex: 1;
    }

    .prompt-card__title-wrap h3 {
      margin: 0 0 8px;
      color: #1f2937;
      font-size: 18px;
      font-weight: 700;
      line-height: 1.4;
      transition: color 0.3s ease;
    }

    .prompt-card:hover .prompt-card__title-wrap h3 {
      color: #d97706;
    }

    /* 胶囊形状标签 */
    .prompt-card__category {
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 999px;
      color: #92400e;
      background: rgba(251, 191, 36, 0.25);
      border: 1px solid rgba(251, 191, 36, 0.3);
    }

    .prompt-card__desc {
      margin: 0 0 20px;
      color: #6b7280;
      line-height: 1.8;
      font-size: 14px;
      flex: 1;
    }

    .prompt-card__footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: auto;
    }

    /* 胶囊形状标签 */
    .prompt-card__tag {
      font-size: 12px;
      font-weight: 500;
      color: #b45309;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 999px;
      padding: 8px 16px;
      border: 1px solid rgba(251, 191, 36, 0.2);
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    }

    .prompt-card__detail {
      color: #d97706;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      padding: 8px 16px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.8);
      border: 1px solid rgba(251, 191, 36, 0.3);
      transition: all 0.3s ease;
    }

    .prompt-card__detail:hover {
      color: white;
      background: linear-gradient(135deg, #f59e0b, #d97706);
      border-color: transparent;
      box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    }

    /* 空状态 */
    .empty-state {
      padding: 48px 24px;
      text-align: center;
      color: #9ca3af;
    }

    .empty-state__icon {
      font-size: 48px;
      margin-bottom: 16px;
      animation: bounce 2s ease infinite;
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    /* ========================================
       响应式设计 - 移动端适配
    ======================================== */
    @media (max-width: 1200px) {
      .prompt-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      }
    }

    @media (max-width: 1024px) {
      .prompt-overview,
      .prompt-route,
      .prompt-directory__grid {
        grid-template-columns: 1fr;
      }

      .main-layout {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .prompt-sidebar {
        position: static;
        max-height: none;
        padding: 16px;
      }

      .prompt-sidebar__list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
      }

      .prompt-sidebar__item {
        flex: 0 0 auto;
        padding: 10px 16px;
        font-size: 13px;
      }

      .prompt-sidebar__item::before {
        display: none;
      }

      .prompt-sidebar__item.active {
        transform: none;
      }
    }

    @media (max-width: 768px) {
      .prompt-hero {
        padding: 40px 0 36px;
      }

      .prompt-hero h1 {
        font-size: clamp(28px, 8vw, 40px);
      }

      .prompt-hero__desc {
        font-size: 14px;
        padding: 0 16px;
      }

      .prompt-hero__search {
        max-width: calc(100% - 32px);
        margin: 0 16px;
      }

      .prompt-hero__search input {
        padding: 16px 20px 16px 52px;
        font-size: 15px;
      }

      .prompt-tags {
        gap: 8px;
        margin-top: 20px;
        padding: 0 16px;
      }

      .prompt-tags a {
        font-size: 12px;
        padding: 8px 14px;
      }

      .prompt-section {
        padding: 16px;
        border-radius: 20px;
      }

      .prompt-section__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }

      .prompt-section__footer {
        justify-content: stretch;
      }

      .prompt-section__more {
        width: 100%;
        justify-content: center;
      }

      .prompt-section__head h2 {
        font-size: 18px;
      }

      .prompt-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .prompt-card {
        padding: 20px;
      }

      .prompt-card__icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
      }

      .prompt-card__title-wrap h3 {
        font-size: 16px;
      }

      .prompt-sidebar__list {
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      .prompt-card__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }

      .prompt-card__detail {
        align-self: stretch;
        text-align: center;
      }

      .prompt-sidebar__item {
        font-size: 12px;
        padding: 8px 12px;
      }

      .breadcrumb {
        padding: 8px 14px;
        font-size: 13px;
        margin: 16px 0;
      }
    }

    /* 暗色模式支持 */
    @media (prefers-color-scheme: dark) {
      .prompt-sidebar {
        background: rgba(31, 41, 55, 0.85);
        border-color: rgba(251, 191, 36, 0.15);
      }

      .prompt-sidebar__title {
        color: #f3f4f6;
        border-color: rgba(251, 191, 36, 0.15);
      }

      .prompt-sidebar__item {
        color: #d1d5db;
      }

      .prompt-sidebar__item:hover {
        background: rgba(251, 191, 36, 0.15);
        color: #fbbf24;
      }

      .prompt-section {
        background: rgba(31, 41, 55, 0.7);
        border-color: rgba(251, 191, 36, 0.1);
      }

      .prompt-section__head h2 {
        color: #f3f4f6;
      }

      .prompt-card {
        background: linear-gradient(145deg, rgba(31, 41, 55, 0.9) 0%, rgba(55, 65, 81, 0.8) 100%);
        border-color: rgba(251, 191, 36, 0.2);
      }

      .prompt-card__title-wrap h3 {
        color: #f3f4f6;
      }

      .prompt-card:hover .prompt-card__title-wrap h3 {
        color: #fbbf24;
      }

      .prompt-card__desc {
        color: #9ca3af;
      }

      .prompt-card__tag {
        background: rgba(31, 41, 55, 0.9);
        color: #fbbf24;
        border-color: rgba(251, 191, 36, 0.25);
      }

      .prompt-card__detail {
        background: rgba(31, 41, 55, 0.9);
        color: #fbbf24;
      }

      .prompt-card__detail:hover {
        color: white;
      }

      .empty-state {
        color: #6b7280;
      }
    }
 