Changed around line 1
+ :root {
+ --primary-color: #e63946;
+ --secondary-color: #f1faee;
+ --accent-color: #a8dadc;
+ --text-color: #1d3557;
+ --font-family: 'Segoe UI', system-ui, sans-serif;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: var(--font-family);
+ line-height: 1.6;
+ color: var(--text-color);
+ background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ padding: 2rem;
+ }
+
+ header {
+ text-align: center;
+ margin-bottom: 2rem;
+ }
+
+ h1 {
+ font-size: 2.5rem;
+ color: var(--primary-color);
+ animation: fadeIn 2s ease-in-out;
+ }
+
+ .subtitle {
+ font-size: 1.2rem;
+ color: var(--text-color);
+ margin-top: 0.5rem;
+ }
+
+ .message {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ max-width: 800px;
+ margin: 0 auto;
+ padding: 2rem;
+ background: rgba(255, 255, 255, 0.9);
+ border-radius: 15px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ .language {
+ padding: 1rem;
+ }
+
+ h2 {
+ color: var(--primary-color);
+ margin-bottom: 1rem;
+ }
+
+ .animation {
+ position: relative;
+ margin-top: 3rem;
+ height: 200px;
+ width: 100%;
+ }
+
+ .heart {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ width: 100px;
+ height: 100px;
+ background-color: var(--primary-color);
+ clip-path: polygon(
+ 50% 15%,
+ 70% 0%,
+ 85% 15%,
+ 100% 35%,
+ 100% 70%,
+ 50% 100%,
+ 0% 70%,
+ 0% 35%,
+ 15% 15%,
+ 30% 0%
+ );
+ animation: heartbeat 1.5s infinite;
+ }
+
+ .fireworks {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ overflow: hidden;
+ }
+
+ .firework {
+ position: absolute;
+ width: 10px;
+ height: 10px;
+ background: var(--primary-color);
+ border-radius: 50%;
+ animation: explode 2s infinite ease-in-out;
+ opacity: 0;
+ }
+
+ .firework:nth-child(1) {
+ top: 10%;
+ left: 20%;
+ animation-delay: 0.5s;
+ }
+
+ .firework:nth-child(2) {
+ top: 30%;
+ left: 70%;
+ animation-delay: 1s;
+ }
+
+ .firework:nth-child(3) {
+ top: 50%;
+ left: 40%;
+ animation-delay: 1.5s;
+ }
+
+ footer {
+ margin-top: 2rem;
+ text-align: center;
+ color: var(--text-color);
+ }
+
+ @keyframes fadeIn {
+ 0% { opacity: 0; }
+ 100% { opacity: 1; }
+ }
+
+ @keyframes heartbeat {
+ 0% { transform: translate(-50%, -50%) scale(1); }
+ 50% { transform: translate(-50%, -50%) scale(1.1); }
+ 100% { transform: translate(-50%, -50%) scale(1); }
+ }
+
+ @keyframes explode {
+ 0% { transform: scale(0); opacity: 1; }
+ 100% { transform: scale(10); opacity: 0; }
+ }
+
+ @media (max-width: 768px) {
+ h1 {
+ font-size: 2rem;
+ }
+
+ .message {
+ grid-template-columns: 1fr;
+ padding: 1rem;
+ }
+ }