/* styles.css */
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom right, #2c003e, #5e006e);
    font-family: 'Microsoft YaHei', sans-serif;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    user-select: none;
}

.container {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
    text-align: center;
    max-width: 90%;
}

h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.button {
    background: #ff2ebc;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.button:hover {
    background: #e60099;
}
