@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
html {
  scroll-behavior: smooth;
}
body {
    background: #000000;
    color: #eceef5;
    font-family: "Manrope", sans-serif;
    -webkit-user-select: none;
    user-select: none;
}
nav {
  width: 100%;
  position: fixed;
  transition: all 0.4s ease-out;
  z-index: 2;
  background: #000103be;
}
.hero {
  height: 100dvh;
  inset: 0;
  position: relative;
  overflow: hidden;
  font-family: 'Courier New', Courier, monospace;
}
.ascii-container {
  position: absolute;
  top: 40%;
  left: 50%;
  color: #acafbc;
  transform: translate(-50%, -50%);
  white-space: pre;
  font-size: 1.2rem;
  line-height: 1;
}
@media (max-width: 1200px) {
  .ascii-container {
    font-size: 1rem;
  }
}
@media (max-width: 800px) {
  .ascii-container {
    font-size: 0.8rem;
  }
}
@media (max-width: 500px) {
  .ascii-container {
    font-size: 0.5rem;
  }
}
.scrolled {
  background: #000103ab;
}
.glass {
    background: #ffffff1a;
    backdrop-filter: blur(10px);
    border: 1px solid #ffffff33;
    border-radius: 10px;
    box-shadow: 0 4px 20px #00000080;
}
.hover-glow:hover {
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    transition: box-shadow 0.3s ease-in-out;
}
.tile-link {
    color: #ccc;
    border: solid 0.5px #292929;
    background: #1d1d1d;
    transition: 0.2s;
}
.tile-link:hover {
    border-color: #dfe0e7;
    background: #1d1d1d;
    transition: 0.2s;
    transform: scale(1.025);
    z-index: 10;
}
.in-dev {
    color: #ffffff4a !important;
    border: solid 0.5px #e3e4e52e !important;
}
.in-dev:hover {
    transform: scale(1) !important;
    background: #1d1d1d !important;
}
.terminal {
    background-color: #060606;
    border-radius: 5px;
    box-shadow: 0 0 10px #00000080;
    width: 100%;
}
.terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1e1e1e;
    padding: 5px 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.terminal-title {
    color: #fff;
}

.terminal-buttons .button {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 3px;
    margin-left: 2px;
}

.terminal-buttons .exit {
    background-color: #ff5f56;
}

.terminal-buttons .minimize {
    background-color: #676c71;
}

.terminal-buttons .maximize {
    background-color: #676c71;
}

.terminal-body {
    padding: 10px;
    overflow-y: auto;
    max-height: 400px;
}

pre {
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
}


.cl-create span {
    color:#000000;
    transition:0.25s;
}
.cl-create:hover span {
    color:#ebedf2;
    transition:0.25s;
}


.chat {
    border: 0.5px solid #23272a;
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
    min-height: 320px;
    max-height: 320px;
    margin: auto;
    overflow: hidden;
    padding: 5px;
    background: #313338;
    color: #fff;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}


.chat-header {
    background: #2b2d31;
    padding: 10px;
    margin: -5px -5px 0px -5px;
    font-size: 0.785rem;
    font-weight: bold;
    color: #fff;
}

.chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 5px;
    margin-left: -10px;
    margin-bottom: -5px;
    background: #313338;
}
.chat-body img {
    -webkit-user-drag: none;
}

.chat-body::-webkit-scrollbar {
    width: 5px;
}
.chat-body::-webkit-scrollbar-thumb {
    background: #1a1b1e;
    border-radius: 6px;
}
.chat-body::-webkit-scrollbar-track {
    background-color: #2b2d31;
    border-radius: 6px;
    margin-block: 5px;
}

.message {
    font-size: 0.625rem;
    padding: 10px 10px;
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
}

.message:hover {
    background: #2e3035;
}