Changed around line 1
+ :root {
+ --purple-light: #e0b0ff;
+ --purple-dark: #800080;
+ --purple-glow: rgba(128, 0, 128, 0.3);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ min-height: 100vh;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ background: linear-gradient(135deg, var(--purple-dark), #2a0934);
+ font-family: system-ui, sans-serif;
+ }
+
+ .card {
+ position: relative;
+ width: 90%;
+ max-width: 600px;
+ min-height: 400px;
+ background: rgba(255, 255, 255, 0.1);
+ backdrop-filter: blur(10px);
+ border-radius: 20px;
+ padding: 2rem;
+ box-shadow: 0 0 30px var(--purple-glow);
+ overflow: hidden;
+ }
+
+ .greeting {
+ text-align: center;
+ color: white;
+ }
+
+ h1, h2 {
+ margin: 1rem 0;
+ text-shadow: 0 0 10px var(--purple-light);
+ }
+
+ .chinese {
+ font-size: 2.5rem;
+ font-weight: 300;
+ }
+
+ .spanish {
+ font-size: 2rem;
+ }
+
+ .message {
+ margin: 2rem 0;
+ line-height: 1.6;
+ }
+
+ .message p {
+ margin: 1rem 0;
+ }
+
+ .heart-btn {
+ font-size: 2rem;
+ background: none;
+ border: none;
+ cursor: pointer;
+ transition: transform 0.3s;
+ padding: 1rem;
+ }
+
+ .heart-btn:hover {
+ transform: scale(1.2);
+ }
+
+ .lantern {
+ position: absolute;
+ width: 30px;
+ height: 40px;
+ background: var(--purple-light);
+ border-radius: 50%;
+ box-shadow: 0 0 20px var(--purple-light);
+ animation: float 3s infinite ease-in-out;
+ }
+
+ .lantern:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
+ .lantern:nth-child(2) { top: 20%; right: 10%; animation-delay: 0.5s; }
+ .lantern:nth-child(3) { top: 15%; left: 50%; animation-delay: 1s; }
+
+ @keyframes float {
+ 0%, 100% { transform: translateY(0); }
+ 50% { transform: translateY(-20px); }
+ }
+
+ .floating-hearts {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ pointer-events: none;
+ }
+
+ @media (max-width: 600px) {
+ .card {
+ padding: 1rem;
+ min-height: 300px;
+ }
+
+ .chinese { font-size: 2rem; }
+ .spanish { font-size: 1.5rem; }
+ .message { font-size: 0.9rem; }
+ }