body {
 
   
    text-align: center;
    margin: 0;
    padding: 50px;
  }

  .counter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
  }

  .prompt {
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
  }

  .prompt span {
    color: red;
    margin-right: 10px;
  }

  .counter {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
  }

  .digit {
    display: inline-block;
    width: 60px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 3rem;
    border: 2px solid black;
    margin: 0 3px;
    background: white;
    transition: all 0.2s ease-in-out;
  }

  .blink {
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}


  .terminal-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    font-size: 1.5rem;
    white-space: nowrap;
    overflow: hidden;
  }

  .button-container {
    margin-top: 30px;
  }

  .btn {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 12px 24px;
    border: 2px solid black;
    background: white;
    color: black;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }

  .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: black;
    transition: left 0.3s ease-in-out;
  }

  .btn:hover::before {
    left: 0;
  }

  .btn:hover {
    color: white;
  }

  .btn span {
    position: relative;
    z-index: 1;
  }

  .btn:hover span {
    display: inline-block;
    animation: glitch 0.3s ease-in-out infinite;
  }

  @keyframes glitch {
    0% { transform: translateX(0); }
    33% { transform: translateX(-2px); }
    66% { transform: translateX(2px); }
    100% { transform: translateX(0); }
  }