body {
  background-color: #f0f0f0;
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  margin: 0;
  padding: 0 1rem;
}

.container {
  text-align: center;
  width: 100%;
  max-width: 350px;
}

button {
  border: none;
  outline: none;
  border-radius: 30px;
  padding: 0.8rem;
  margin: 0.5rem 0;
  width: 100%;
  max-width: 250px;
  background-color: #f0f0f0;
  box-shadow: 3px 3px 6px #b8b9be, -3px -3px 6px #fff;
  font-size: 1rem;
  cursor: pointer;
  color: #333;
  transition: all 0.2s;
}

button:hover {
  background-color: #e0e0e0;
  box-shadow: inset 5px 5px 3px #b8b9be, inset -3px -3px 6px #fff;
}

.avatar {
  border-radius: 50%;
  overflow: hidden;
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.avatar img {
  width: 100%;
  height: 100%;
}

.info {
  background: #f0f0f0;
  box-shadow: 3px 3px 6px #b8b9be, -3px -3px 6px #fff;
  border-radius: 20px;
  padding: 10px;
  margin: 10px 0;
}

.footer {
  font-size: 0.8rem;
  margin-top: 1.5rem;
}

.neumorphic-timer {
  display: inline-block;
  padding: 0.7rem;
  background-color: #f0f0f0;
  border-radius: 15px;
  box-shadow: inset 3px 3px 8px #b8b9be, inset -5px -5px 10px #fff;
  font-size: 0.9rem;
  color: #333;
  margin-top: 1rem;
  max-width: 300px;
  text-align: center;
}

.timer-text {
  color: #ff0000;
}

.desktop { max-width: 500px; }
.mobile  { max-width: 350px; }
