body {
    background:black;
    color:#49ff00;
    font-family:'Share Tech Mono', monospace;
    margin:0;
    overflow:hidden;
}

/* login */
#login-screen {
    position:fixed;
    width:100%;
    height:100%;
    background:black;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:10000;
}

/* login screen title */
#login-screen h2 {
    color: #ffffff;          /* login screen title */
}

#login-box {
    border:1px solid #49ff00;
    padding:40px;
    text-align:center;
}

#login-box input {
    display:block;
    margin:10px auto;
    background:black;
    border:1px solid #49ff00;
    color:#49ff00;
    padding:8px;
}

#login-box button {
    background:black;
    border:1px solid #49ff00;
    color:#49ff00;
    padding:8px 20px;
    cursor:pointer;
}

/* matrix */
#matrix {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:-2;
}

.scanlines {
    position:fixed;
    width:100%;
    height:100%;
    background:repeating-linear-gradient(
        to bottom,
        rgba(0,0,0,0) 0px,
        rgba(0,0,0,0) 2px,
        rgba(0,0,0,0.25) 3px
    );
    pointer-events:none;
    z-index:-1;
}

/* boot */
#boot-screen {
    position:fixed;
    width:100%;
    height:100%;
    background:black;
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

/* desktop */
#desktop {
    display:none;
    padding:40px;
}

/* icons */
.desktop-icon {
    width: 130px;
    text-align: center;
    margin: 15px;
    cursor: pointer;
    user-select: none;
    font-size: 24px; /* THIS makes the icon bigger */
}

.desktop-icon span,
.desktop-icon div {
    display: block;
    font-size: 16px; /* label size */
    margin-top: 3px;
}

.desktop-icon:hover img {
    filter: drop-shadow(0 0 8px #49ff00);
}

/* windows */
.window {
    display:none;
    position:absolute;
    top:120px;
    left:120px;
    width:420px;
    background:black;
    border:1px solid #49ff00;
    box-shadow:0 0 20px #49ff00;
}

.window-header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#111;
    padding:8px;
    cursor:move;
    border-bottom:1px solid #49ff00;
	color: #ffffff;   /* title color */
}

.window-controls button {
    background:black;
    border:1px solid #49ff00;
    color:#49ff00;
    cursor:pointer;
    margin-left:5px;
}

.window-body {
    padding:20px;
}



/* projects list */
#projects-list a {
    color: #49ff00;
    text-decoration: none;
}

#projects-list a:hover {
    text-decoration: underline;
}

/* games list */
#games-list a {
    color: #49ff00;
    text-decoration: none;
}

#games-list a:hover {
    text-decoration: underline;
}

/* software list */
#software-list a {
    color: #49ff00;
    text-decoration: none;
}

#software-list a:hover {
    text-decoration: underline;
}

/* mods list */
#mods-list a {
    color: #49ff00;
    text-decoration: none;
}

#mods-list a:hover {
    text-decoration: underline;
}

/* links list */
#links-list a {
    color: #49ff00;
    text-decoration: none;
}

#links-list a:hover {
    text-decoration: underline;
}

/* video items */
.video-item a {
    color: #49ff00;
    text-decoration: none;
    display: block;
}

.video-item a:hover {
    text-decoration: underline;
}

.video-item img {
    border: 1px solid #49ff00;
    box-shadow: 0 0 6px #49ff00;
}

.video-item:hover img {
    box-shadow: 0 0 12px #49ff00;
}


/* SSOFTWARE LIST STYLING */
#software-list .title {
    color: white;
    font-weight: bold; /* optional for emphasis */
}

#software-list .desc {
    color: #49ff00; /* replace with your green color */
}

/* SOFTWARE DESCRIPTION STYLING */
#software-description {
    margin-top: 15px;
    color: #49ff00; /* your green text */
    line-height: 1.5;
}

#software-description .software-title {
    color: white;
    font-weight: bold;
}


/* ============================
   NODE IMAGE
============================ */
#node {
    position: fixed;
    bottom: var(--node-bottom);
    right: var(--node-right);
    width: var(--node-width);
    height: auto;
    z-index: 1002;
}

/* ============================
   BOTTOM LOGO
============================ */
#logo-bottom {
    position: fixed;
    bottom: var(--logo-bottom);
    right: var(--logo-right);
    width: var(--logo-width);
    height: auto;
    z-index: 1002;
}


