
.desktop {
  width: min(1100px, 94vw);
  margin: 0 auto;
  padding: 16px;

  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 260px; /* left / middle / right */
  gap: 12px;
  align-items: start;
}

.header {
    font-family: "JetBrains Mono";
    text-align: center;
}

.left, .middle, .right {
  min-width: 0;
}

@media (max-width: 900px) {
  .desktop {
    grid-template-columns: 1fr;
  }
}

.responsive-gif {
  width: 100%;
  height: auto;
  display: block;
  border: 5px solid black;
  border-radius: 5%;
  
}

.gif-window{
  padding: 12px;
  border-radius: 10px;
  border: 5px solid black;
  margin-bottom: 10px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.window {
  padding: 12px;
  border-radius: 10px;
  border: 5px solid black;
  margin-bottom: 10px;
}

.window .title {
  border: 2px solid var(--lilith-border-color);
  background: var(--lilith-inactive-color);
  color: var(--lilith-window-text-color);
  font-family: "JetBrains Mono";
  image-rendering: pixelated;
  font-weight: bold;
  font-size: 17px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.subtitle {
  color: var(--lilith-window-text-color);
  font-family: "JetBrains Mono";
  image-rendering: pixelated;
  font-size: 17px;
  font-weight: bold;
}

.window .content {
  border: 2px solid var(--lilith-border-color);
  background: var(--lilith-window-text-back);
  color: var(--lilith-window-text-color);
  font-family: "JetBrains Mono";
  image-rendering: pixelated;
  font-size: 17px;
  margin-top: 4px;
  padding: 4px;
  }

ul.sword-bullets {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

ul.sword-bullets li {
  position: relative;
  padding-left: 40px;   /* room for icon */
  line-height: 1.6;
}

ul.sword-bullets li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  top: 0.8em;
  width: 22px;          /* try 18, 20, 22 */
  height: 20px;

  background: url("../assets/gutsv2.png") no-repeat center;
  background-size: 20px 20px;

  image-rendering: pixelated;
}




