:root {
  --bg: #0a0a0a;
  --font: 'Minecraft', sans-serif;
  --orange: #FFA500;
  --yellow: #FFD700;
  --gray: #c0c0c0;
  --white: #fff;
  --border1: rgba(255,255,255,0.1);
  --border2: rgba(255,255,255,0.2);
  --border3: rgba(255,255,255,0.3);
  --black: #181818;
  --shadow: 0 6px 32px 0 rgba(0,0,0,0.14);
  --radius: 0;
  --trans: all 0.4s cubic-bezier(.86,0,.07,1);
  --trans2: all 0.3s cubic-bezier(.86,0,.07,1);
  --trans3: color 0.3s cubic-bezier(.86,0,.07,1);
  --trans4: background 0.2s;
  --trans5: box-shadow 0.2s;
  --trans6: width 0.35s cubic-bezier(.86,0,.07,1);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
::selection {
  background: var(--orange);
  color: var(--black);
}
::-moz-selection {
  background: var(--orange);
  color: var(--black);
}
html, body {
  height: 100%;
  width: 100%;
  font-family: var(--font);
}
body {
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  font-smooth: never;
  -webkit-font-smoothing: none;
  background: var(--bg);
}
.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url('/images/bg.png') center/cover;
  filter: blur(4px);
  transform: scale(1.03);
}
.main-container {
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  max-width: 1800px;
  max-height: 1000px;
  background: rgba(10,10,10,0.7);
  border: 2px solid var(--border2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: var(--trans);
}
.navbar {
  padding: 30px 40px 20px 40px;
  border-bottom: 1px solid var(--border1);
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  min-height: 64px;
  transition: var(--trans);
}
.logo {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--white);
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  gap: 15px;
}
.nav-links-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.nav-links a {
  color: var(--gray);
  text-decoration: none;
  margin-left: 25px;
  transition: color 0.25s cubic-bezier(.86,0,.07,1), transform 0.25s cubic-bezier(.86,0,.07,1);
  padding-bottom: 5px;
  display: flex;
  align-items: center;
  height: 100%;
  transform-origin: center;
}
.nav-links a:hover {
  color: var(--white);
  transform: scale(1.1);
  transition: color 0.25s cubic-bezier(.86,0,.07,1), transform 0.25s cubic-bezier(.86,0,.07,1);
}
.nav-links a.active {
  color: var(--white);
  font-weight: bold;
}
.nav-toggle {
  display: none;
}
.loader {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 60px;
  min-height: 60px;
  background: none;
  z-index: 100;
  margin: 20px auto;
}
.loader .square {
  width: 18px;
  height: 18px;
  background: #888;
  margin: 0 7px;
  display: inline-block;
  border-radius: 0;
  animation: loader-square-bounce 0.9s infinite alternate cubic-bezier(.86,0,.07,1), loader-square-color 1.2s infinite alternate;
}
.loader .square:nth-child(2) {
  animation-delay: 0.2s, 0.2s;
}
.loader .square:nth-child(3) {
  animation-delay: 0.4s, 0.4s;
}
@keyframes loader-square-bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-16px);
  }
}
@keyframes loader-square-color {
  0%, 100% {
    background: #888;
  }
  50% {
    background: var(--white);
  }
}
.cta-button {
  background: transparent;
  color: var(--orange);
  padding: 15px 30px;
  font-size: 1.2em;
  font-family: var(--font);
  text-decoration: none;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--trans2);
  display: inline-block;
}
.cta-button:hover {
  background: var(--orange);
  color: var(--black);
  transform: scale(1.05);
}
.content-outer, .content-wrapper {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.content-wrapper {
  overflow-y: auto;
  overflow-x: hidden;
  color: #e0e0e0;
  position: relative;
}
.content-inner {
  padding: 0 40px;
}
.site-footer {
  padding: 20px 40px;
  text-align: center;
  font-size: .9em;
  color: #888;
  border-top: 1px solid var(--border1);
  flex-shrink: 0;
  background: transparent;
  z-index: 100;
  transition: var(--trans);
}
main.is-hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1 1 auto;
  min-height: 0;
  overflow: visible;
}
.is-hero h1 {
  font-size: 2.2em;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
  transition: color 0.4s cubic-bezier(.86,0,.07,1);
}
.is-hero .highlight {
  background: linear-gradient(45deg, var(--orange), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.is-hero p {
  font-size: 1.1em;
  max-width: 600px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
  color: var(--gray);
}
main.is-page {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}
.page-title {
  text-align: center;
  margin-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
.page-title h1 {
  font-size: 2.0em;
  color: var(--white);
}
.page-title p {
  font-size: 1.1em;
  color: var(--gray);
  margin-top: 5px;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
  align-items: stretch;
}
.project-grid .loader {
  grid-column: 1/-1;
  position: static;
  transform: none;
  margin: auto;
}
.project-card {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border1);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(.86,0,.07,1), box-shadow 0.4s cubic-bezier(.86,0,.07,1), background 0.4s cubic-bezier(.86,0,.07,1), opacity 0.5s cubic-bezier(.86,0,.07,1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  height: 100%;
}
.project-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.project-card-image-wrapper {
  width: 100%;
  height: 200px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--border1);
  transition: background 0.4s cubic-bezier(.86,0,.07,1);
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.project-info h3 {
  font-size: 1.4em;
  color: var(--white);
  margin-bottom: 10px;
}
.project-description {
  line-height: 1.6;
  flex-grow: 1;
  color: var(--gray);
  margin-bottom: 15px;
}
.project-footer {
  margin-top: auto;
}
.project-tags {
  margin-bottom: 20px;
}
.tag {
  display: inline-block;
  background: rgba(255,165,0,0.15);
  color: var(--orange);
  padding: 5px 12px;
  border-radius: var(--radius);
  font-size: .85em;
  font-weight: bold;
  margin-right: 8px;
  margin-bottom: 8px;
  border: 1px solid rgba(255,165,0,0.3);
}
.project-card .cta-button {
  padding: 12px 25px;
  font-size: 1em;
}
.wiki-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
}
.wiki-layout .loader {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 101;
}
.wiki-sidebar, .wiki-content {
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(.86,0,.07,1);
}
.wiki-layout.loaded .wiki-sidebar, .wiki-layout.loaded .wiki-content {
  opacity: 1;
}
.wiki-sidebar {
  border-right: 1px solid var(--border1);
  padding-right: 30px;
  transition: border-color 0.4s cubic-bezier(.86,0,.07,1), opacity 0.4s cubic-bezier(.86,0,.07,1);
  position: relative;
}
.wiki-sidebar h4 {
  font-size: 1.2em;
  color: var(--white);
  margin: 24px 0 12px 0;
  font-weight: bold;
}
.wiki-sidebar h4:first-child {
  margin-top: 0;
}
.wiki-sidebar ul {
  list-style-type: none;
  padding-left: 32px;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.wiki-sidebar ul:last-child {
  margin-bottom: 0;
}
.wiki-sidebar li {
  width: 100%;
  display: block;
  justify-content: flex-start;
  margin-bottom: 0;
}
.wiki-sidebar li a {
  color: var(--gray);
  text-decoration: none;
  display: block;
  padding: 6px 0;
  transition: var(--trans3);
  font-size: 1em;
  text-align: left;
}
.wiki-sidebar li a:hover {
  color: var(--white);
}
.wiki-sidebar li a.wiki-active {
  color: var(--white);
  font-weight: bold;
}
.wiki-content {
  position: relative;
  min-width: 0;
  overflow-x: hidden;
}
.wiki-content img, .wiki-content video, .wiki-content iframe {
  max-width: 100%;
  height: auto;
  border: 2px solid var(--border3);
  transition: border-color 0.3s cubic-bezier(.86,0,.07,1);
}
.wiki-content img:hover, .wiki-content video:hover, .wiki-content iframe:hover {
  border-color: rgba(255,255,255,0.5);
}
.wiki-content iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}
.wiki-content h2 {
  font-size: 1.6em;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border2);
  padding-top: 15px !important;
}
.wiki-content h2:first-child {
  padding-top: 15px !important;
}
.wiki-content p, .wiki-content li {
  line-height: 1.7;
  margin-bottom: 15px;
}
.wiki-content ul, .wiki-content ol {
  padding-left: 20px;
  margin-bottom: 15px;
}
.wiki-content ul {
  list-style-type: disc;
}
.wiki-content ol {
  list-style-type: decimal;
}
.wiki-content li {
  margin-bottom: 8px;
}
.wiki-content code {
  background: rgba(0,0,0,0.5);
  padding: 2px 6px;
  color: var(--white);
  font-family: var(--font), monospace !important;
  font-size: 1em;
}
.wiki-content pre {
  background: rgba(0,0,0,0.3);
  padding: 15px;
  padding-right: 15px;
  margin: 15px 0;
  border: 2px solid var(--border1);
  position: relative;
  border-radius: var(--radius);
  font-family: var(--font), monospace !important;
  white-space: nowrap;
  max-width: 100%;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  display: block;
  box-sizing: border-box;
  cursor: pointer;
  transition: border-color 0.3s cubic-bezier(.86,0,.07,1), background 0.3s cubic-bezier(.86,0,.07,1);
}

.wiki-content pre:hover {
  border-color: var(--border3);
}
.wiki-content pre code {
  background: none;
  padding: 0;
  color: #e0e0e0;
  font-family: var(--font), monospace !important;
  font-size: 1em;
  white-space: pre;
  display: inline-block;
  min-width: fit-content;
}
.wiki-content a {
  color: var(--orange);
  text-decoration: none;
  transition: var(--trans3);
}
.wiki-content a:hover {
  color: var(--yellow);
}
.wiki-content blockquote {
  margin: 20px 0;
  padding: 15px 20px;
  border-left: 4px solid var(--orange);
  background: rgba(255,165,0,0.1);
}
.wiki-content blockquote.info {
  border-left-color: #5EDCFF;
  background: rgba(94,220,255,0.1);
}
.wiki-content blockquote.warning {
  border-left-color: var(--yellow);
  background: rgba(255,215,0,0.1);
}
.wiki-content blockquote.error {
  border-left-color: #FF6B6B;
  background: rgba(255,107,107,0.1);
}
.wiki-content blockquote p {
  margin: 0;
}
.wiki-content table {
  border-collapse: collapse;
  margin: 20px 0;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border2);
  table-layout: auto;
  display: table;
  width: auto;
  max-width: 100%;
}
.about-part-inner table {
  width: auto;
  max-width: 100%;
}
.wiki-content .table-wrapper {
  overflow-x: auto;
  margin: 20px 0;
  border: 1px solid var(--border2);
  background: rgba(0,0,0,0.3);
}
.about-part-inner .table-wrapper {
  overflow-x: auto;
  margin: 20px 0;
  border: 1px solid var(--border2);
  background: rgba(0,0,0,0.3);
  display: inline-block;
  max-width: 100%;
}
.wiki-content .table-wrapper table {
  margin: 0;
  border: none;
  background: none;
  min-width: 100%;
}
.about-part-inner .table-wrapper table {
  margin: 0;
  border: none;
  background: none;
  width: auto;
  min-width: auto;
}
.wiki-content th, .wiki-content td {
  padding: 8px 10px;
  text-align: left;
  border-bottom: 1px solid var(--border1);
  border-right: 1px solid var(--border1);
  white-space: nowrap;
  word-break: break-word;
  vertical-align: top;
}
.wiki-content th:last-child, .wiki-content td:last-child {
  border-right: none;
}
.wiki-content th {
  background: rgba(255,165,0,0.2);
  color: var(--white);
  font-weight: bold;
  border-bottom: 2px solid rgba(255,165,0,0.5);
  position: static;
}
.wiki-content tr:last-child td {
  border-bottom: none;
}
.wiki-content tr:hover {
  background: rgba(255,255,255,0.05);
}
.wiki-content video {
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  border-radius: var(--radius) !important;
  font-family: var(--font), monospace !important;
  image-rendering: pixelated;
  background: var(--black);
}
.wiki-content video::-webkit-media-controls-panel {
  background: rgba(10,10,10,0.9);
  border-radius: var(--radius) !important;
  font-family: var(--font), monospace !important;
}
.wiki-content video::-webkit-media-controls-play-button, .wiki-content video::-webkit-media-controls-mute-button, .wiki-content video::-webkit-media-controls-fullscreen-button, .wiki-content video::-webkit-media-controls-volume-slider, .wiki-content video::-webkit-media-controls-volume-slider-container {
  background: rgba(255,165,0,0.8) !important;
  filter: contrast(1.2);
  border-radius: var(--radius) !important;
}
.wiki-content video::-webkit-media-controls-timeline {
  background: rgba(255,165,0,0.3);
  border-radius: var(--radius) !important;
}
.wiki-content video::-webkit-media-controls-current-time-display, .wiki-content video::-webkit-media-controls-time-remaining-display {
  color: var(--orange);
  font-family: var(--font), monospace !important;
  font-size: 1em;
}
.wiki-content video::-webkit-media-controls-volume-slider {
  border-radius: var(--radius) !important;
}
.wiki-content video {
  outline: none;
}
.wiki-content .codeblock-copy-btn {
  position: absolute;
  top: -35px;
  right: 0;
  background: var(--orange);
  color: var(--black);
  border: none;
  font-family: var(--font), monospace;
  font-size: 0.9em;
  padding: 4px 8px;
  cursor: pointer;
  border-radius: var(--radius);
  z-index: 10;
  transition: var(--trans4);
  white-space: nowrap;
  display: inline-block;
}
.wiki-content .codeblock-copy-btn:hover {
  background: var(--yellow);
}
.wiki-content .custom-video-player {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--black);
  border: 2px solid var(--border1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  font-family: var(--font), monospace !important;
  margin-bottom: 24px;
}
.wiki-content .custom-video-player video {
  width: 100%;
  display: block;
  background: var(--black);
  border-radius: var(--radius) !important;
  outline: none;
}
.wiki-content .custom-video-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(10,10,10,0.95);
  border-top: 2px solid var(--border1);
  padding: 10px 16px;
  position: relative;
  transition: var(--trans4), var(--trans5);
}
.wiki-content .custom-video-controls:hover {
  background: rgba(30,30,30,1);
  box-shadow: 0 2px 12px 0 rgba(255,165,0,0.08);
}
.wiki-content .custom-video-btn img {
  image-rendering: pixelated;
  width: 24px;
  height: 24px;
  display: block;
  border: none !important;
  filter: brightness(0) invert(1);
}
.wiki-content .custom-video-btn {
  background: none;
  color: var(--white);
  border: none;
  font-family: var(--font), monospace;
  font-size: 1.2em;
  padding: 4px 8px;
  cursor: pointer;
  border-radius: var(--radius);
  margin-right: 0;
  transition: var(--trans4);
  display: flex;
  align-items: center;
  filter: none;
}
.wiki-content .custom-video-btn:focus {
  outline: 2px solid var(--white);
}
.wiki-content .custom-video-progress {
  flex: 1;
  margin: 0 10px;
  height: 10px;
  background: rgba(255,255,255,0.18);
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  transition: var(--trans4);
  display: flex;
  align-items: center;
}
.wiki-content .custom-video-progress-bar {
  height: 100%;
  background: var(--white);
  width: 0%;
  border-radius: var(--radius);
  transition: var(--trans6);
}
.custom-volume-wrapper {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
.custom-volume-slider {
  display: block;
  position: absolute;
  left: 50%;
  bottom: 110%;
  transform: translateX(-50%) rotate(180deg);
  width: 18px;
  height: 80px;
  background: #222;
  border: none;
  border-radius: var(--radius);
  margin-left: 0;
  z-index: 10;
  appearance: none;
  outline: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 2px 8px 0 rgba(255,255,255,0.08);
  writing-mode: vertical-lr;
}
.custom-volume-wrapper:hover .custom-volume-slider, .custom-volume-slider.show {
  opacity: 1;
  pointer-events: auto;
}
.custom-volume-slider::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  background: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  image-rendering: pixelated;
  transition: var(--trans4), border 0.2s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.10);
}
.custom-volume-slider:active::-webkit-slider-thumb {
  background: var(--white);
  border: none;
}
.custom-volume-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  image-rendering: pixelated;
  transition: var(--trans4), border 0.2s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.10);
}
.custom-volume-slider:active::-moz-range-thumb {
  background: var(--white);
  border: none;
}
.custom-volume-slider::-ms-thumb {
  width: 16px;
  height: 16px;
  background: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  image-rendering: pixelated;
  transition: var(--trans4), border 0.2s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.10);
}
.custom-volume-slider:active::-ms-thumb {
  background: var(--white);
  border: none;
}
.custom-volume-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 80px;
  background: #444;
  border-radius: var(--radius);
  transition: var(--trans4);
  border: none;
}
.custom-volume-slider::-ms-fill-lower {
  background: #444;
  border: none;
}
.custom-volume-slider::-ms-fill-upper {
  background: #444;
  border: none;
}
.custom-volume-slider:focus {
  box-shadow: none;
}
.fullscreen-exit-btn {
  display: none;
}
.wiki-content .custom-video-controls.fullscreen-active {
  background: rgba(10,10,10,0.98);
  border-top: 2px solid var(--white);
}
.content-wrapper::-webkit-scrollbar {
  display: none;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}
