body {
      background: #e0e0e0;
      height: 100vh;
      font-family: 'Segoe UI', sans-serif;
      
    }

    .main {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .clock {
      margin-top: 200px;
      display: flex;
      gap: 20px;
      transform: scale(0.9);
    }

    .digit-wrapper {
      position: relative;
      width: 60px;
      height: 600px;
      /* Show all 10 digits (10 x 60px) */
      background: #ddd;
      border-radius: 30px;
      box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .digit-strip {
      position: absolute;
      top: 0;
      width: 100%;
      transition: transform 0.5s ease-in-out;
    }

    .digit-strip div {
      height: 60px;
      line-height: 60px;
      text-align: center;
      font-size: 2em;
      color: #333;
    }

    .highlight-circle {
      position: absolute;
      width: 460px;
      height: 60px;
      margin-top: 180px;
      pointer-events: none;
      display: flex;
      justify-content: space-between;

    }

    .highlight-circle div {
      background: rgba(255, 255, 255, 0.6);
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.3) inset;
      height: 60px;
      width: 60px;
      border-radius: 50%;
      z-index: 10;
    }

    .stmt {
      font-family: 'Montserrat', sans-serif;
     
      font-size: 30px;
      font-family: 'Segoe UI', sans-serif;
      font-size: 3rem;
      backdrop-filter: blur(8px);
      color: #252525;
      padding: 5px 8px;
      border-radius: 150px;
      text-align: center;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        width: 600px;
    }

    .footer {
      background: #23486A;
      color: #fff;
      padding: 10px 20px 8px 20px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      box-shadow: 0 -1px 4px rgb(0 0 0 / 0.03);
      margin-top: 5rem;
      padding: 10px 20px;
      text-align: center;
      font-family: 'Poppins', sans-serif;
    }

    .full-footer h3 {
      margin-bottom: 10px;
      font-size: 1.5rem;
    }

    .full-footer a {
      color: #fff;
      text-decoration: none;
      margin: 0 10px;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .full-footer a:hover {
      color: #0f172a;
    }

    .footer-links {
      margin-top: 10px;
    }

    .footer-links i {
      font-size: 25px;
    }

    .footer-copyright {
      margin-top: 10px;
      text-align: center;
      font-size: 0.7rem;
      color: #888;
      user-select: none;
      text-transform: uppercase;
      letter-spacing: 1px;
    }