@layer components {
  .timer-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem 0.5rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
  }

  .timer-box:hover {
    transform: scale(1.05);
    background: rgba(0, 0, 0, 0.3);
  }
}