* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Times New Roman", serif;
  }
  
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #18140e;
  }
  
  /* Container principal */
  .container {
    position: relative;
    text-align: center;
  }
  
  .clock {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, #f4e7d4 40%, #d4a373);
    border: 8px solid #6b4226;
    box-shadow: 0px 10px 80px rgba(0, 0, 0, 0.2), inset 0 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  /* Números do relógio */
  .clock span {
    position: absolute;
    transform: rotate(calc(30deg * var(--i)));
    inset: 12px;
    text-align: center;
  }
  
  .clock span b {
    transform: rotate(calc(-30deg * var(--i)));
    display: inline-block;
    font-size: 20px;
    color: #6b4226;
  }
  
  /* Ponto central do relógio */
  .clock::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #6b4226;
    z-index: 2;
  }
  
  /* Ponteiros do relógio */
  .hand {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  
  .hand i {
    position: absolute;
    background-color: var(--clr);
    width: 4px;
    height: var(--h);
    border-radius: 8px;
  }
  
  .digital-clock {
    margin-top: 20px;
    font-size: 50px;
    color: #6b4226;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  }
  
  