* { margin: 0; padding: 0; box-sizing: border-box; }
        
        /* Loading 样式 */
        #pageLoading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }
        #pageLoading.hidden {
            opacity: 0;
            pointer-events: none;
        }
        .loading-spinner {
            text-align: center;
        }
        .loading-spinner .spinner {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-top-color: #fff;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        .loading-spinner .text {
            color: #fff;
            font-size: 18px;
            font-weight: 500;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 5px;
        }
        
        /* 移动端容器适配 */
        @media screen and (max-width: 768px) {
            body {
                padding: 5px;
            }
            .container {
                padding: 12px 10px;
            }
        }
        
        /* PC 端容器适配 */
        @media screen and (min-width: 769px) {
            body {
                padding: 15px;
            }
            .container {
                padding: 20px 15px;
            }
        }
        
        .container {
            max-width: 480px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 12px;
            padding: 15px 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }
        .header { text-align: center; margin-bottom: 12px; }
        .avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin: 0 auto 8px;
            border: 2px solid #667eea;
            padding: 2px;
            background: #fff;
        }
        .avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
        .nickname-section {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            padding: 10px;
            background: #f5f5f5;
            border-radius: 10px;
        }
        .nickname-label { font-size: 14px; color: #666; margin-right: 10px; }
        .nickname-input {
            flex: 1;
            border: none;
            background: transparent;
            font-size: 16px;
            outline: none;
            text-align: center;
        }
        .btn-nickname { color: #667eea; cursor: pointer; margin-left: 8px; font-size: 13px; }
        .info-section { margin-bottom: 10px; }
        .info-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 12px;
            background: #f5f6f8;
            border-radius: 8px;
            margin-bottom: 8px;
            min-height: 44px;
            box-sizing: border-box;
        }
        .nickname-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 12px;
            background: #f5f6f8;
            border-radius: 8px;
            margin-bottom: 8px;
            min-height: 44px;
            box-sizing: border-box;
        }
        .info-label { font-size: 14px; color: #555; flex-shrink: 0; }
        .info-value { display: flex; align-items: center; gap: 8px; }
        .gender-radio { display: flex; gap: 12px; }
        .gender-option { display: flex; align-items: center; gap: 4px; cursor: pointer; }
        .gender-option input { margin: 0; }
        .age-slider { width: 130px; }
        .toggle-switch {
            position: relative;
            width: 44px;
            height: 24px;
            background: #e0e0e0;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
        }
        .toggle-switch.active { 
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
        }
        .toggle-switch::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 9px;
            width: 20px;
            height: 20px;
            background: #fff;
            border-radius: 50%;
            transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .toggle-switch.active::after { 
            transform: translateX(20px);
            box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
        }
        .tags-section { margin-bottom: 10px; }
        .tag {
            display: inline-block;
            padding: 5px 12px;
            background: #667eea;
            color: #fff;
            border-radius: 15px;
            font-size: 12px;
            margin-right: 5px;
            margin-bottom: 5px;
        }
        .btn-add-tag {
            padding: 5px 12px;
            background: #f5f5f5;
            border-radius: 15px;
            font-size: 12px;
            cursor: pointer;
        }
        .vip-section {
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            padding: 10px;
            border-radius: 10px;
            margin-bottom: 12px;
            cursor: pointer;
        }
        .vip-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .vip-title { display: flex; align-items: center; gap: 5px; font-weight: bold; color: #333; }
        .vip-crown { font-size: 16px; }
        .btn-vip-unlock {
            background: rgba(255, 255, 255, 0.3);
            border: none;
            padding: 5px 10px;
            border-radius: 14px;
            cursor: pointer;
            color: #333;
            font-weight: bold;
            font-size: 11px;
        }
        .match-btn {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            color: #fff;
            font-size: 26px;
            font-weight: bold;
            cursor: pointer;
            margin: 12px auto;
            display: block;
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
            transition: transform 0.2s;
        }
        .match-btn:active { transform: scale(0.95); }
        .action-buttons {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 6px;
            margin-bottom: 10px;
        }
        .action-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 10px 6px;
            background: #f9f9f9;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .action-btn:hover { background: #f0f0f0; }
        .action-btn-icon { font-size: 20px; margin-bottom: 3px; }
        .action-btn-text { font-size: 10px; color: #666; }
        .bottom-buttons {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }
        .bottom-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px;
            background: #f9f9f9;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-size: 14px;
            color: #666;
            transition: background 0.2s;
        }
        .bottom-btn:hover { background: #f0f0f0; }
        .bottom-btn.primary { background: #667eea; color: #fff; }
        
        /* 标签下拉选择框样式 */
        .tag-select {
            width: 100%;
            padding: 10px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 14px;
            background: #fff;
            cursor: pointer;
            transition: border-color 0.2s;
            outline: none;
        }
        .tag-select:hover {
            border-color: #667eea;
        }
        .tag-select:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }
        .bottom-btn.danger { background: #ff4757; color: #fff; }
        
        /* 个人信息区域折叠样式 */
        .profile-section {
            background: #fff;
            border-radius: 15px;
            padding: 12px 15px;
            margin-bottom: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        .profile-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
            cursor: pointer;
            user-select: none;
            padding-bottom: 8px;
            border-bottom: 1px solid #f0f0f0;
        }
        .profile-title {
            display: flex;
            align-items: center;
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }
        .profile-toggle-icon {
            margin-left: 10px;
            font-size: 14px;
            color: #666;
            transition: transform 0.3s ease;
        }
        .profile-section.collapsed .profile-toggle-icon {
            transform: rotate(-90deg);
        }
        .profile-section.collapsed .profile-content {
            display: none;
        }
        
        /* 个人信息区域内的元素间距调整 */
        .profile-content .nickname-section {
            margin-bottom: 4px;
        }
        .profile-content .user-id-section {
            margin-bottom: 4px;
        }
        .profile-content .info-item {
            margin-bottom: 3px;
        }
        .profile-content .tags-section {
            margin-top: 3px;
        }
        
        /* VIP 特权功能样式 */
        .vip-section {
            background: #fff;
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        .vip-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            user-select: none;
        }
        .vip-title {
            display: flex;
            align-items: center;
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }
        .vip-crown {
            margin-right: 8px;
            font-size: 22px;
        }
        .vip-toggle-icon {
            margin-left: 10px;
            font-size: 14px;
            color: #666;
            transition: transform 0.3s ease;
        }
        .vip-section.collapsed .vip-toggle-icon {
            transform: rotate(-90deg);
        }
        .vip-section.collapsed .vip-features,
        .vip-section.collapsed .vip-bottom-buttons {
            display: none;
        }
        .btn-vip-unlock {
            padding: 8px 20px;
            background: linear-gradient(135deg, #ff6b6b, #ff8787);
            color: #fff;
            border: none;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .btn-vip-unlock:hover {
            transform: scale(1.05);
        }
        
        /* VIP 功能列表 */
        .vip-features {
            margin-bottom: 15px;
        }
        .vip-feature-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .vip-feature-item:last-child {
            border-bottom: none;
        }
        .feature-label {
            font-size: 15px;
            color: #666;
        }
        
        /* 开关样式 */
        .toggle-switch {
            position: relative;
            width: 50px;
            height: 26px;
        }
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: 0.3s;
            border-radius: 26px;
        }
        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 20px;
            width: 20px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: 0.3s;
            border-radius: 50%;
        }
        .toggle-switch input:checked + .toggle-slider {
            background-color: #667eea;
        }
        .toggle-switch input:checked + .toggle-slider:before {
            transform: translateX(24px);
        }
        .toggle-switch.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        /* 用户身份凭证 显示样式 */
        .user-id-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 15px 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }
        .user-id-section .info-label {
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            margin: 0 0 10px 0;
            display: block;
            line-height: 1.4;
        }
        .user-id-display {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            background: rgba(255, 255, 255, 0.2);
            padding: 12px 15px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            min-height: 50px;
        }
        .user-id-text {
            color: #fff;
            font-family: 'Courier New', monospace;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            word-break: break-all;
            overflow-wrap: break-word;
            flex: 1;
            min-width: 0;
            line-height: 1.5;
        }
        .btn-copy {
            background: rgba(255, 255, 255, 0.3);
            border: none;
            color: #fff;
            padding: 8px 12px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.2s;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
        }
        .btn-copy:hover {
            background: rgba(255, 255, 255, 0.5);
            transform: scale(1.1);
        }
        .btn-copy:active {
            transform: scale(0.95);
        }
        
        /* 移动端适配 */
        @media screen and (max-width: 768px) {
            .user-id-section {
                padding: 12px 15px;
            }
            .user-id-section .info-label {
                font-size: 13px;
                margin-bottom: 8px;
            }
            .user-id-display {
                padding: 10px 12px;
                gap: 8px;
            }
            .user-id-text {
                font-size: 12px;
                max-width: calc(100% - 50px);
            }
            .btn-copy {
                padding: 6px 10px;
                font-size: 14px;
                min-width: 36px;
                height: 36px;
            }
        }
        
        /* 小屏幕手机适配 */
        @media screen and (max-width: 375px) {
            .user-id-text {
                font-size: 11px;
            }
            .btn-copy {
                padding: 5px 8px;
                font-size: 13px;
                min-width: 32px;
                height: 32px;
            }
        }
        
        /* PC 端适配 */
        @media screen and (min-width: 769px) {
            .user-id-section {
                padding: 18px 25px;
            }
            .user-id-section .info-label {
                font-size: 15px;
                margin-bottom: 12px;
            }
            .user-id-display {
                padding: 14px 18px;
                min-height: 55px;
            }
            .user-id-text {
                font-size: 14px;
            }
            .btn-copy {
                padding: 9px 14px;
                font-size: 17px;
                min-width: 44px;
                height: 44px;
            }
        }
        
        /* VIP 选项按钮 */
        .btn-vip-option {
            padding: 6px 20px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: #fff;
            border: none;
            border-radius: 15px;
            font-size: 13px;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .btn-vip-option:hover {
            transform: scale(1.05);
        }
        .btn-vip-option.disabled {
            background: #d0d0d0;
            cursor: not-allowed;
            transform: none;
        }
        
        /* VIP 底部按钮 */
        .vip-bottom-buttons {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-top: 15px;
        }
        .btn-vip-action {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 12px;
            background: #f9f9f9;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 13px;
            color: #666;
        }
        .btn-vip-action:hover {
            background: #f0f0f0;
        }
        .btn-vip-action .btn-icon {
            font-size: 20px;
            margin-bottom: 5px;
        }
        .btn-vip-action.btn-buy {
            background: linear-gradient(135deg, #ff6b6b, #ff8787);
            color: #fff;
        }
        .btn-vip-action.btn-buy:hover {
            background: linear-gradient(135deg, #ff5252, #ff6b6b);
        }
        
        /* VIP 启用状态 */
        .vip-section.vip-enabled .vip-features .toggle-switch.disabled,
        .vip-section.vip-enabled .vip-features .btn-vip-option.disabled {
            opacity: 1;
            cursor: pointer;
        }
        .vip-section.vip-enabled .vip-features .toggle-switch.disabled input:disabled,
        .vip-section.vip-enabled .vip-features .btn-vip-option:disabled {
            cursor: pointer;
        }
        .vip-section.vip-enabled .btn-vip-unlock {
            display: none;
        }
        
        .hidden { display: none; }
        .auth-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }
        .auth-modal:not(.hidden) {
            display: flex;
        }
        .auth-content {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            width: 90%;
            max-width: 400px;
        }
        .auth-title { text-align: center; font-size: 24px; margin-bottom: 20px; color: #333; }
        .auth-form .form-item { margin-bottom: 15px; }
        .auth-form input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 14px;
        }
        .auth-form .btn-submit {
            width: 100%;
            padding: 12px;
            background: #667eea;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            cursor: pointer;
        }
        .auth-switch { text-align: center; margin-top: 15px; color: #666; }
        .auth-switch a { color: #667eea; cursor: pointer; }
        .order-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }
        .order-content {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            width: 90%;
            max-width: 400px;
            text-align: center;
        }
        .order-title { font-size: 24px; font-weight: bold; margin-bottom: 20px; }
        .order-list {
            max-height: 300px;
            overflow-y: auto;
            text-align: left;
        }
        .order-item {
            padding: 15px;
            border: 1px solid #eee;
            border-radius: 8px;
            margin-bottom: 10px;
        }
        .order-item-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 14px;
        }
        .order-item-status {
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 12px;
        }
        .status-paid { background: #52c41a; color: #fff; }
        .status-unpaid { background: #faad14; color: #fff; }
        .order-item-info { font-size: 13px; color: #666; }
        .btn-know {
            padding: 10px 30px;
            background: #1677ff;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            cursor: pointer;
            margin-top: 20px;
        }

        /* 好友列表项样式 */
        .friend-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
            border: 1px solid #eee;
            border-radius: 8px;
            margin-bottom: 8px;
            background: #f9f9f9;
        }
        .friend-info {
            flex: 1;
            min-width: 0;
        }
        .friend-nickname {
            font-weight: 600;
            color: #333;
            margin-bottom: 4px;
        }
        .friend-userid {
            font-size: 12px;
            color: #999;
            word-break: break-all;
        }
        .friend-actions {
            display: flex;
            gap: 8px;
            margin-left: 10px;
        }
        .btn-friend-action {
            padding: 6px 12px;
            border: none;
            border-radius: 6px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.2s;
        }
        .btn-friend-star {
            background: #ffd700;
            color: #fff;
        }
        .btn-friend-star:hover {
            background: #ffed4e;
        }
        .btn-friend-unstar {
            background: #999;
            color: #fff;
        }
        .btn-friend-unstar:hover {
            background: #666;
        }
        .btn-friend-chat {
            background: #667eea;
            color: #fff;
        }
        .btn-friend-chat:hover {
            background: #764ba2;
        }
        .no-friends {
            text-align: center;
            color: #999;
            padding: 20px;
            font-size: 14px;
        }

        /* 聊天界面样式 */
        .btn-chat-action {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: #fff;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            transition: all 0.2s;
        }
        .btn-chat-action:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }
        .btn-chat-emoji {
            background: #f5f5f5;
            border: none;
            padding: 8px 15px;
            border-radius: 15px;
            cursor: pointer;
            font-size: 18px;
            transition: all 0.2s;
        }
        .btn-chat-emoji:hover {
            background: #e0e0e0;
        }
        .btn-chat-send {
            transition: all 0.2s;
        }
        .btn-chat-send:hover {
            transform: scale(1.05);
        }
        .chat-message {
            margin-bottom: 15px;
            display: flex;
            flex-direction: column;
            animation: messageSlideIn 0.3s ease-out;
        }
        @keyframes messageSlideIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .chat-message.sent {
            align-items: flex-end;
        }
        .chat-message.received {
            align-items: flex-start;
        }
        .chat-message-bubble {
            max-width: 70%;
            padding: 12px 16px;
            border-radius: 18px;
            font-size: 14px;
            line-height: 1.5;
            word-wrap: break-word;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.2s ease;
        }
        .chat-message-bubble:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 12px rgba(0,0,0,0.12);
        }
        .chat-message.sent .chat-message-bubble {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            border-bottom-right-radius: 4px;
        }
        .chat-message.received .chat-message-bubble {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            color: #333;
            border-bottom-left-radius: 4px;
            border: 1px solid rgba(102, 126, 234, 0.1);
        }
        .chat-message-time {
            font-size: 11px;
            color: #999;
            margin-top: 5px;
            font-weight: 500;
        }

        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.3s ease;
        }

        .loading-overlay.hidden {
            opacity: 0;
            pointer-events: none;
            display: none;
        }

        .loading-spinner {
            text-align: center;
            color: white;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }

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

        .loading-text {
            font-size: 16px;
            font-weight: bold;
        }

        /* ==================== 黑夜模式样式 ==================== */
        body.theme-dark .profile-title {
            color: #ffffff !important;
        }
        body.theme-dark .profile-toggle-icon {
            color: #a0aec0 !important;
        }
        body.theme-dark .vip-title {
            color: #ffffff !important;
        }
        body.theme-dark .vip-crown {
            color: #ffd700 !important;
        }
        body.theme-dark .vip-toggle-icon {
            color: #a0aec0 !important;
        }
        body.theme-dark .info-label {
            color: #ffffff !important;
            font-weight: 500;
        }
        body.theme-dark .nickname-label {
            color: #ffffff !important;
            font-weight: 500;
        }
        body.theme-dark .vip-feature-item .feature-label {
            color: #e0e0e0 !important;
        }
        body.theme-dark .user-id-section .info-label {
            color: #ffffff !important;
        }
        body.theme-dark .action-btn-text {
            color: #e0e0e0 !important;
        }
        body.theme-dark .bottom-btn {
            color: #ffffff !important;
        }
        body.theme-dark .btn-vip-unlock {
            color: #ffffff !important;
        }
        body.theme-dark .match-btn {
            color: #ffffff !important;
        }
        body.theme-dark .btn-nickname {
            color: #ffffff !important;
        }
        body.theme-dark .gender-option {
            color: #ffffff !important;
        }
        body.theme-dark .age-slider + span {
            color: #ffffff !important;
            font-weight: 600;
        }
        body.theme-dark .toggle-switch + span {
            color: #e0e0e0 !important;
        }
        body.theme-dark .nickname-input {
            color: #ffffff !important;
            font-weight: 500;
        }
        body.theme-dark .nickname-input::placeholder {
            color: #a0aec0 !important;
        }
        body.theme-dark .tag-select {
            color: #ffffff !important;
            font-weight: 500;
        }
        body.theme-dark .info-value {
            color: #ffffff !important;
        }