  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
      background: linear-gradient(180deg, #0f1419 0%, #1a1f2e 100%);
      color: #fff;
      min-height: 100vh;
      overflow-x: hidden;
      padding-bottom: 20px;
      margin-top: 50px;
    }

    .app-container {
      /*max-width: 480px;*/
      margin: 0 auto;
      background: linear-gradient(180deg, #0f1419 0%, #1a1f2e 100%);
      min-height: 100vh;
    }
   

    /* Gallery Section */
    .gallery-section {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      width: 100%;
    }

    .gallery-item {
      position: relative;
      width: 100%;
      height: 200px;
      overflow: hidden;
      cursor: pointer;
      border-radius: 5px;
    }

    .gallery-item img,
    .gallery-item video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .gallery-expand-hint {
      position: absolute;
      top: 8px;
      right: 8px;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(10px);
      color: #fff;
      padding: 6px;
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .gallery-expand-hint:hover {
      background: rgba(0, 0, 0, 0.85);
      transform: scale(1.1);
    }

    .gallery-expand-hint svg {
      width: 16px;
      height: 16px;
    }


    /* Info Section */
    .info-section {
      padding: 10px;
    }

    .info-header {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }

    .user-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      margin-right: 8px;
      object-fit: cover;
      box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
    }

    .info-name-section {
      flex: 1;
      display: flex;
      align-items: center;
    }

    .info-name {
      font-size: 14px;
      color: #fff;
    }

    .info-status {
      margin-left: 5px;
      display: inline-flex;
      align-items: center;
      padding: 2px 6px;
      background: linear-gradient(135deg, #338eeb, #f56a8d);
      border-radius: 3px;
      font-size: 12px;
      font-weight: 500;
      color: #fde5b5;
    }

    .info-message-btn {
      background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
      color: #fff;
      border: none;
      padding: 10px 24px;
      border-radius: 25px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    }

    .info-message-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(59, 130, 246, 0.5);
    }

    .info-message-btn svg {
      width: 18px;
      height: 18px;
    }

    /* Stats Grid */
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-bottom: 10px;
    }

    .stat-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 5px;
      padding: 10px;
      text-align: center;
    }

    .stat-icon {
      width: 16px;
      height: 16px;
      margin: 0 auto 10px;
      color: #3b82f6;
    }

    .stat-value {
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
    }

    .stat-label {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.6);
    }

    /* Basic Info Section */
    .basic-info-section {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 5px;
      padding: 10px;
      margin-bottom: 10px;
    }

    .basic-info-title {
      font-size: 16px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
    }

    .basic-info-grid {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .basic-info-item {
      display: flex;
      align-items: center;
      padding: 10px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 5px;
    }

    .basic-info-item svg {
      margin-right: 5px;
      width: 16px;
      height: 16px;
      color: #8b5cf6;
      flex-shrink: 0;
    }

    .basic-info-label {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.6);
      min-width: 40px;
    }

    .basic-info-value {
      font-size: 14px;
      color: #fff;
      font-weight: 500;
    }

    /* Bio Section */
    .bio-section {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 5px;
      padding: 10px;
      margin-bottom: 10px;
    }

    .bio-title {
      font-size: 16px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 12px;
    }

    .bio-text {
      font-size: 14px;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.8);
    }

    /* Tags Section */
    .tags-section {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 5px;
      padding: 10px;
      margin-bottom: 10px;
    }

    .tags-title {
      font-size: 16px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 12px;
    }

    .tags-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tag-item {
      padding: 6px 16px;
      background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
      border: 1px solid rgba(59, 130, 246, 0.4);
      border-radius: 20px;
      font-size: 13px;
      color: #fff;
    }

    /* Button Group */
    /*
    .button-group {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      padding: 10px;
      background: rgba(60, 60, 70, 0.4);
      backdrop-filter: blur(10px) saturate(180%);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 5px;
      margin: 10px 0;
    }
    */

    .contact-single-btn2 {
      width: 100%;
      padding: 12px 10px;
      border: none;
      border-radius: 5px;
      font-size: 16px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #ff9500 0%, #7c3aed 100%);
      color: white;
      box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }

