    :root {
      --main-color: #1cb098;
      --bg1: #e0fff4;
      --bg2: #ffffff;
    }
    body {
      margin: 0;
      height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-family: 'Urbanist', sans-serif;
      background: radial-gradient(circle at top right, var(--bg1), var(--bg2));
      overflow: hidden;
      color: #333;
    }
    .blob {
      position: absolute;
      width: 500px;
      height: 500px;
      background: var(--main-color);
      opacity: 0.1;
      border-radius: 50%;
      animation: blobAnim 8s infinite alternate ease-in-out;
      filter: blur(100px);
    }
    @keyframes blobAnim {
      0% { transform: translate(-200px, -100px) scale(1); }
      100% { transform: translate(200px, 100px) scale(1.2); }
    }
    h1 {
      font-size: 3rem;
      color: var(--main-color);
      margin-bottom: 0.5rem;
      z-index: 1;
    }
    p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      z-index: 1;
    }
    .countdown {
      display: flex;
      gap: 20px;
      z-index: 1;
    }
    .time-box {
      background: #fff;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      width: 80px;
    }
    .time-box span {
      font-size: 2rem;
      font-weight: bold;
      color: var(--main-color);
      display: block;
    }
    footer {
      position: absolute;
      bottom: 20px;
      font-size: 0.9rem;
      color: #888;
      z-index: 1;
    }

      .heart {
    display: inline-block;
    transition: transform 0.3s ease;
  }
  .heart:hover {
    transform: scale(1.3);
  }
  footer {
    animation: fadeIn 1.5s ease-in-out forwards;
    opacity: 0;
    position: absolute;
    bottom: 20px;
    text-align: center;
    width: 100%;
  }
  @keyframes fadeIn {
    to { opacity: 1; }
  }
 .animated-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    position: relative;
    overflow: hidden;
    text-align: center;
    opacity: 0;
    transform: scale(0.95);
    animation: fadeInScale 1s ease forwards;
  }
  .animated-title span {
    color: #1cb098;
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.7s ease forwards 0.6s;
  }
  .animated-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #1cb098, #6ef3d6);
    border-radius: 2px;
    animation: underlineGrow 0.6s ease forwards 1.3s;
  }

  @keyframes fadeInScale {
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  @keyframes slideUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes underlineGrow {
    to {
      width: 80%;
    }
  }