.hypixel-infobox {
  width: 280px;
  float: right;
  margin: 0 0 1em 1.5em;

  background: #111;
  border: 2px solid #2b4cff;
  box-shadow: inset 0 0 0 2px #0a1c3a;
  padding: 12px;

  color: #fff;
  font-family: Minecraft, Arial, sans-serif;
}

/* Title */
.hypixel-infobox-title {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Image */
.hypixel-infobox-image {
  text-align: center;
  margin-bottom: 10px;
}

/* Row layout (Category — Value) */
.hypixel-infobox-row {
  display: flex;
  align-items: center;
  justify-content: space-between;

  font-size: 14px;
  padding-top: 6px;
  border-top: 1px solid #333;

  white-space: nowrap;
}

/* Left label */
.hypixel-infobox-row .label {
  color: #aaa;
  flex-shrink: 0;
}

/* Right value */
.hypixel-infobox-row .value {
  text-align: right;
}

.hypixel-infobox-row .value a {
  color: #4da6ff;
  text-decoration: none;
}

/* Mobile behavior (stacked like Hypixel) */
@media (max-width: 768px) {
  .hypixel-infobox {
    float: none;
    margin: 0 auto 1em auto;
    width: 100%;
    max-width: 320px;
  }
}