/*
    .contact-single-btn:hover , .contact-single-btn2:hover{
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }
*/
    .contact-single-btn svg , .contact-single-btn2 svg{
      width: 20px;
      height: 20px;
      margin-right: 5px;
    }

    .action-btn.favorite-btn {
      color: #fff;
    }

    .action-btn.favorite-btn:hover {
      color: #f093fb;
    }

    .action-btn.favorite-btn.active {
      color: #ff6b9d;
/*      background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(240, 147, 251, 0.1) 100%);*/
/*      border-radius: 8px;*/
    }

    .action-btn.favorite-btn.active svg {
      fill: currentColor;
    }

    .action-btn.contact-btn {
      color: #667eea;
    }

    .action-btn.contact-btn:hover {
      color: #764ba2;
    }

    .action-btn.favorite-btn {
      color: #fff;
    }

    .action-btn.favorite-btn:hover {
      color: #f093fb;
    }

    .action-btn.report-btn {
      color: #fff;
    }

    .action-btn.report-btn:hover {
      color: #ff8787;
    }

    /* Contact Badge Styles - 保留联系方式弹窗样式 */
    .contact-modal-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(5px);
      z-index: 1000;
      align-items: center;
      justify-content: center;
    }

    .contact-modal-overlay.active {
      display: flex;
    }

    .contact-modal-content {
      background: linear-gradient(135deg, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98));
      backdrop-filter: blur(5px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 5px;
      padding: 10px;
      max-width: 90%;
      width: 360px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    .contact-modal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .contact-modal-title {
      font-size: 18px;
      font-weight: 600;
      color: #9e7cf9;
    }

    .contact-modal-close {
          background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #a78bfa;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    }

    .contact-modal-close:hover {
      color: #fff;
      transform: rotate(90deg);
    }

    .contact-badge {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(139, 92, 246, 0.2);
      border-radius: 5px;
      padding: 10px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .contact-badge:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(59, 130, 246, 0.5);
    }

    .contact-badge-info {
      flex: 1;
    }

    .contact-badge-label {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 10px;
    }

    .contact-badge-value {
      font-size: 15px;
      color: #fff;
      font-weight: 600;
    }

    .copy-btn {
      background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
      border: none;
      color: #fff;
      padding: 8px 16px;
      border-radius: 5px;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .copy-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    }

    .copy-btn svg {
      width: 14px;
      height: 14px;
    }

    .member-notice{
      padding: 15px 10px;
      margin-bottom: 10px;
      background: linear-gradient(135deg, #7b61ff, #ef6d33);
      border-radius: 5px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    
    .member-notice p {
      margin: 0;
      color: rgba(255, 255, 255, 0.8);
      font-size: 14px;
      line-height: 1.6;
    }
    

.gallery-section .video-item .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}


/* 相册弹窗样式 */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    flex-direction: column;
}
.gallery-modal.show {
    display: flex !important;
}
.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: white;
}
.gallery-counter {
    font-size: 16px;
}
.gallery-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.gallery-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 50px;
    overflow: hidden;
}
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }
#galleryMediaContainer {
    max-width: 100%;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
#galleryMediaContainer img,
#galleryMediaContainer video {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
}
.gallery-thumbnails {
    display: flex;
    justify-content: center;
    padding: 15px;
    overflow-x: auto;
    background: rgba(0,0,0,0.5);
}
.gallery-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    flex-shrink: 0;
    margin-right: 8px;
}
.gallery-thumb.active {
    opacity: 1;
    border: 2px solid #ff6b9d;
}
.gallery-thumb img,
.gallery-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.privacy-toggle {
    z-index: 10;
}
.message-btn {
    display: flex;
    align-items: center;
    padding: 4px 8px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}
.message-btn svg {
    width: 18px;
    height: 18px;
    margin-right: 5px;
}
.lines {
    padding-right:15px;
    color:#888;
}
