.terminal-syntax-body {
  background-color: black;
  position: relative;
  margin: 0;
  overflow: hidden;
  padding: 1rem;
  color: #ff961f;
  font: 1rem monospace;
  text-shadow: 0 0 5px #e07800;
  border-radius: 15px;
  background: none;
}

.terminal-syntax-body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.15) 1px,
    transparent 1px,
    transparent 2px);
  pointer-events: none;
  z-index: 10;
}

::selection {
  background: #753f00;
  text-shadow: none;
}

.terminal-syntax-body pre {
  margin: 0;
  position: relative;
}

.terminal-syntax-body code[class*="language-"] {
  white-space: pre-wrap;
  text-shadow: 0 0 2px #b4b4b4;
}

.terminal-syntax-body .line-numbers-rows {
  font-size: 1rem;
  position: absolute;
  pointer-events: none;
  top: 0;
  font-size: 100%;
  left: 2em;
}

.terminal-syntax-body .token.operator, 
.terminal-syntax-body .token.punctuation, 
.terminal-syntax-body .token.keyword {
    background: none;
}

.terminal-syntax-body,
.terminal-syntax-body pre,
.terminal-syntax-body code {
  background-color: black;
  background-image: radial-gradient(#1010105c, black 120%);
}

.terminal-syntax-body code {
  text-shadow: 0 0 5px #d1d1d1;
}

.button-style {
  background: none;
  border: none;
  color: #ff961f;
  text-shadow: 0 0 5px #e07800;
  cursor: pointer;
  outline: none;
  border-radius: 2px;
  transition: transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
}

.button-style:hover {
  text-shadow: 0 0 7px #e07800;
}

.button-style:active,
.button-style.active {
    transform: scale(0.95);
    box-shadow: inset 0 2px 4px #753f00;
}

.terminal-syntax-body .line-numbers-rows > span {
  text-shadow: 0 0 5px #999999;
}

.terminal-syntax-body pre[class*="language-"] {
  font-size: 1rem;
  border: none;
  box-shadow: none;
  padding-left: 1em;
  border-radius: 0;
}

.terminal-syntax-body :not(pre) > code[class*="language-"],
.terminal-syntax-body pre[class*="language-"] {
    font-size: 1rem;
    background: transparent;
}

pre code {
  display: inline-block;
  width: 50vw;
}

.terminal-syntax-body.no-radial-no-scanline::after {
  background: none;
}

@media screen and (max-aspect-ratio: 16/11) {
  .terminal-syntax-body {
    padding: 0.5rem;
    border-radius: 10px;
  }

  pre[class*="language-"].line-numbers {
    position: relative !important;
    padding-left: 2.8em !important;
    font-size: 0.8rem !important;
  }
}