/*=========== Power =====*/
.power {
  background-color: var(--bg-power-outer);
  height: min(90%, 20vw);
  aspect-ratio: 1;
  border-radius: 50%;
  justify-self: center;
  align-self: center;
  font-size: 2vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.power-btn {
  height: 80%;
  width: 80%;
  background-color: var(--bg-power-btn);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}

.power-icon {
  width: 60%;
  height: 60%;
  border: 0.8vw solid var(--icon-power);
  border-radius: 50%;
  border-top-color: transparent;
  position: relative;
  display: inline-block;
}

.power-icon::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 0.8vw;
  height: 50%;
  background-color: var(--icon-power);
  border-radius: 30%;
}

/*=========== Power Status =====*/
.pwr-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3vw;
}

.pwr-label {
  font-family: var(--comic-font);
  font-size: clamp(0.8rem, 1.5vw, 1.5vw);
  color: var(--text-main);
  -webkit-text-stroke: var(--text-stroke-strong) var(--text-stroke-color);
  paint-order: stroke fill;
  text-shadow: var(--text-shadow-strong);
  letter-spacing: 1px;
  white-space: nowrap;
}

.pwr-led {
  width: clamp(0.6rem, 1.2vw, 1.2vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--on);
  box-shadow: 0 0 6px var(--on), 0 0 14px var(--on);
  border: var(--outline-width) solid var(--outline-color);
  flex-shrink: 0;
}
