body {
   background-color: #fff0f5;
   text-align: center;
   font-family: 'Noto Serif TC', serif;
   padding: 20px;
}

h1 {
   color: #db94d1;
   font-size: 32px;
   font-weight: 700;
}

p {
   font-size: 20px;
   color: #444;
   font-weight: 400;
}

.glossy-button {
   background: linear-gradient(45deg, #b22222, #ff69b4);
   color: white;
   border: none;
   padding: 12px 24px;
   font-size: 18px;
   border-radius: 10px;
   cursor: pointer;
   transition: all 0.3s;
   box-shadow: 0 4px 10px rgba(178, 34, 34, 0.4);
   font-family: 'Noto Serif TC', serif;
   font-weight: 700;
}

.glossy-button:hover {
   background: linear-gradient(45deg, #ff69b4, #b22222);
   transform: scale(1.1);
}