        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
            outline: none;
        }

        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://www.yuxian.cfd/i/2026/03/31/z72jqr.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            z-index: -3;
            filter: blur(0px);
        }



        .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;
            outline: none;
            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);
        }
        
        
        .adc-button {
            display: inline-block;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(248, 249, 250, 0.3));
            color: #ff6b6b;
            padding: 10px 20px;
            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);
        }

        .adc-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));
        }

        
        
        
        
    .adc-button {
        display: inline-block;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(248, 249, 250, 0.3));
        color: #ff6b6b;
        padding: 10px 20px;
        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);
        border: none;
        cursor: pointer;
        font-family: inherit;
        font-size: 16px;
    }

    .adc-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));
    }
