        body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            background: linear-gradient(to right, #ffdde1, #ee9ca7);
            font-family: 'Arial', sans-serif;
            color: #333;
            text-align: center;
        }
        .container {
            background-color: rgba(255, 255, 255, 0.9);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            max-width: 400px;
        }
        h1 {
            margin-bottom: 20px;
            font-size: 2.5em;
            color: #d25d83; /* 美妆行业的柔和颜色 */
        }
        p {
            margin-bottom: 30px;
            font-size: 1.2em;
            color: #555;
        }
        .link {
            padding: 15px 30px;
            background-color: #d25d83; /* 按钮颜色 */
            color: white;
            text-decoration: none;
            border-radius: 25px;
            transition: background-color 0.3s, transform 0.3s;
            font-size: 1.1em;
            font-weight: bold;
        }
        .link:hover {
            background-color: #a74d6a; /* 悬停时颜色 */
            transform: scale(1.05);
        }
        .footer {
            margin-top: 20px;
            font-size: 0.9em;
            color: #777;
        }