* {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
      }

/* 自定义滚动条 */
        ::-webkit-scrollbar {
            width: 8px; /* 减小滚动条宽度 */
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(to bottom, #ed00ff 20%, #7500ff 60%, #0057ff 90%, #5700ff 100%);
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(to bottom, #ed00ff 20%, #7500ff 60%, #0057ff 90%, #5700ff 100%);
        }

        body {
            background: linear-gradient( 90deg, rgba(247, 149, 51, .1), rgba(243, 112, 85, .1) 15%, rgba(239, 78, 123, .1) 30%, rgba(161, 102, 171, .1) 44%, rgba(80, 115, 184, .1) 58%, rgba(16, 152, 173, .1) 72%, rgba(7, 179, 155, .1) 86%, rgba(109, 186, 130, .1));
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: 'Noto Sans SC', sans-serif;
            color: #333;
            padding: 20px;
            overflow-x: hidden;
			cursor: url('https://www.hkgzs.top/image/11.ico'),auto;
        }

        a {
		   text-decoration: none;
		  }
        
        .container {
            width: 100%;
            max-width: 800px;
            text-align: center;
            padding: 50px 40px;
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 
                0 15px 40px rgba(0, 0, 0, 0.15),
                0 0 0 5px rgba(255, 255, 255, 0.8);
            position: relative;
            z-index: 10;
            margin: 20px auto;
            transform: translateY(30px);
            opacity: 0;
            animation: 
                cardEntry 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards,
                cardFloat 6s ease-in-out infinite 0.8s;
        }
        
        /* 卡片入场动画 */
        @keyframes cardEntry {
            0% { 
                transform: translateY(30px); 
                opacity: 0; 
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            }
            100% { 
                transform: translateY(0); 
                opacity: 1; 
                box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
            }
        }
        
        /* 卡片浮动动画 */
        @keyframes cardFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        
        h1 {
            font-family: 'Mochiy Pop One', sans-serif;
            font-size: 5.5rem;
            color: #ff6b8b;
            margin-bottom: 15px;
            letter-spacing: 2px;
            text-shadow: 3px 3px 0 rgba(255, 209, 220, 0.5);
            transform: scale(0.95);
            opacity: 0;
            animation: 
                titleEntry 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.4s,
                titlePulse 3s ease-in-out infinite 1s;
        }
        
        @keyframes titleEntry {
            0% { transform: scale(0.95); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }
        
        @keyframes titlePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        h2 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: #4a4a4a;
            font-weight: 700;
            text-shadow: 0 0 3px #ff6b8b;
            transform: translateY(10px);
            opacity: 0;
            animation: subtitleEntry 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.6s;
        }
        
        @keyframes subtitleEntry {
            0% { transform: translateY(10px); opacity: 0; }
            100% { transform: translateY(0); opacity: 1; }
        }
        
        .character-image {
            width: 100%;
            max-width: 600px;
            height: auto;
            margin: 0 auto 30px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
            border: 5px solid white;
            transform: scale(0.95) rotate(2deg);
            opacity: 0;
            animation: 
                imageEntry 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.8s,
                imageFloat 5s ease-in-out infinite 1.6s;
            position: relative;
            z-index: 2;
        }
        
        @keyframes imageEntry {
            0% { transform: scale(0.95) rotate(2deg); opacity: 0; }
            100% { transform: scale(1) rotate(0); opacity: 1; }
        }
        
        @keyframes imageFloat {
            0%, 100% { transform: translateY(0) rotate(0); }
            25% { transform: translateY(-8px) rotate(1deg); }
            50% { transform: translateY(0) rotate(0); }
            75% { transform: translateY(-5px) rotate(-1deg); }
        }
        
        .character-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .character-image:hover img {
            transform: scale(1.03);
        }
        
        .buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
            margin-top: 20px;
            opacity: 0;
            transform: translateY(20px);
            animation: buttonsEntry 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 1s;
        }
        
        @keyframes buttonsEntry {
            0% { transform: translateY(20px); opacity: 0; }
            100% { transform: translateY(0); opacity: 1; }
        }
        
        .btn {
            padding: 16px 35px;
            font-family: 'Mochiy Pop One', sans-serif;
            font-size: 1.2rem;
            border: none;
            border-radius: 50px;
            cursor: url(https://cdn.jsdelivr.net/gh/moezx/cdn@3.1.9/img/Sakura/cursor/ayuda.cur), auto;
            transition: all 0.3s ease;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            min-width: 180px;
            color: #fff;
            text-shadow: 1px 1px 1px rgba(0,0,0,0.15);
            position: relative;
            overflow: hidden;
            transform: translateZ(0);
            z-index: 2;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            z-index: 1;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        
        .btn:hover::before {
            transform: scaleX(1);
        }
        
        .btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .btn:active {
            transform: translateY(2px) scale(0.98);
        }
        
        .btn-home {
            background: linear-gradient(to right, #1e90ff, #4ecdc4);
        }
        
        .btn-about {
            background: linear-gradient(to right, #ff6b8b, #ff9eb5);
        }
        
        .footer-note {
            margin-top: 30px;
            font-size: 0.9rem;
            color: #888;
            font-weight: 700;
            opacity: 0;
            animation: fadeIn 0.8s ease forwards 1.2s;
        }
        
        @keyframes fadeIn {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }
        
        /* 简约装饰 - 只保留少量高效动画 */
        .sparkle {
            position: absolute;
            width: 10px;
            height: 10px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 0 10px white, 0 0 20px white;
            animation: sparkleAnim 3s ease-in-out infinite;
            z-index: 1;
        }
        
        @keyframes sparkleAnim {
            0%, 100% { opacity: 0; transform: scale(0); }
            50% { opacity: 1; transform: scale(1.5); }
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .container {
                padding: 35px 25px;
                max-width: 95%;
            }
            
            h1 {
                font-size: 4rem;
            }
            
            h2 {
                font-size: 1.5rem;
                margin-bottom: 25px;
            }
            
            .buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .btn {
                width: 100%;
                max-width: 280px;
                margin: 0 auto;
                padding: 14px 30px;
            }
            
            .character-image {
                max-width: 100%;
                margin-bottom: 25px;
                border-width: 4px;
            }
        }
        
        @media (max-width: 480px) {
            h1 {
                font-size: 3.2rem;
            }
            
            h2 {
                font-size: 1.3rem;
                margin-bottom: 20px;
            }
            
            .container {
                padding: 30px 20px;
            }
            
            .btn {
                font-size: 1.1rem;
                min-width: auto;
            }
        }