@font-face {
    font-family: JetBrainsMono;
    src: url(/fonts/webfonts/JetBrainsMono-Light.woff2) format("woff2"),url(/fonts/ttf/JetBrainsMono-Light.ttf) format("truetype");
    font-weight: 100;
    font-style: normal
}
@font-face {
    font-family: JetBrainsMono;
    src: url(/fonts/webfonts/JetBrainsMono-Thin.woff2) format("woff2"),url(/fonts/ttf/JetBrainsMono-Thin.ttf) format("truetype");
    font-weight: 200;
    font-style: normal
}
@font-face {
    font-family: JetBrainsMono;
    src: url(/fonts/webfonts/JetBrainsMono-Medium.woff2) format("woff2"),url(/fonts/ttf/JetBrainsMono-Medium.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}
@font-face {
    font-family: JetBrainsMono;
    src: url(/fonts/webfonts/JetBrainsMono-Bold.woff2) format("woff2"),url(/fonts/ttf/JetBrainsMono-Bold.ttf) format("truetype");
    font-weight: 600;
    font-style: normal
}
@font-face {
    font-family: JetBrainsMono;
    src: url(/fonts/webfonts/JetBrainsMono-ExtraBold.woff2) format("woff2"),url(/fonts/ttf/JetBrainsMono-ExtraBold.ttf) format("truetype");
    font-weight: 800;
    font-style: normal
}
body {
    font-family: 'JetBrainsMono', sans-serif !important;
}
h1 {
    font-family: 'JetBrainsMono', sans-serif !important;
    font-weight: 600 !important;
}
a {
    color: #efefef;
    text-decoration: none;
}
.logo-ftd {
    font-size: 2rem;
    font-weight: 600;
    display: flex;
    gap: 0;
    position: relative;
    width: max-content;
}
.logo-letter {
    position: relative;
}
.logo-letter:nth-child(1) {
    top: 0;
}
.logo-letter:nth-child(2) {
    top: -10px;
}
.logo-letter:nth-child(3) {
    top: 0;
}
.footer_block {
    display: inline-flex;
    justify-content: space-around;
    width: 100%;
    padding: 1rem;
    align-items: center;
}
.header {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 60px;
}
#menu {
    list-style: none;
    padding: 0 1rem;
    position: absolute;
    background: #ffffff;
    z-index: 1;
}
.hidden {
    display: none;
}
#menu {
    display: none;
    flex-direction: column;
    position: absolute;
    background-color: white;
    top: 25px;
    left: 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    min-width: 200px;
}
#menu.show {
    display: flex;
}
.hamburger-menu #menu li {
    margin: 10px 0;
}
.hamburger-menu {
    width: 100%;
    position: absolute;
    left: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
#hamburger {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    left: 0;
}
#hamburger {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 20px;
}
#hamburger .bar {
    width: 100%;
    height: 3px;
    background-color: #efefef;
    transition: all 0.3s ease;
}
#hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
#hamburger.active .bar:nth-child(2) {
    opacity: 0;
}
#hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
.dropdown {
    list-style: none;
}
.lang_switcher {
    position: absolute;
    right: 0;
}
.dropdown-menu {
    right: 0;
    --bs-dropdown-min-width: 3rem;
}
#menu {
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 0;
    visibility: hidden;
}

#menu.show {
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: radial-gradient(circle at 20% 30%, #181818, #181818);
    min-height: 100vh;
    /*display: flex;*/
    /*justify-content: center;*/
    align-items: center;
    padding: 20px;
}

.terminal-window {
    max-width: 1100px;
    width: 100%;
    height: 85vh;
    min-height: 500px;
    background: #131313;
    border-radius: 18px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.6), 0 0 0 1px rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    backdrop-filter: blur(2px);
    transition: all 0.2s ease;
    margin: auto;
}

.terminal-bar {
    background: #171717;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #2a3a3a;
    flex-wrap: wrap;
}

.window-buttons {
    display: flex;
    gap: 10px;
}

.window-btn {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transition: 0.1s ease;
}

.close { background: #ff5f56; }
.minimize { background: #ffbd2e; }
.maximize { background: #27c93f; }

.terminal-title {
    color: #ffffff;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    background: #171717;
    padding: 4px 12px;
    border-radius: 30px;
    font-weight: 500;
    font-family: monospace;
    box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.13), 0 0 2px #ffffff;
}

.terminal-title i {
    font-style: normal;
    display: inline-block;
    animation: pulseGlow 1.6s infinite;
}

@keyframes pulseGlow {
    0% { text-shadow: 0 0 0 #ffffff; }
    50% { text-shadow: 0 0 4px #ffffff; }
    100% { text-shadow: 0 0 0 #ffffff; }
}

.terminal-body {
    flex: 1;
    background: #151515;
    padding: 20px 18px;
    overflow-y: auto;
    font-size: 1rem;
    line-height: 1.55;
    color: #efefef;
    font-weight: 500;
    scroll-behavior: smooth;
}

.terminal-body::-webkit-scrollbar {
    width: 8px;
}
.terminal-body::-webkit-scrollbar-track {
    background: #151515;
    border-radius: 6px;
}
.terminal-body::-webkit-scrollbar-thumb {
    background: #f3f3f3;
    border-radius: 6px;
}
.terminal-body::-webkit-scrollbar-thumb:hover {
    background: #f3f3f3;
}

.line {
    margin-bottom: 6px;
    white-space: pre-wrap;
    word-break: break-word;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

.line-text {
    display: inline;
    white-space: pre-wrap;
}

.cursor {
    display: inline-block;
    width: 0.65em;
    height: 1.2em;
    background-color: #f3f3f3;
    box-shadow: 0 0 6px #f3f3f3;
    margin-left: 2px;
    vertical-align: middle;
    animation: blink 1s step-end infinite;
}
.final-cursor {
    display: inline-block;
    width: 0.65em;
    height: 1.2em;
    background-color: #f3f3f3;
    box-shadow: 0 0 6px #f3f3f3;
    vertical-align: middle;
    animation: blink 1s step-end infinite;
    margin-left: 4px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.command-prefix {
    color: #dadada;
    font-weight: 600;
}

.print-effect {
    border-right: none;
}

.welcome-marker {
    color: #dadada;
}

.terminal-body a {
    color: #dadada;
    text-decoration: none;
    border-bottom: 1px dashed #ffffff;
}

.status-ok {
    color: #ffffff;
}

@media (max-width: 650px) {
    .terminal-body {
        font-size: 0.85rem;
        padding: 14px;
    }
    .terminal-title {
        font-size: 0.7rem;
    }
}
.cookie-alert {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 250px;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    font-size: .8rem;
}
.cookie-alert h5, .cookie-alert a {
    font-size: .9rem;
}
.cookie-alert.show {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 1000ms;
}
.accept-cookies {
    background: #000000;
    border: none;
}
.accept-cookies:hover {
    background: #000000;
}
@media (max-width: 767px) {
    #menu.show {
        width: 100%;
    }
    .container, .container-md, .container-sm {
        max-width: unset;
    }
}
footer {
    color: #efefef;
}
#menu a {
    color: #000000;
}