/* radar */
#radar {
    position: fixed;
    bottom: 70px;
    right: 40px;
    width: 160px;
    height: 160px;
    border: 2px solid #49ff00;
    border-radius: 50%;
    overflow: hidden;
    background: black;
}



@keyframes spin {
    0%{transform:rotate(0deg);}
    100%{transform:rotate(360deg);}
}

/* HELP PANEL */
#help-panel {
    position: fixed;
    bottom: 20px;
    width: 100%;
    background: #000;
    border-top: 1px solid #49ff00;
    padding: 10px 20px;  /* reduce top/bottom padding */
    font-size: 14px;
}

/* help titles */
#help-panel h3 {
    color: #ffffff;          /* KOHDARI OS HELP title */
    margin: 5px 0 5px 0;     /* reduce top and bottom margins */
}

#help-panel h4 {
    color: #ffffff;          /* Terminal Commands title */
    text-decoration: underline;
    margin: 5px 0 5px 0;     /* reduce top and bottom margins */
}

/* command list */
.command-list {
    list-style: none;
    padding-left: 0;
    margin: 0;               /* remove extra margin from the ul */
}

.command-list li {
    color: #49ff00;
    margin-bottom: 3px;
}

/* command names */
.command-list .cmd {
    color: #ffffff;
    font-weight: bold;
}

/* footer */
#footer {
    position:fixed;
    bottom:0;
    width:100%;
    background:#111;
    border-top:1px solid #49ff00;
    display:flex;
    justify-content:space-between;
    padding:5px 20px;
}

/* youtube container */
#youtube-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;

    height: 435px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 5px;
}

.video-item {
    color: #49ff00;
}

.video-item img {
    width: 100%;
    height: auto;
    border: 1px solid #49ff00;
    box-shadow: 0 0 6px #49ff00;
    transition: all 0.25s ease;
}

.video-item span {
    display: block;
    text-align: center;
    margin-top: 5px;
}

.video-item:hover img {
    box-shadow: 0 0 12px #49ff00;
}

/* ============================
   CSS VARIABLES FOR EASY ADJUSTMENT
============================ */
:root {
    /* Terminal */
    --terminal-width: 500px;
    --terminal-height: 210px;
    --terminal-bottom: 40px;

    /* Node Image */
    --node-width: 350px;
    --node-bottom: 160px;
    --node-right: 250px;

    /* Bottom Logo */
    --logo-width: 350px;
    --logo-bottom: 40px;
    --logo-right: 250px;
}

/* ============================
   TERMINAL FIXED AT BOTTOM
============================ */
#terminal-fixed {
    position: fixed;
    bottom: var(--terminal-bottom);
    left: 50%;
    transform: translateX(-50%);
    width: var(--terminal-width);
    height: var(--terminal-height);
    max-height: var(--terminal-height);
    background: #000;
    border: 1px solid #49ff00;
    box-shadow: 0 0 10px #49ff00;
    display: flex;
    flex-direction: column;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 6px;
    z-index: 1001;
}

/* ============================
   CONSOLE OUTPUT
   - leaves space for input + description
============================ */
#terminal-fixed #console-output {
    flex: 1 1 auto; /* takes remaining space */
    overflow-y: auto;
    padding-right: 5px;
    margin-bottom: 5px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
}

/* ============================
   CONSOLE INPUT
============================ */
#terminal-fixed #console-input {
    border: 1px solid #49ff00;
    background: black;
    color: #49ff00;
    padding: 6px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    margin-bottom: 5px; /* space between input and description */
}

/* ============================
   TERMINAL DESCRIPTION
============================ */
#terminal-fixed #terminal-description {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: #49ff00;
    text-align: center;
    margin-top: 3px; /* ensures it’s visible */
    flex-shrink: 0;  /* prevents being squished */
}





/* HACKER THEME SCROLLBARS */

/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* track (background) */
::-webkit-scrollbar-track {
    background: #000;
    border-left: 1px solid #49ff00;
}

/* draggable bar */
::-webkit-scrollbar-thumb {
    background: #49ff00;
    box-shadow: 0 0 6px #49ff00;
    border-radius: 2px;
}

/* hover effect */
::-webkit-scrollbar-thumb:hover {
    background: #7dff4f;
}

/* games list */
#games-list a{
    text-decoration:none;
    color:white;
    display:block;
    padding:4px 6px;
}

#games-list a:hover{
    background:#333;
}