    body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, lightblue, #1e3a8a);
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
    }

    .clock-container {
      background: rgba(255, 255, 255, 0.15);
      padding: 30px 40px;
      border-radius: 16px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
      text-align: center;
      backdrop-filter: blur(10px);
    }

    h1 {
      font-size: 50px;
      letter-spacing: 2px;
      margin: 10px 0;
    }

    .date {
      font-size: 20px;
      margin-top: 10px;
      color: #fff;
    }

    .title {
      font-size: 22px;
      margin-bottom: 15px;
      font-weight: 500;
      color: #fff;
    }

    @media (max-width: 500px) {
      h1 {
        font-size: 38px;
      }
      .date {
        font-size: 18px;
      }
    }