.fade-in {
  animation: fadeIn 0.4s cubic-bezier(.86,0,.07,1) forwards;
}
.fade-out {
  animation: fadeOut 0.3s cubic-bezier(.86,0,.07,1) forwards;
}
.about-parts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-left: 40px;
  padding-right: 40px;
  width: 100%;
  box-sizing: border-box;
}
.about-part {
  border-left: 4px solid var(--about-part-color, var(--orange));
  background: color-mix(in srgb, var(--about-part-color, var(--orange)) 7%, transparent);
  margin-bottom: 0;
  width: 100%;
  max-width: 100%;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
  border-radius: var(--radius);
  transition: var(--trans5), var(--trans4);
  opacity: 0;
  transform: translateY(20px);
  animation-fill-mode: forwards;
}

.about-part.visible {
  animation: aboutCardFadeIn 0.6s cubic-bezier(.86,0,.07,1) forwards;
}

@keyframes aboutCardFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-part:hover {
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.13);
  background: color-mix(in srgb, var(--about-part-color, var(--orange)) 15%, var(--black) 85%);
}
.about-part-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 32px 0 24px;
}
.about-part-title-text {
  font-family: var(--font), monospace;
  font-size: 1.5em;
  color: var(--white);
  margin: 0;
}
.about-part-dropdown-icon {
  width: 32px;
  height: 32px;
  image-rendering: pixelated;
  transition: transform 0.4s cubic-bezier(.86,0,.07,1);
}
.about-part-dropdown-icon.open {
  transform: rotate(180deg);
}
.about-part-content {
  max-height: 0;
  overflow: hidden;
  background: none;
  padding: 0 32px 0 24px;
  transition: max-height 0.4s cubic-bezier(.86,0,.07,1), padding-bottom 0.4s cubic-bezier(.86,0,.07,1);
}
.about-part-content.open {
  max-height: 10000px;
  overflow-x: hidden;
  overflow-y: visible;
}
.about-part-inner {
  color: #e0e0e0;
  font-size: 1.1em;
  margin-top: 12px;
  overflow-x: hidden;
}
.about-part-separator {
  border: none;
  border-top: 3px solid rgba(255,255,255,0.18);
  width: 100%;
  background: none;
  border-radius: var(--radius);
  display: block;
}
@media (max-width:900px) {
  .main-container {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    border: none;
    border-radius: var(--radius);
    padding: 0;
  }
  .navbar {
    padding: 18px 16px 14px 16px;
    min-height: 56px;
    position: static !important;
  }
  .logo {
    font-size: 1.2em;
  }
  .nav-links {
    flex: 1;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10,10,10,0.97);
    display: flex;
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: var(--trans2);
  }
  .nav-links-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: auto 0;
    align-items: center;
    justify-content: center;
  }
  .nav-links a {
    margin: 0;
    font-size: 2em;
    width: auto;
    padding: 0;
    border: none !important;
    color: var(--white);
    text-align: center;
    transition: color 0.25s cubic-bezier(.86,0,.07,1), transform 0.25s cubic-bezier(.86,0,.07,1);
    font-weight: normal;
    display: block;
    position: relative;
    align-items: center;
    justify-content: center;
    height: auto;
  }
  .nav-links a:last-child {
    margin-bottom: 0;
  }
  body.nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    position: relative;
  }
  .nav-toggle img {
    width: 24px;
    height: 24px;
    transition: opacity 0.2s, transform 0.3s cubic-bezier(.86,0,.07,1);
    display: block;
  }
  .nav-toggle .icon-hamburger, .nav-toggle .icon-close {
    width: 24px;
    height: 24px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
  }
  .nav-toggle .icon-hamburger {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1) rotate(0deg);
  }
  .nav-toggle .icon-close {
    opacity: 0;
    transform: translate(-50%,-50%) scale(0.7) rotate(-30deg);
  }
  body.nav-open .nav-toggle .icon-hamburger {
    opacity: 0;
    transform: translate(-50%,-50%) scale(0.7) rotate(30deg);
  }
  body.nav-open .nav-toggle .icon-close {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1) rotate(0deg);
  }
  .nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: var(--trans2);
  }
  body.nav-open .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }
  .content-outer, .content-wrapper, main.is-hero, main.is-page {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .content-wrapper {
    padding: 0;
  }
  .site-footer {
    padding: 14px 10px;
    font-size: .85em;
    position: static !important;
  }
  .project-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .page-title {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 24px;
  }
  .about-parts {
    padding-left: 10px;
    padding-right: 10px;
    gap: 16px;
  }
  .about-part-header {
    min-height: 48px;
    padding: 0 16px 0 10px;
  }
  .about-part-content {
    padding: 0 16px 0 10px;
    overflow-x: hidden;
  }
  .about-part-inner {
    overflow-x: hidden;
  }
  .wiki-layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden;
  }
  .wiki-sidebar {
    border-right: none;
    padding-right: 0;
    padding-left: 0;
    padding-top: 10px;
    padding-bottom: 16px;
    max-width: calc(100vw - 20px);
    margin-left: 10px;
    margin-right: 10px;
    position: relative;
  }
  .wiki-sidebar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 1px;
    background: var(--border1);
  }
  .wiki-sidebar h4, .wiki-sidebar ul {
    padding-left: 10px;
    padding-right: 10px;
  }
  .wiki-sidebar ul {
    padding-left: 26px;
  }
  .wiki-content {
    padding-left: 10px;
    padding-right: 10px;
    overflow-x: auto;
  }
  .wiki-content .table-wrapper {
    overflow-x: auto;
    margin: 15px 0;
    max-width: calc(100vw - 20px);
  }
  .about-part-inner .table-wrapper {
    overflow-x: auto;
    margin: 15px 0;
    max-width: calc(100vw - 32px);
  }
  .wiki-content pre {
    max-width: calc(100vw - 20px);
    overflow-x: auto;
  }
  .about-part-inner pre {
    max-width: calc(100vw - 32px);
    overflow-x: auto;
  }
}