        *{margin:0;padding:0;box-sizing:border-box}
        body{
            font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
            background:linear-gradient(135deg,#ffd6e7,#ffeff7,#fff0f5);
            min-height:100vh;display:flex;flex-direction:column;align-items:center;padding:20px
        }
        .header-container{
            position:relative;width:100%;max-width:600px;height:300px;
            border-radius:20px;
            box-shadow:0 10px 30px rgba(0,0,0,.1);
            display:flex;flex-direction:column;align-items:center;justify-content:flex-end;
            margin-bottom:40px;overflow:hidden
        }
        .avatar{
            width:100px;height:100px;border-radius:50%;border:2px solid #fff;
            box-shadow:0 4px 15px rgba(0,0,0,.1);object-fit:cover;margin-bottom:0px;
            /* 优先解码 */
            
        }
        .nickname{
            color:#fff;font-size:28px;font-weight:bold;text-shadow:2px 2px 4px rgba(0,0,0,.3)
        }
        .nav-container{
            width:100%;max-width:600px;display:grid;
            grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:20px;margin-top:20px
        }
        .nav-card{
            background:rgba(255,255,255,.7);backdrop-filter:blur(10px);
            border:1px solid rgba(255,255,255,.5);border-radius:15px;
            padding:30px;text-align:center;box-shadow:0 5px 15px rgba(0,0,0,.05);
            transition:all .3s ease;cursor:pointer;text-decoration:none;color:#333
        }
        .nav-card:hover{
            transform:translateY(-5px);background:rgba(255,255,255,.9);
            box-shadow:0 10px 25px rgba(0,0,0,.1)
        }
        .nav-icon{font-size:40px;margin-bottom:10px}
        .nav-title{font-size:18px;font-weight:500;margin-bottom:5px}
        .nav-desc{font-size:14px;color:#666}
        /* 音频控制按钮 */
        .audio-control{
            position:fixed;bottom:30px;right:30px;width:50px;height:50px;
            background:rgba(255,255,255,.7);backdrop-filter:blur(10px);
            border:1px solid rgba(255,255,255,.5);border-radius:50%;
            display:flex;align-items:center;justify-content:center;cursor:pointer;
            box-shadow:0 4px 15px rgba(0,0,0,.1);transition:all .3s ease;z-index:1000
        }
        .audio-control:hover{transform:scale(1.1);background:rgba(255,255,255,.9)}
        .audio-control.playing{animation:pulse 2s infinite}
        @keyframes pulse{
            0%{box-shadow:0 0 0 0 rgba(255,182,193,.7)}
            70%{box-shadow:0 0 0 10px rgba(255,182,193,0)}
            100%{box-shadow:0 0 0 0 rgba(255,182,193,0)}
        }
        @media(max-width:600px){
            .header-container{height:250px}
            .avatar{width:100px;height:100px}
            .nickname{font-size:24px}
            .nav-container{grid-template-columns:repeat(2,1fr);gap:15px}
        }
        /* 涟漪 */
        .ripple{position:absolute;border-radius:50%;background:rgba(255,182,193,.6);
        transform:scale(0);animation:ripple-animation .6s ease-out;pointer-events:none}
        @keyframes ripple-animation{to{transform:scale(4);opacity:0}}
        
        /* 粉色渐变风格弹窗 - 与页面背景一致 */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease;
            padding: 20px;
        }
        
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal {
            background: linear-gradient(135deg, #ffd6e7, #ffeff7, #fff0f5);
            border-radius: 25px;
            width: 100%;
            max-width: 500px;
            max-height: 85vh;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
            transform: translateY(20px);
            transition: transform 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .modal-overlay.active .modal {
            transform: translateY(0);
        }
        
        .modal-header {
            padding: 30px 30px 20px;
            text-align: center;
            background: rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        }
        
        .modal-header h2 {
            font-size: 24px;
            font-weight: bold;
            color: #ff6b93;
            margin-bottom: 8px;
            text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
        }
        
        .modal-header p {
            color: #ff8fab;
            font-size: 15px;
            font-weight: 500;
        }
        
        .modal-content {
            padding: 25px;
            flex-grow: 1;
            overflow-y: auto;
        }
        
        .declaration-container {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 18px;
            padding: 25px;
            margin-bottom: 25px;
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .declaration-title {
            color: #ff6b93;
            margin-bottom: 20px;
            font-size: 20px;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .declaration-title::before {
            content: "";
            width: 5px;
            height: 20px;
            background: linear-gradient(to bottom, #ff9a9e, #ff6b93);
            border-radius: 3px;
        }
        
        .declaration-text {
            color: #666;
            line-height: 1.6;
            font-size: 15px;
            max-height: 200px;
            overflow-y: auto;
            padding-right: 10px;
        }
        
        .declaration-text p {
            margin-bottom: 12px;
        }
        
        .declaration-text ul {
            padding-left: 20px;
            margin-bottom: 15px;
        }
        
        .declaration-text li {
            margin-bottom: 10px;
            color: #777;
        }
        
        .declaration-text strong {
            color: #ff6b93;
            font-weight: 600;
        }
        
        .input-section {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 18px;
            padding: 25px;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .input-label {
            display: block;
            margin-bottom: 12px;
            font-weight: 600;
            color: #ff6b93;
            font-size: 16px;
        }
        
        .input-wrapper {
            position: relative;
            margin-bottom: 8px;
        }
        
        .agreement-input {
            width: 100%;
            padding: 16px;
            border: 2px solid rgba(255, 255, 255, 0.8);
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.9);
            color: #666;
            box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
        }
        
        .agreement-input:focus {
            border-color: #ff9a9e;
            background: white;
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 154, 158, 0.3), inset 0 2px 5px rgba(0, 0, 0, 0.05);
        }
        
        .agreement-input.valid {
            border-color: #4cd964;
            background: rgba(76, 217, 100, 0.1);
        }
        
        .agreement-input.invalid {
            border-color: #ff6b6b;
            background: rgba(255, 107, 107, 0.1);
        }
        
        .input-hint {
            display: block;
            margin-top: 8px;
            font-size: 14px;
            padding: 0 4px;
            min-height: 20px;
        }
        
        .input-hint.valid {
            color: #4cd964;
            font-weight: 500;
        }
        
        .input-hint.invalid {
            color: #ff6b6b;
            font-weight: 500;
        }
        
        .modal-actions {
            display: flex;
            gap: 15px;
            margin-top: 10px;
        }
        
        .modal-btn {
            flex: 1;
            padding: 16px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .reject-btn {
            background: rgba(255, 255, 255, 0.8);
            color: #ff6b6b;
            border: 2px solid #ff6b6b;
            backdrop-filter: blur(10px);
        }
        
        .reject-btn:hover {
            background: #ff6b6b;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(255, 107, 107, 0.3);
        }
        
        .agree-btn {
            background: rgba(255, 255, 255, 0.8);
            color: #4cd964;
            border: 2px solid #4cd964;
            backdrop-filter: blur(10px);
        }
        
        .agree-btn:hover:not(:disabled) {
            background: #4cd964;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(76, 217, 100, 0.3);
        }
        
        .agree-btn:disabled {
            background: rgba(255, 255, 255, 0.5);
            color: #aaa;
            border-color: #ccc;
            cursor: not-allowed;
            transform: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }
        
        /* 状态消息 */
        .status-message {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            padding: 16px 30px;
            border-radius: 15px;
            font-weight: 600;
            text-align: center;
            z-index: 10000;
            display: none;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            max-width: 90%;
            backdrop-filter: blur(15px);
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .status-message.success {
            color: #4cd964;
            border-color: rgba(76, 217, 100, 0.3);
            display: block;
        }
        
        .status-message.rejected {
            color: #ff6b6b;
            border-color: rgba(255, 107, 107, 0.3);
            display: block;
        }
        
        /* 弹窗关闭按钮 */
        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.5);
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            color: #ff6b93;
            font-size: 22px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .close-modal:hover {
            background: rgba(255, 255, 255, 0.8);
            color: #ff3b6d;
            transform: rotate(90deg);
        }
        
        /* 同意提示 */
        .agreement-note {
            text-align: center;
            margin-top: 15px;
            color: #ff8fab;
            font-size: 14px;
            font-weight: 500;
        }
        
        /* 滚动条美化 */
        .declaration-text::-webkit-scrollbar {
            width: 6px;
        }
        
        .declaration-text::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.3);
            border-radius: 3px;
        }
        
        .declaration-text::-webkit-scrollbar-thumb {
            background: rgba(255, 107, 147, 0.5);
            border-radius: 3px;
        }
        
        .declaration-text::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 107, 147, 0.7);
        }
        
        @media (max-width: 600px) {
            .modal {
                width: 100%;
                max-height: 90vh;
                border-radius: 20px;
            }
            
            .modal-header {
                padding: 25px 25px 15px;
            }
            
            .modal-content {
                padding: 20px;
            }
            
            .declaration-container,
            .input-section {
                padding: 20px;
                border-radius: 15px;
            }
            
            .modal-actions {
                flex-direction: column;
            }
            
            .modal-btn {
                padding: 15px;
            }
            
            .close-modal {
                top: 15px;
                right: 15px;
                width: 32px;
                height: 32px;
                font-size: 20px;
            }
        }