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

        body {
            font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
            background: linear-gradient(135deg, rgba(255, 154, 158, 0.08) 0%, rgba(254, 207, 239, 0.08) 50%, rgba(254, 207, 239, 0.08) 100%);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        .anime-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://api.suyanw.cn/api/comic3.php');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            z-index: -3;
            filter: blur(0px);
        }

        .anime-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 192, 203, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 182, 193, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 105, 180, 0.01) 0%, transparent 30%);
            z-index: -2;
        }

        .sakura {
            position: fixed;
            width: 20px;
            height: 20px;
            background: radial-gradient(circle, rgba(255, 183, 197, 0.25), rgba(255, 145, 164, 0.25));
            border-radius: 50% 0 50% 0;
            animation: fall linear infinite;
            z-index: -1;
        }

        @keyframes fall {
            0% {
                transform: translateY(-100vh) rotate(0deg);
                opacity: 1;
            }
            100% {
                transform: translateY(100vh) rotate(360deg);
                opacity: 0;
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 1;
        }

        
        .header {
            text-align: center;
            margin-bottom: 50px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 192, 203, 0.1));
            backdrop-filter: blur(45px);
            border-radius: 25px;
            padding: 40px 20px;
            box-shadow: 0 8px 32px rgba(255, 105, 180, 0.03);
            border: 2px solid rgba(255, 255, 255, 0.06);
        }

        .avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, rgba(255, 154, 158, 0.1), rgba(250, 208, 196, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            color: white;
            box-shadow: 0 8px 25px rgba(255, 105, 180, 0.05);
            position: relative;
            overflow: hidden;
            border: 3px solid rgba(255, 255, 255, 0.12);
        }

        .avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        .avatar::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.06), transparent);
            transform: rotate(45deg);
            animation: shine 3s ease-in-out infinite;
            z-index: 1;
        }

        @keyframes shine {
            0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .name {
            font-size: 2.5em;
            color: #d63384;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .qq-info {
            font-size: 1em;
            color: #8e44ad;
            margin-bottom: 10px;
            opacity: 1;
            font-weight: 500;
        }

        .description {
            font-size: 1.2em;
            color: #8e44ad;
            text-align: center;
            margin-bottom: 20px;
        }

        .nav-menu {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .main-nav-btn {
    background: linear-gradient(135deg, rgba(255, 154, 158, 0.12), rgba(254, 207, 239, 0.12));
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    color: #95FFAD;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(35px);
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
}

.main-nav-btn:hover,
.main-nav-btn:active,
.main-nav-btn:focus,
.main-nav-btn:focus-visible {
    outline: none !important;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.08) !important;
    background: linear-gradient(135deg, rgba(254, 207, 239, 0.2), rgba(255, 154, 158, 0.2)) !important;
}

* {
    -webkit-tap-highlight-color: transparent;
}

        .nav-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 105, 180, 0.05);
            backdrop-filter: blur(8px);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 240, 245, 0.15));
            backdrop-filter: blur(45px);
            border-radius: 25px;
            padding: 40px 30px;
            box-shadow: 0 15px 40px rgba(255, 105, 180, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.12);
            width: 90%;
            max-width: 400px;
            text-align: center;
        }

        .modal-title {
            font-size: 1.8em;
            color: #d63384;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .modal-nav-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .modal-nav-item {
            background: linear-gradient(135deg, rgba(255, 154, 158, 0.12), rgba(254, 207, 239, 0.12));
            padding: 15px 20px;
            border-radius: 50px;
            text-decoration: none;
            color: black;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 105, 180, 0.03);
            border: 2px solid rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(35px);
            font-size: 16px;
        }

        .modal-nav-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 105, 180, 0.08);
            background: linear-gradient(135deg, rgba(254, 207, 239, 0.2), rgba(255, 154, 158, 0.2));
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, rgba(255, 154, 158, 0.12), rgba(254, 207, 239, 0.12));
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(35px);
            border: 2px solid rgba(255, 255, 255, 0.06);
        }

        .close-modal:hover {
            background: linear-gradient(135deg, rgba(254, 207, 239, 0.2), rgba(255, 154, 158, 0.2));
            transform: rotate(90deg);
        }

        
        .content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 240, 245, 0.12));
            backdrop-filter: blur(45px);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 8px 32px rgba(255, 105, 180, 0.03);
            border: 2px solid rgba(255, 255, 255, 0.06);
            transition: all 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 105, 180, 0.06);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 240, 245, 0.18));
        }

        .card-title {
            font-size: 1.5em;
            color: #d63384;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .card-content {
            color: #666;
            line-height: 1.6;
        }

        .ad-card {
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(238, 90, 36, 0.2), rgba(255, 159, 243, 0.2));
            color: white;
            border: 3px solid rgba(255, 255, 255, 0.12);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(40px);
        }

        .ad-card::before {
            content: "";
            position: absolute;
            top: -5px;
            right: -30px;
            background: rgba(255, 56, 56, 0.25);
            color: white;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 12px;
            font-weight: bold;
            backdrop-filter: blur(10px);
        }

        .ad-card .card-title {
            color: white;
            font-size: 1.8em;
        }

        .ad-card .card-content {
            color: rgba(255, 255, 255, 0.95);
        }

        .ad-button {
            display: inline-block;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(248, 249, 250, 0.3));
            color: #ff6b6b;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
            backdrop-filter: blur(35px);
        }

        .ad-button:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(248, 249, 250, 0.5));
        }

        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 40px 0;
        }

        .social-link {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(255, 154, 158, 0.12), rgba(254, 207, 239, 0.12));
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            font-size: 24px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 105, 180, 0.03);
            backdrop-filter: blur(35px);
            border: 2px solid rgba(255, 255, 255, 0.06);
        }

        .social-link:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 8px 25px rgba(255, 105, 180, 0.08);
            background: linear-gradient(135deg, rgba(255, 154, 158, 0.2), rgba(254, 207, 239, 0.2));
        }

        .footer {
            text-align: center;
            padding: 30px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 192, 203, 0.1));
            backdrop-filter: blur(45px);
            border-radius: 20px;
            color: #8e44ad;
            box-shadow: 0 8px 32px rgba(255, 105, 180, 0.03);
            border: 2px solid rgba(255, 255, 255, 0.06);
        }

        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }
            
            .content {
                grid-template-columns: 1fr;
            }
            
            .name {
                font-size: 2em;
            }

            .modal-content {
                padding: 30px 20px;
            }

            .modal-nav-item {
                padding: 12px 15px;
                font-size: 14px;
            }
        }

        .heart {
            position: fixed;
            color: #ff69b4;
            font-size: 20px;
            animation: float 6s ease-in-out infinite;
            z-index: -1;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-20px) rotate(5deg); }
            75% { transform: translateY(-10px) rotate(-5deg); }
        }

        
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 105, 180, 0.3);
            border-radius: 50%;
            border-top-color: #ff69b4;
            animation: spin 1s ease-in-out infinite;
        }

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

        
        @keyframes modalFadeIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }

        .nav-modal.active {
            display: flex;
        }

        .nav-modal.active .modal-content {
            animation: modalFadeIn 0.3s ease-out forwards;
        }
        video {
    display: block;
    margin: 0 auto;
    width: 100%;
    border-radius: 15px;
    max-width: 800px;
    padding: 0;
    height: auto;
}

.card {
    border-radius: 25px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.card h4  {
    text-align: left;
    font-size: 20px;
    margin-bottom: 5px;
}

.card p {
    text-align: left;
    }
    
#backToTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #F46969;
            color: white;
            border: none;
            outline: none;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0,0,0,0.8);
            font-size: 20px;
            display: none;
            transition: background-color 0.3s;
}

#backToTop:hover {
            background-color: #F46969;
}    