Changed around line 1
+ :root {
+ --primary-color: #1a73e8;
+ --secondary-color: #fbbc05;
+ --background-color: #f8f9fa;
+ --text-color: #202124;
+ --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+ }
+
+ body {
+ margin: 0;
+ font-family: var(--font-family);
+ color: var(--text-color);
+ background-color: var(--background-color);
+ line-height: 1.6;
+ }
+
+ .hero {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ padding: 100px 20px;
+ text-align: center;
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ margin: 0;
+ }
+
+ .subtitle {
+ font-size: 1.5rem;
+ margin-top: 10px;
+ }
+
+ .content {
+ padding: 40px 20px;
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ .wishes, .countdown {
+ margin-bottom: 40px;
+ }
+
+ .countdown h2 {
+ text-align: center;
+ margin-bottom: 20px;
+ }
+
+ .timer {
+ display: flex;
+ justify-content: center;
+ gap: 20px;
+ }
+
+ .time-box {
+ text-align: center;
+ background: white;
+ padding: 20px;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ .time-box span {
+ display: block;
+ }
+
+ .time-box span:first-child {
+ font-size: 2rem;
+ font-weight: bold;
+ }
+
+ .label {
+ font-size: 1rem;
+ color: #666;
+ }
+
+ .footer {
+ text-align: center;
+ padding: 20px;
+ background: var(--primary-color);
+ color: white;
+ }
+
+ @media (max-width: 600px) {
+ .hero-content h1 {
+ font-size: 2rem;
+ }
+
+ .subtitle {
+ font-size: 1.2rem;
+ }
+
+ .timer {
+ flex-direction: column;
+ gap: 10px;
+ }
+
+ .time-box {
+ padding: 15px;
+ }
+
+ .time-box span:first-child {
+ font-size: 1.5rem;
+ }
+ }