@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'VT323', monospace;
    background-color: #000;
    color: #00FF00;
    font-size: 18px;
    line-height: 1.4;
}
/* Fixed Navigation Bar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #0000AA;
    border-bottom: 3px solid #00FFFF;
    padding: 15px 20px;
    z-index: 1000;
    box-shadow: 0 0 10px #00FFFF;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: #FFFF00;
    text-decoration: none;
    font-size: 24px;
    text-shadow: 2px 2px #000;
    transition: all 0.3s;
}

nav a:hover {
    color: #00FFFF;
    text-shadow: 0 0 10px #00FFFF;
}

/* Main Container */
.container {
    display: flex;
    margin-top: 70px;
    min-height: calc(100vh - 70px);
}

/* Left Sidebar */
.sidebar {
    width: 350px;
    background-color: #000080;
    border-right: 3px solid #00FFFF;
    padding: 20px;
    box-shadow: 3px 0 10px rgba(0, 255, 255, 0.3);
}

.logo-container {
    background-color: #000;
    border: 2px solid #00FF00;
    padding: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.logo-container img {
    max-width: 100%;
    height: auto;
    image-rendering: pixelated;
}

.sidebar-section {
    background-color: #001a4d;
    border: 2px solid #00FFFF;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.sidebar-section h3 {
    color: #FFFF00;
    font-size: 22px;
    margin-bottom: 10px;
    text-shadow: 2px 2px #000;
    border-bottom: 1px solid #00FFFF;
    padding-bottom: 5px;
}

.sidebar-section p {
    color: #00FF00;
    font-size: 18px;
}

.sidebar-section a {
    color: #00FFFF;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.3s;
}

.sidebar-section a:hover {
    color: #FFFF00;
    text-shadow: 0 0 5px #FFFF00;
    padding-left: 10px;
}

/* Main Content Area */
.main-content {
    flex: 1;
    padding: 30px;
    background-color: #000;
}

.content-box {
    background-color: #001a4d;
    border: 3px solid #00FFFF;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.content-box h1 {
    color: #FFFF00;
    font-size: 36px;
    margin-bottom: 15px;
    text-shadow: 3px 3px #000;
    text-align: center;
    border-bottom: 2px solid #00FFFF;
    padding-bottom: 10px;
}

.content-box h2 {
    color: #00FFFF;
    font-size: 28px;
    margin-bottom: 15px;
    text-shadow: 2px 2px #000;
}

.info-text {
    color: #00FF00;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.info-text strong {
    color: #FFFF00;
}

.telnet-info {
    background-color: #000080;
    border: 2px solid #00FF00;
    padding: 15px;
    margin: 15px 0;
}

.telnet-info p {
    color: #00FFFF;
    font-size: 20px;
}

/* fTelnet Container */
#fTelnetContainer {
    background-color: #000;
    border: 3px solid #00FF00;
    padding: 10px;
    margin-top: 20px;
    min-height: 600px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #000080;
}

::-webkit-scrollbar-thumb {
    background: #00FFFF;
    border: 1px solid #0000AA;
}

::-webkit-scrollbar-thumb:hover {
    background: #00FF00;
}