           /* ========================================
              第三页 - 个人资料小组件 & 布局
              ======================================== */

           #page-3-content {
               padding: 8px 20px;
               display: flex;
               flex-direction: column;
               gap: 10px;
               align-content: start;
               box-sizing: border-box;
               flex-grow: 1;
               height: 100%;
           }

           /* --- 顶部个人资料卡片 --- */
           .p3-profile-widget {
               display: flex;
               align-items: center;
               gap: 13px;
               width: 100%;
               padding: 12px 15px;
               box-sizing: border-box;
               background: transparent;
               border-radius: 20px;
               flex-shrink: 0;
           }

           /* 左侧：头像 + 名字 */
           .p3-profile-left {
               display: flex;
               flex-direction: column;
               align-items: center;
               gap: 4px;
               flex-shrink: 0;
           }

           .p3-name-tag {
               background: rgba(255, 255, 255, 0.95);
               padding: 2px 10px;
               border-radius: 8px;
               box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
               font-size: 11px;
               font-weight: 600;
               color: #1c1c1e;
               white-space: nowrap;
           }

           .p3-avatar-wrapper {
               width: 68px;
               height: 68px;
               border-radius: 50%;
               overflow: hidden;
               box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
               border: 2.5px solid rgba(255, 255, 255, 0.8);
               flex-shrink: 0;
           }

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

           .p3-profile-title {
               font-size: 11px;
               font-weight: 600;
               color: #1c1c1e;
               text-align: center;
               letter-spacing: 2px;
           }

           /* 右侧：装饰文字区域 */
           .p3-profile-right {
               flex: 1;
               display: flex;
               flex-direction: column;
               gap: 5px;
               min-width: 0;
           }

           .p3-deco-line {
               margin: 0;
               font-size: 12px;
               color: #555;
               line-height: 1.4;
               word-break: break-word;
           }

           .p3-studio-line {
               font-weight: 700;
               font-size: 12.5px;
               color: #333;
               letter-spacing: 1px;
               font-style: italic;
           }

           .p3-dotted-divider {
               border: none;
               border-top: 1.5px dashed rgba(0, 0, 0, 0.15);
               width: 100%;
           }

           /* 可编辑文本样式 */
           .p3-profile-widget .editable-text {
               cursor: pointer;
               transition: opacity 0.2s;
           }

           .p3-profile-widget .editable-text:hover {
               opacity: 0.7;
           }

           /* --- 第三页 App 网格 --- */
           #page-3-app-grid {
               display: grid;
               grid-template-columns: 1fr 1fr;
               gap: 25px;
               align-content: start;
               justify-items: center;
           }


