web-nazo-game-header,
web-nazo-game-controls {
  display: block;
}

web-nazo-game-header .game-head {
  flex: none;
  position: relative;
  z-index: 2;
  display: block;
  text-align: left;
}

web-nazo-game-header .game-head h1 {
  margin: 0;
  color: var(--ink, #edf3dd);
  font-size: clamp(25px, 4vw, 42px);
  line-height: 1;
  letter-spacing: -.045em;
}

web-nazo-game-controls .game-actions {
  flex: none;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

web-nazo-game-controls .primary-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

web-nazo-game-controls .primary-actions > .ghost-button {
  flex: 1 1 104px;
  min-width: 0;
  max-width: 124px;
  justify-content: center;
  padding-inline: 12px;
}

web-nazo-game-controls .ghost-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  color: #b1bba1;
  background: rgba(10, 15, 6, .72);
  font-size: 12px;
  letter-spacing: .05em;
  text-decoration: none;
  cursor: pointer;
}

web-nazo-game-controls .ghost-button:hover {
  border-color: rgba(201, 246, 90, .48);
  color: var(--accent, var(--green, #c9f65a));
}

web-nazo-game-controls .ghost-button:disabled {
  cursor: not-allowed;
  opacity: .34;
  border-color: rgba(255, 255, 255, .08);
}

web-nazo-game-controls .icon-button {
  min-height: 42px;
  font-size: 12px;
}

web-nazo-game-controls .icon-button svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

web-nazo-game-controls .icon-button kbd {
  padding: 2px 5px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 5px;
  color: #849073;
  background: rgba(255, 255, 255, .03);
  font: 650 8px/1 ui-monospace, monospace;
}

web-nazo-game-controls .site-link {
  justify-self: start;
  font: 700 12px/1 ui-monospace, monospace;
  letter-spacing: .1em;
}

web-nazo-game-controls .info-button {
  justify-self: end;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  color: #aeb99d;
  font: 750 13px/1 ui-monospace, monospace;
}

@media (max-width: 600px) {
  web-nazo-game-header .game-head h1 {
    font-size: clamp(23px, 7vw, 30px);
  }

  web-nazo-game-controls .game-actions {
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    gap: 5px;
    margin-top: 4px;
  }

  web-nazo-game-controls .primary-actions {
    min-width: 0;
    gap: 5px;
  }

  web-nazo-game-controls .primary-actions > .ghost-button {
    flex-basis: 0;
    max-width: 116px;
    min-height: 44px;
    padding-inline: 6px;
  }

  web-nazo-game-controls .game-actions.is-result-actions .primary-actions {
    width: min(237px, calc(100vw - 118px));
  }

  web-nazo-game-controls .game-actions.is-result-actions {
    margin-bottom: -5px;
  }

  web-nazo-game-controls .game-actions.is-result-actions .primary-actions > .ghost-button {
    flex: 0 0 calc(50% - 2.5px);
    max-width: 116px;
    padding-inline: 6px;
    gap: 7px;
    font-size: 12px;
  }

  web-nazo-game-controls .site-link {
    width: 54px;
    min-height: 44px;
    justify-content: center;
    padding: 0;
    font-size: 12px;
  }

  web-nazo-game-controls .game-actions kbd {
    display: none;
  }

  web-nazo-game-controls .info-button {
    width: 42px;
    height: 42px;
  }
}
