Changed around line 1
+ body {
+ font-family: 'Georgia', serif;
+ margin: 0;
+ padding: 0;
+ background: linear-gradient(135deg, #ff7eb3, #ff758c);
+ color: #fff;
+ text-align: center;
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ }
+
+ header {
+ padding: 2rem;
+ }
+
+ h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .card {
+ background: rgba(255, 255, 255, 0.1);
+ border-radius: 15px;
+ padding: 2rem;
+ margin: 2rem auto;
+ max-width: 400px;
+ backdrop-filter: blur(10px);
+ box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
+ }
+
+ .heart-image {
+ width: 100px;
+ height: auto;
+ margin-bottom: 1rem;
+ animation: pulse 2s infinite;
+ }
+
+ .message {
+ font-size: 1.5rem;
+ }
+
+ .chinese {
+ font-family: 'SimSun', serif;
+ margin-bottom: 1rem;
+ }
+
+ .spanish {
+ font-style: italic;
+ }
+
+ button {
+ background: #fff;
+ color: #ff7eb3;
+ border: none;
+ padding: 1rem 2rem;
+ border-radius: 25px;
+ font-size: 1rem;
+ cursor: pointer;
+ transition: all 0.3s ease;
+ }
+
+ button:hover {
+ transform: scale(1.1);
+ box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
+ }
+
+ .hidden {
+ display: none;
+ }
+
+ footer {
+ padding: 1rem;
+ }
+
+ @keyframes pulse {
+ 0% { transform: scale(1); }
+ 50% { transform: scale(1.1); }
+ 100% { transform: scale(1); }
+ }
+
+ @media (max-width: 600px) {
+ h1 {
+ font-size: 2rem;
+ }
+
+ .card {
+ padding: 1rem;
+ }
+
+ .message {
+ font-size: 1.2rem;
+ }
+ }