    :root {
      --color-primary: #fe2c55;
      --color-primary-2: #ff4d6a;
      --color-page-bg: #fff5f5;
      --color-card-border: #f7c1c1;
      --color-text-title: #1a1a1a;
      --color-text-desc: #666666;
      --color-text-muted: #999999;
      --shadow-card: 0 8px 32px rgba(254, 44, 85, 0.06);
      --shadow-card-selected: 0 12px 40px rgba(254, 44, 85, 0.16);
      --radius-card: 16px;
      --radius-pill: 999px;
      --pad-page: 16px;
    }

    * {
      box-sizing: border-box;
    }

    html,
    body {
      height: 100%;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      background: var(--color-page-bg);
      color: var(--color-text-title);
    }

    button {
      font: inherit;
    }

    .app {
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .nav {
      position: sticky;
      top: 0;
      z-index: 20;
      padding-top: env(safe-area-inset-top);
      background: linear-gradient(180deg, var(--color-primary) 0%, #ff3b60 100%);
      color: #fff;
    }

    .nav-inner {
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 var(--pad-page);
      flex-direction: column;
      gap: 4px;
    }

    .nav-title-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      line-height: 1.1;
    }

    .nav-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.55);
    }

    .nav-title {
      font-weight: 800;
      font-size: 16px;
      letter-spacing: 1px;
    }

    .nav-subtitle {
      padding: 2px 12px;
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(8px);
      font-size: 11px;
      color: rgba(255, 255, 255, 0.9);
    }

    .view {
      flex: 1;
      display: none;
      flex-direction: column;
      min-height: 0;
    }

    .view.active {
      display: flex;
    }

    .hidden {
      display: none !important;
    }

    .hero {
      padding: 14px calc(var(--pad-page) + 8px) 12px;
      background: linear-gradient(180deg, #fff5f5 0%, #ffffff 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .hero-text {
      font-size: 20px;
      font-weight: 900;
      color: #2a1d1d;
      letter-spacing: 1px;
      text-align: center;
    }

    .hero-deco {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .hero-line {
      width: 28px;
      height: 2px;
      border-radius: 1px;
      background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    }

    .hero-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--color-primary);
    }

    .list {
      flex: 1;
      min-height: 0;
      overflow: auto;
      -webkit-overflow-scrolling: touch;
      padding: 0 var(--pad-page) calc(16px + env(safe-area-inset-bottom));
    }

    .card {
      position: relative;
      background: #fff;
      border-radius: 12px;
      border: 2px solid var(--color-card-border);
      box-shadow: var(--shadow-card);
      padding: 14px;
      margin-bottom: 14px;
      overflow: hidden;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }

    .card.selected {
      border-color: var(--color-primary);
      box-shadow: var(--shadow-card-selected);
      transform: scale(0.99);
      background: #fffafb;
    }

    .badge {
      position: absolute;
      top: 0;
      right: 0;
      display: none;
      align-items: center;
      gap: 6px;
      padding: 6px 14px 6px 16px;
      background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-2) 100%);
      border-radius: 0 12px 0 12px;
      color: #fff;
      font-size: 11px;
      font-weight: 600;
    }

    .card.selected .badge {
      display: inline-flex;
    }

    .badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #fff;
    }

    .card-head {
      display: flex;
      align-items: center;
      gap: 8px;
      padding-right: 60px;
      margin-bottom: 10px;
    }

    .card-name {
      font-size: 17px;
      font-weight: 800;
      color: var(--color-text-title);
      line-height: 1.2;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      padding: 2px 10px;
      border-radius: 8px;
      font-size: 11px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .card-img-wrap {
      height: 180px;
      width: 100%;
      border-radius: var(--radius-card);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .card-img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .img-placeholder {
      position: absolute;
      inset: 0;
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      color: rgba(26, 26, 26, 0.55);
    }

    .img-placeholder .ph-icon {
      font-size: 28px;
    }

    .img-placeholder .ph-text {
      font-size: 12px;
    }

    .card-foot {
      margin-top: 12px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 12px;
    }

    .copy {
      flex: 1;
      min-width: 0;
      display: flex;
      align-items: flex-start;
      gap: 6px;
    }

    .quote {
      color: var(--color-primary);
      font-size: 20px;
      font-weight: 300;
      line-height: 1;
      flex-shrink: 0;
      margin-top: -1px;
    }

    .copy-text {
      font-size: 13px;
      color: var(--color-text-desc);
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .btn {
      border: none;
      border-radius: var(--radius-pill);
      padding: 10px 14px;
      background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-2) 100%);
      color: #fff;
      font-weight: 700;
      font-size: 13px;
      box-shadow: 0 6px 20px rgba(254, 44, 85, 0.24);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      user-select: none;
      -webkit-tap-highlight-color: transparent;
    }

    .btn:active {
      transform: scale(0.96);
      opacity: 0.92;
    }

    .btn.secondary {
      background: #fff;
      color: var(--color-primary);
      border: 2px solid var(--color-primary);
      box-shadow: none;
    }

    .btn.ghost {
      background: rgba(255, 255, 255, 0.2);
      color: #fff;
      box-shadow: none;
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .btn.selected {
      background: #e24b4a;
      box-shadow: 0 6px 24px rgba(226, 75, 74, 0.32);
    }

    .bottom-tip {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 18px 10px 6px;
      color: #b0a0a0;
      font-size: 12px;
      white-space: nowrap;
    }

    .icp-record {
      padding: 6px 10px 18px;
      text-align: center;
      font-size: 12px;
      color: #b0a0a0;
    }

    .icp-record a {
      color: inherit;
      text-decoration: none;
    }

    .icp-record a:hover {
      text-decoration: underline;
    }

    .tip-line {
      height: 1px;
      background: #f0d5d5;
      flex: 1;
    }

    .publish {
      flex: 1;
      min-height: 0;
      overflow: auto;
      -webkit-overflow-scrolling: touch;
      padding: 12px var(--pad-page) calc(96px + env(safe-area-inset-bottom));
      background: linear-gradient(180deg, #fff5f5 0%, #ffffff 100%);
    }

    .publish-card {
      background: #fff;
      border: 2px solid var(--color-card-border);
      box-shadow: var(--shadow-card);
      border-radius: 16px;
      padding: 14px;
    }

    .publish-title {
      font-size: 16px;
      font-weight: 900;
      color: var(--color-text-title);
    }

    .publish-sub {
      margin-top: 6px;
      font-size: 12px;
      color: var(--color-text-muted);
      line-height: 1.5;
    }

    .img-grid {
      margin-top: 12px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .img-grid .img-item {
      width: calc(50% - 5px);
      border-radius: 14px;
      overflow: hidden;
      background: #fff0f3;
      border: 1px solid rgba(254, 44, 85, 0.12);
      aspect-ratio: 1 / 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .img-grid img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .copy-box {
      margin-top: 12px;
      border-radius: 14px;
      border: 1px solid rgba(254, 44, 85, 0.14);
      background: #fffafb;
      padding: 12px;
    }

    .copy-box .copy-full {
      white-space: pre-wrap;
      font-size: 13px;
      line-height: 1.6;
      color: #3a2b2b;
    }

    .topic {
      margin-top: 10px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .topic .chip {
      padding: 6px 10px;
      border-radius: var(--radius-pill);
      background: rgba(254, 44, 85, 0.08);
      color: var(--color-primary);
      font-size: 12px;
      font-weight: 700;
    }

    .action-bar {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 10px var(--pad-page) calc(10px + env(safe-area-inset-bottom));
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(12px);
      border-top: 1px solid rgba(0, 0, 0, 0.06);
      display: none;
      gap: 10px;
      z-index: 30;
    }

    .action-bar.active {
      display: flex;
    }

    .action-bar .btn {
      flex: 1;
      justify-content: center;
    }

    .toast {
      position: fixed;
      left: 50%;
      bottom: calc(76px + env(safe-area-inset-bottom));
      transform: translateX(-50%);
      background: rgba(0, 0, 0, 0.78);
      color: #fff;
      padding: 10px 12px;
      border-radius: 12px;
      font-size: 13px;
      z-index: 100;
      max-width: min(90vw, 420px);
      line-height: 1.4;
      display: none;
    }

    .overlay {
      position: fixed;
      inset: 0;
      z-index: 200;
      display: none;
      background: linear-gradient(160deg, #e11d48 0%, #fb7185 100%);
      padding-top: env(safe-area-inset-top);
    }

    .overlay.active {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .overlay-body {
      flex: 1;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 18px;
    }

    .overlay-card {
      width: 100%;
      max-width: 440px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      color: #fff;
    }

    .spinner {
      position: relative;
      width: 72px;
      height: 72px;
    }

    .spinner-ring {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      border: 3px solid rgba(255, 255, 255, 0.2);
      border-top-color: #fff;
      animation: spin 0.8s linear infinite;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    .spinner-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 30px;
    }

    .overlay-title {
      font-size: 18px;
      font-weight: 900;
    }

    .overlay-desc {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.88);
      text-align: center;
      line-height: 1.6;
    }

    .hint {
      width: 100%;
      background: rgba(255, 255, 255, 0.18);
      border-radius: 12px;
      padding: 12px 14px;
      text-align: center;
      line-height: 1.6;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.94);
    }

    .overlay-actions {
      display: flex;
      gap: 10px;
      width: 100%;
      margin-top: 6px;
    }

    .overlay-actions .btn {
      flex: 1;
      justify-content: center;
    }

    .overlay-actions .btn.primary {
      background: #fff;
      color: #e11d48;
      box-shadow: none;
    }

    .overlay-actions .btn.secondary {
      background: rgba(255, 255, 255, 0.2);
      color: #fff;
      border: none;
    }

    #viewPublish {
      background: #fff1f2;
    }

    #viewPublish *,
    #viewPublish *::before,
    #viewPublish *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      -webkit-tap-highlight-color: transparent;
    }

    #viewPublish .page {
      width: 100%;
      min-height: 100vh;
    }

    #viewPublish .header {
      position: relative;
      width: 100%;
      padding: 52px 20px 24px;
      background: linear-gradient(160deg, #e11d48 0%, #fb7185 100%);
      overflow: hidden;
    }

    #viewPublish .header::before {
      content: "";
      position: absolute;
      top: -40px;
      right: -40px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      pointer-events: none;
    }

    #viewPublish .header::after {
      content: "";
      position: absolute;
      bottom: -60px;
      left: -30px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      pointer-events: none;
    }

    #viewPublish .btn-back {
      position: absolute;
      top: 12px;
      left: 16px;
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 5px 12px;
      border: none;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.22);
      color: #fff;
      font-size: 13px;
      cursor: pointer;
      z-index: 10;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }

    #viewPublish .btn-back:active {
      background: rgba(255, 255, 255, 0.35);
    }

    #viewPublish .header-shop {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 6px;
    }

    #viewPublish .header-title {
      font-size: 24px;
      font-weight: 700;
      color: #fff;
      line-height: 1.3;
      margin-bottom: 14px;
    }

    #viewPublish .package-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 14px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.25);
      color: #fff;
      font-size: 13px;
      font-weight: 500;
    }

    #viewPublish .scroll-area {
      padding: 16px 16px 32px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    #viewPublish .card {
      background: #fff;
      border-radius: 16px;
      padding: 16px;
      box-shadow: 0 4px 16px rgba(225, 29, 72, 0.08);
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    #viewPublish .card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    #viewPublish .card-title {
      font-size: 15px;
      font-weight: 700;
      color: #1a1a1a;
    }

    #viewPublish .card-tip {
      font-size: 11px;
      color: #999;
    }

    #viewPublish .badge-small {
      padding: 3px 10px;
      border-radius: 12px;
      background: #fff1f2;
      color: #e11d48;
      font-size: 11px;
    }

    #viewPublish .copy-box {
      background: #fff8f8;
      border-radius: 10px;
      padding: 12px;
    }

    #viewPublish .copy-text {
      font-size: 14px;
      line-height: 1.7;
      color: #333;
      white-space: pre-wrap;
      word-break: break-all;
    }

    #viewPublish .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    #viewPublish .tag {
      display: inline-flex;
      align-items: center;
      padding: 4px 12px;
      border-radius: 16px;
      font-size: 12px;
      font-weight: 500;
      cursor: default;
    }

    #viewPublish .tag--solid {
      background: #e11d48;
      color: #fff;
    }

    #viewPublish .tag--outline {
      background: #fff1f2;
      border: 1px solid #e11d48;
      color: #e11d48;
    }

    #viewPublish .img-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }

    #viewPublish .img-thumb {
      aspect-ratio: 1 / 1;
      border-radius: 10px;
      overflow: hidden;
      background: #f0f0f0;
      position: relative;
    }

    #viewPublish .img-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    #viewPublish .img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #fdba74 0%, #f87171 100%);
      font-size: 28px;
    }

    #viewPublish .img-hint {
      font-size: 11px;
      color: #999;
      line-height: 1.5;
    }

    #viewPublish .btn-area {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    #viewPublish .btn-save {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      height: 56px;
      border: 2px solid #e11d48;
      border-radius: 28px;
      background: #fff;
      color: #e11d48;
      font-size: 17px;
      font-weight: 700;
      cursor: pointer;
      transition: background 0.15s, opacity 0.15s;
    }

    #viewPublish .btn-save:active {
      background: #fff1f2;
    }

    #viewPublish .btn-xhs {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      height: 64px;
      border: none;
      border-radius: 32px;
      background: linear-gradient(135deg, #e11d48 0%, #fb4d6e 100%);
      color: #fff;
      font-size: 18px;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(225, 29, 72, 0.35);
      transition: opacity 0.15s, transform 0.1s;
    }

    #viewPublish .btn-xhs:active {
      opacity: 0.88;
      transform: scale(0.98);
    }

    #viewPublish .btn-copy-all {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      width: 100%;
      height: 48px;
      border: none;
      border-radius: 24px;
      background: #f5f5f5;
      color: #666;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.15s;
    }

    #viewPublish .btn-copy-all:active {
      background: #ebebeb;
    }

    #viewPublish .footer-note {
      font-size: 11px;
      color: #aaaaaa;
      text-align: center;
      line-height: 1.6;
      padding: 0 8px;
    }

    #viewPublish .toast {
      position: fixed;
      bottom: 80px;
      left: 50%;
      transform: translateX(-50%);
      max-width: 280px;
      padding: 10px 20px;
      border-radius: 24px;
      background: rgba(0, 0, 0, 0.75);
      color: #fff;
      font-size: 14px;
      text-align: center;
      z-index: 9999;
      white-space: nowrap;
      pointer-events: none;
      transition: opacity 0.3s;
    }

    #viewPublish .toast.fade-out {
      opacity: 0;
    }

    #viewPublish .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9000;
      padding: 24px;
    }

    #viewPublish .modal-box {
      background: #fff;
      border-radius: 20px;
      padding: 28px 24px 24px;
      width: 100%;
      max-width: 320px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    #viewPublish .modal-icon {
      font-size: 40px;
      line-height: 1;
    }

    #viewPublish .modal-title {
      font-size: 18px;
      font-weight: 700;
      color: #1a1a1a;
      text-align: center;
    }

    #viewPublish .modal-desc {
      font-size: 14px;
      color: #666;
      text-align: center;
      line-height: 1.6;
    }

    #viewPublish .modal-btn-row {
      display: flex;
      gap: 10px;
      width: 100%;
      margin-top: 8px;
    }

    #viewPublish .modal-btn-cancel {
      flex: 1;
      height: 48px;
      border: none;
      border-radius: 24px;
      background: #f5f5f5;
      color: #666;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
    }

    #viewPublish .modal-btn-cancel:active {
      background: #ebebeb;
    }

    #viewPublish .modal-btn-copy {
      flex: 1;
      height: 48px;
      border: none;
      border-radius: 24px;
      background: #e11d48;
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
    }

    #viewPublish .modal-btn-copy:active {
      opacity: 0.88;
    }

    #viewPublish .error-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      padding: 40px 32px;
      gap: 16px;
      text-align: center;
    }

    #viewPublish .error-icon {
      font-size: 60px;
    }

    #viewPublish .error-title {
      font-size: 22px;
      font-weight: 700;
      color: #1a1a1a;
    }

    #viewPublish .error-desc {
      font-size: 15px;
      color: #666;
      line-height: 1.6;
    }

    #viewPublish .btn-back-mp {
      margin-top: 8px;
      padding: 14px 40px;
      border: none;
      border-radius: 28px;
      background: #e11d48;
      color: #fff;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
    }

    #viewPublish .btn-back-mp:active {
      opacity: 0.88;
    }

    @supports (padding-bottom: env(safe-area-inset-bottom)) {
      #viewPublish .scroll-area {
        padding-bottom: calc(32px + env(safe-area-inset-bottom));
      }
    }

    #viewSdk {
      background: #fff1f2;
    }

    #viewSdk .sdk-header {
      position: relative;
      width: 100%;
      padding: 52px 20px 24px;
      background: linear-gradient(160deg, #e11d48 0%, #fb7185 100%);
      overflow: hidden;
    }

    #viewSdk .sdk-header::before {
      content: "";
      position: absolute;
      top: -40px;
      right: -40px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      pointer-events: none;
    }

    #viewSdk .sdk-header::after {
      content: "";
      position: absolute;
      bottom: -60px;
      left: -30px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      pointer-events: none;
    }

    #viewSdk .sdk-title {
      font-size: 24px;
      font-weight: 700;
      color: #fff;
      line-height: 1.3;
      margin-bottom: 10px;
    }

    #viewSdk .sdk-subtitle {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.6;
    }

    #viewSdk .sdk-body {
      padding: 16px 16px 32px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    #viewSdk .sdk-card {
      background: #fff;
      border-radius: 16px;
      padding: 16px;
      box-shadow: 0 4px 16px rgba(225, 29, 72, 0.08);
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    #viewSdk .sdk-row {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    #viewSdk .sdk-label {
      font-size: 13px;
      font-weight: 700;
      color: #1a1a1a;
    }

    #viewSdk .sdk-input,
    #viewSdk .sdk-textarea {
      width: 100%;
      border: 1px solid rgba(225, 29, 72, 0.18);
      border-radius: 12px;
      padding: 12px;
      font-size: 14px;
      outline: none;
      background: #fff8f8;
      color: #333;
    }

    #viewSdk .sdk-input:focus,
    #viewSdk .sdk-textarea:focus {
      border-color: rgba(225, 29, 72, 0.55);
      box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.08);
      background: #fff;
    }

    #viewSdk .sdk-textarea {
      min-height: 120px;
      resize: vertical;
      line-height: 1.6;
      white-space: pre-wrap;
    }

    #viewSdk .sdk-hint {
      font-size: 12px;
      color: #999;
      line-height: 1.6;
    }

    #viewSdk .sdk-actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    #viewSdk .sdk-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      height: 64px;
      border: none;
      border-radius: 32px;
      background: linear-gradient(135deg, #e11d48 0%, #fb4d6e 100%);
      color: #fff;
      font-size: 18px;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(225, 29, 72, 0.35);
      transition: opacity 0.15s, transform 0.1s;
    }

    #viewSdk .sdk-btn:active {
      opacity: 0.88;
      transform: scale(0.98);
    }

    #viewSdk .sdk-btn[disabled] {
      opacity: 0.6;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }

    #viewSdk .sdk-toast {
      position: fixed;
      bottom: 80px;
      left: 50%;
      transform: translateX(-50%);
      max-width: 280px;
      padding: 10px 20px;
      border-radius: 24px;
      background: rgba(0, 0, 0, 0.75);
      color: #fff;
      font-size: 14px;
      text-align: center;
      z-index: 9999;
      white-space: nowrap;
      pointer-events: none;
      transition: opacity 0.3s;
    }

    #viewSdk .sdk-toast.fade-out {
      opacity: 0;
    }
