.menu {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  display: none; /* Initially hidden */
  overflow: hidden;

  /* Simple background and text color */
  background-color: black; /* Black background */
  /* color: rgb(202, 37, 166); Bright pinkish color for text */
  color: #ffa38c;
  /* Border and shadow to add some depth */
  border: 2px solid rgba(255, 255, 255, 0.3); /* Light border */
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.4),
    inset 0 0 10px rgba(255, 255, 255, 0.2);

  transition: opacity 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth transitions */
}

/* Hover effect for a glowing border and text color change */

.menu.show {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.menu a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none;
}

.sector {
  width: 200px;
  height: 200px;
  transform-origin: 0 100%;
  margin-top: -200px;
  margin-right: -200px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.option {
  position: absolute;
  width: 100px;
  height: 60px;
  text-align: center;
  top: calc(50% - 30px);
  left: calc(50% - 50px);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgb(255, 255, 255); /* Đặt màu chữ thành đen */
  line-height: 20px;
  z-index: 1;
}

.menu a .option span {
  font-size: 35px;
}

.menu a:hover .sector {
  /* background: rgb(202, 37, 166); */
  background: #ffa38c;
}

.menu a:hover .option {
  color: black;
}

.menu::before {
  position: absolute;
  content: "menu";
  font-family: "Material Icons";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 1;
}
