@font-face {
  font-family: "PixelOperator";
  src: url("../fonts/PixelOperator.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cubic_11";
  src: url("../fonts/Cubic_11.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #fff0fa;
  --panel: #fbd9e4;
  --border-dark: #a36270;
  --border-light: #ffffff;
  --text: #000000;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #000000;
  color: var(--text);
  font-family: "PixelOperator", "Cubic_11", "Courier New", monospace;
  -webkit-font-smoothing: none;
  image-rendering: pixelated;
  overflow: hidden;
}

.explorer_navigator,
.explorer_navigator * {
  box-sizing: content-box;
}

.explorer_navigator {
  height: 22px;
  margin: 0;
  padding: 3px 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #fbd9e4;
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  border-bottom: 1px solid #a36270;
  border-right: 1px solid #a36270;
  font-size: 13px;
  font-family: "PixelOperator", "Courier New", monospace;
  flex-shrink: 0;
}

.explorer_navigator .back_button {
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff0fa;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #a36270;
  border-right: 2px solid #a36270;
  cursor: pointer;
  font-weight: bold;
  font-size: 12px;
  user-select: none;
}

.explorer_navigator .back_button:active {
  border-top: 2px solid #a36270;
  border-left: 2px solid #a36270;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  background-color: #fbd9e4;
}

.explorer_navigator .address_text {
  color: #000000;
  font-size: 16px;
  white-space: nowrap;
}

.explorer_navigator .nav_search_bar {
  flex-grow: 1;
  height: 18px;
  background-color: #fff0fa;
  border-top: 1px solid #a36270;
  border-left: 1px solid #a36270;
  display: flex;
  align-items: center;
  cursor: default;
  overflow: hidden;
  min-width: 0;
}

.explorer_navigator .search_bar_text {
  padding: 4px;
  font-size: 16px;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ting_container {
  flex: 1;
  background-color: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px;
  overflow-y: auto;
}

.ting_left img {
  height: 120px;
  width: auto;
  display: block;
}

.ting_right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ting_title {
  margin: 0;
  font-size: 28px;
  color: #fbd9e4;
  text-shadow: 2px 2px #a36270;
  letter-spacing: 2px;
}

.ting_desc {
  font-size: 15px;
  line-height: 1.6;
  color: #eeeeee;
}