* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background: linear-gradient(180deg, #e8f4fc 0%, #d4ebf7 100%);
  overflow-x: hidden;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Snowflakes */
.snowflakes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.snowflake {
  position: absolute;
  color: #7eb8d8;
  font-size: 1rem;
  animation: fall linear infinite;
  opacity: 0.7;
}

.snowflake:nth-child(1) { left: 5%; animation-duration: 10s; animation-delay: 0s; font-size: 1.2rem; }
.snowflake:nth-child(2) { left: 15%; animation-duration: 12s; animation-delay: 1s; font-size: 0.8rem; color: #a8c8dc; }
.snowflake:nth-child(3) { left: 25%; animation-duration: 8s; animation-delay: 2s; font-size: 1rem; }
.snowflake:nth-child(4) { left: 35%; animation-duration: 14s; animation-delay: 0.5s; font-size: 0.6rem; color: #c4a87c; }
.snowflake:nth-child(5) { left: 50%; animation-duration: 11s; animation-delay: 3s; font-size: 1.1rem; }
.snowflake:nth-child(6) { left: 65%; animation-duration: 9s; animation-delay: 1.5s; font-size: 0.9rem; color: #a8c8dc; }
.snowflake:nth-child(7) { left: 75%; animation-duration: 13s; animation-delay: 2.5s; font-size: 0.7rem; color: #c4a87c; }
.snowflake:nth-child(8) { left: 85%; animation-duration: 10s; animation-delay: 0s; font-size: 1rem; }
.snowflake:nth-child(9) { left: 92%; animation-duration: 15s; animation-delay: 4s; font-size: 0.8rem; }
.snowflake:nth-child(10) { left: 45%; animation-duration: 7s; animation-delay: 1s; font-size: 0.5rem; color: #c4a87c; }

@keyframes fall {
  0% { top: -10%; transform: translateX(0) rotate(0deg); }
  100% { top: 100%; transform: translateX(20px) rotate(360deg); }
}

/* Main Content */
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  z-index: 2;
  padding-bottom: 200px;
}

.annual {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: #6ba3c9;
  margin-bottom: 0.5rem;
}

.title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 7vw, 4rem);
  color: #3d8a7a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.date {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(1rem, 3vw, 1.4rem);
  color: #b8a066;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.date sup {
  font-size: 0.7em;
}

.zoom-link {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  color: #6ba3c9;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
}

.zoom-link:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #4a8ab8;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(107, 163, 201, 0.3);
}

/* Scene */
.scene {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  pointer-events: none;
}

.snow-hills {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.hill {
  position: absolute;
  bottom: 0;
  width: 100%;
  border-radius: 50% 50% 0 0;
}

.hill-1 {
  height: 60%;
  background: #d4ebf7;
  left: -20%;
  width: 80%;
}

.hill-2 {
  height: 50%;
  background: #c5e3f3;
  right: -10%;
  width: 70%;
}

.hill-3 {
  height: 40%;
  background: #b8ddf0;
  left: 20%;
  width: 100%;
}

.trees {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.tree {
  position: absolute;
  bottom: 10%;
  filter: hue-rotate(0deg);
}

.tree-large { font-size: clamp(4rem, 12vw, 8rem); }
.tree-medium { font-size: clamp(2.5rem, 8vw, 5rem); }
.tree-small { font-size: clamp(1.5rem, 5vw, 3rem); filter: brightness(1.3) saturate(0.5); }

.tree-1 { left: 5%; bottom: 15%; }
.tree-2 { left: 20%; bottom: 25%; }
.tree-3 { left: 35%; bottom: 20%; }
.tree-4 { left: 50%; bottom: 30%; }
.tree-5 { right: 10%; bottom: 12%; }
.tree-6 { right: 25%; bottom: 28%; }
.tree-7 { right: 35%; bottom: 18%; }

/* Responsive */
@media (max-width: 768px) {
  .content {
    padding-bottom: 180px;
  }
  
  .scene {
    height: 35%;
  }
}

@media (max-width: 480px) {
  .content {
    padding: 1rem;
    padding-bottom: 150px;
  }
  
  .scene {
    height: 30%;
  }
  
  .zoom-link {
    padding: 0.6rem 1rem;
  }
}
