@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

body {
    background-color: #0a0a0a;
    color: #33ff33;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    text-align: center;
}

.dashboard-header {
    margin-top: 2rem;
}

.dashboard-header h1 {
    font-size: 2rem;
    margin-bottom: 0.2rem;
}

.dashboard-header p {
    font-size: 1.2rem;
    color: #99ff99;
}

.dashboard-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.dashboard-option {
    text-align: center;
}

.dashboard-option h2 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: #33ffff;
}

.dashboard-option img {
    width: 300px;
    max-width: 90vw;
    height: 400px; /* Add this line */
    object-fit: cover; /* Add this line to crop nicely */
    border: 2px solid #33ff33;
    border-radius: 12px;
    transition: transform 0.2s ease-in-out;
}

.dashboard-option img:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.dashboard-footer {
    margin-top: 3rem;
}

.logout-button {
    color: #ff3333;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    border: 1px solid #ff3333;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.logout-button:hover {
    background-color: #ff3333;
    color: #0a0a0a;
}


body {
    background: radial-gradient(circle at center, #000000, #001a2a);
    color: #66ccff;
    font-family: 'Share Tech Mono', monospace;
    margin: 0;
    padding: 0;
    animation: pulseBG 10s infinite alternate;
}

@keyframes pulseBG {
    0% { background: radial-gradient(circle at center, #000000, #001a2a); }
    100% { background: radial-gradient(circle at center, #000000, #003344); }
}

.guest-container {
    max-width: 900px;
    margin: 60px auto;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.85);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 25px #66ccff, inset 0 0 10px #3399ff;
}

.guest-title {
    font-size: 2.8em;
    margin-bottom: 10px;
    text-shadow: 0 0 8px #66ccff;
    position: relative;
}

.guest-title::after {
    content: "_";
    animation: blinkCursor 1s step-start infinite;
    margin-left: 5px;
}

@keyframes blinkCursor {
    50% { opacity: 0; }
}

.guest-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #99ddff;
    text-shadow: 0 0 5px #3399ff;
}

.showcase-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.showcase-card {
    background-color: #111;
    padding: 20px;
    border-radius: 10px;
    width: 260px;
    box-shadow: 0 0 15px #66ccff, 0 0 8px #3399ff inset;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #66ccff, 0 0 10px #3399ff inset;
}

.showcase-card h2 {
    margin-top: 0;
    font-size: 1.6em;
    color: #66ccff;
    text-shadow: 0 0 5px #66ccff;
}

.showcase-link {
    color: #66ccff;
    text-decoration: none;
    font-size: 1.1em;
    display: inline-block;
    margin-top: 10px;
    transition: text-shadow 0.2s ease;
}

.showcase-link:hover {
    text-shadow: 0 0 7px #66ccff;
}

.back-link {
    margin-top: 40px;
}

.back-link a {
    display: inline-block;
    color: #66ccff;
    text-decoration: none;
    font-size: 1em;
    border: 1px solid #66ccff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, text-shadow 0.3s ease;
}

.back-link a:hover {
    background-color: #001a2a;
    text-shadow: 0 0 7px #66ccff;
}

.footer-terminal {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #66ccff;
    font-size: 0.9em;
    color: #99ddff;
    text-align: center;
    text-shadow: 0 0 3px #66ccff;
}

.footer-terminal .user {
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff;
}

.footer-terminal .timestamp {
    color: #66ccff;
    font-style: italic;
}


body {
    background: radial-gradient(circle at center, #000000, #0a0a0a);
    color: #33ff33;
    font-family: 'Share Tech Mono', monospace;
    margin: 0;
    padding: 0;
    animation: pulseBackground 10s infinite alternate;
    overflow-x: hidden;
}

@keyframes pulseBackground {
    0% { background: radial-gradient(circle at center, #000000, #0a0a0a); }
    100% { background: radial-gradient(circle at center, #000000, #1a1a1a); }
}

.guest-container {
    max-width: 900px;
    margin: 60px auto;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.85);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 25px #33ff33, inset 0 0 10px #00ff00;
    position: relative;
    z-index: 1;
}

.guest-title {
    font-size: 2.8em;
    margin-bottom: 10px;
    text-shadow: 0 0 8px #33ff33;
    position: relative;
}

.guest-title::after {
    content: "_";
    animation: blinkCursor 1s step-start infinite;
    margin-left: 5px;
}

@keyframes blinkCursor {
    50% { opacity: 0; }
}

.guest-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #66ff66;
    text-shadow: 0 0 5px #00ff00;
}

.showcase-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* === Base Card Styling === */
.showcase-card {
    background-color: #111;
    padding: 20px;
    border-radius: 10px;
    width: 260px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

/* === Parasire (Green) === */
.parasire-card {
    box-shadow: 0 0 15px #33ff33, 0 0 8px #00ff00 inset;
}

.parasire-card h2 {
    color: #33ff33;
    text-shadow: 0 0 6px #33ff33;
}

.parasire-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #33ff33, 0 0 10px #00ff00 inset;
}

/* === Nikon (Yellow) === */
.nikon-card {
    box-shadow: 0 0 15px #ffff33, 0 0 8px #ffcc00 inset;
}

.nikon-card h2 {
    color: #ffff33;
    text-shadow: 0 0 6px #ffff33;
}

.nikon-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #ffff33, 0 0 10px #ffcc00 inset;
}

/* === Group (Blue) === */
.group-card {
    box-shadow: 0 0 15px #66ccff, 0 0 8px #3399ff inset;
}

.group-card h2 {
    color: #66ccff;
    text-shadow: 0 0 6px #66ccff;
}

.group-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #66ccff, 0 0 10px #3399ff inset;
}

/* === Security Audits (Orange Hacker Glow) === */
.audits-card {
    box-shadow: 0 0 15px #ffa500, 0 0 8px #ff6600 inset;
}

.audits-card h2 {
    color: #ffa500;
    text-shadow: 0 0 6px #ff9900;
}

.audits-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #ffa500, 0 0 10px #ff6600 inset;
}

/* === Common Headings + Links === */
.showcase-card h2 {
    margin-top: 0;
    font-size: 1.6em;
    transition: text-shadow 0.3s ease;
}

.showcase-link {
    color: inherit;
    text-decoration: none;
    font-size: 1.1em;
    display: inline-block;
    margin-top: 10px;
    transition: text-shadow 0.2s ease;
}

.showcase-link:hover {
    text-shadow: 0 0 7px currentColor;
}

.back-link {
    margin-top: 40px;
}

.back-link a {
    display: inline-block;
    color: #33ff33;
    text-decoration: none;
    font-size: 1em;
    border: 1px solid #33ff33;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, text-shadow 0.3s ease;
}

.back-link a:hover {
    background-color: #0a0a0a;
    text-shadow: 0 0 7px #33ff33;
}

/* === Footer === */
.footer-terminal {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #33ff33;
    font-size: 0.9em;
    color: #00ff00;
    text-align: center;
    font-family: 'Share Tech Mono', monospace;
    text-shadow: 0 0 3px #33ff33;
}

.footer-terminal .user {
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff;
}

.footer-terminal .timestamp {
    color: #33ff33;
    font-style: italic;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Hack', monospace;
    background: radial-gradient(circle, #001f00, #000000);
    color: #00ff00;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 150px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

h1, h2 {
    font-size: 2em;
    margin: 5px;
    text-shadow: 0 0 10px #00ff00;
}

.login-container {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px #00ff00;
}

.login-form label {
    display: block;
    margin: 10px 0 5px;
}

.login-form input {
    width: 90%;
    padding: 8px;
    margin: 5px 0;
    background: #001f00;
    color: #00ff00;
    border: 1px solid #00ff00;
    border-radius: 4px;
}

.login-form input:focus {
    outline: none;
    box-shadow: 0 0 5px #00ff00;
}

button {
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #003300;
    color: #00ff00;
    border: 1px solid #00ff00;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

button:hover {
    background-color: #005500;
}

button:active {
    background-color: #002200;
}

.error-message {
    color: #ff0000;
    margin-top: 10px;
}

.guest-link a {
    color: #00ff00;
    text-decoration: none;
}

.guest-link a:hover {
    text-shadow: 0 0 5px #00ff00;
}

body {
    background-color: #000;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
}

header {
    padding: 20px;
    text-align: center;
    font-size: 2em;
    background: #111;
    border-bottom: 2px solid #00ff00;
}

#editor {
    height: 300px;
    width: 90%;
    margin: 20px auto;
    border: 2px solid #00ff00;
    box-shadow: 0 0 8px #00ff00;
}

#controls {
    text-align: center;
    margin: 10px;
}

select, button {
    padding: 8px 12px;
    background: #111;
    color: #00ff00;
    border: 1px solid #00ff00;
    margin: 5px;
    font-size: 1em;
    cursor: pointer;
}

button:hover, select:hover {
    background: #00ff00;
    color: #000;
}

#output {
    width: 90%;
    margin: 0 auto 30px auto;
    background: #111;
    padding: 10px;
    border: 2px solid #00ff00;
    min-height: 100px;
    white-space: pre-wrap;
    overflow-y: auto;
    color: #00ff00; /* 💚 GREEN OUTPUT */
    box-shadow: 0 0 5px #00ff00;
}

#htmlPreview {
    display: none;
    width: 90%;
    margin: 0 auto 30px auto;
    background: #111;
    border: 2px solid #00ff00;
    min-height: 100px;
}

footer {
    text-align: center;
    padding: 10px;
    color: #006600;
    background: #000;
    font-size: 0.8em;
}


body {
    background: radial-gradient(circle at center, #000000, #1a1a00);
    color: #1ea5bb;
    font-family: 'Share Tech Mono', monospace;
    margin: 0;
    padding: 0;
    animation: pulseBG 10s infinite alternate;
}

@keyframes pulseBG {
    0% { background: radial-gradient(circle at center, #000000, #1ea5bb); }
    100% { background: radial-gradient(circle at center, #000000, #1ea5bb); }
}

.guest-container {
    max-width: 900px;
    margin: 60px auto;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.85);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 25px #1ea5bb, inset 0 0 10px #0fbbca;
}

.guest-title {
    font-size: 2.8em;
    margin-bottom: 10px;
    text-shadow: 0 0 8px #;
    position: relative;
}

.guest-title::after {
    content: "?!@";
    animation: blinkCursor 1s step-start infinite;
    margin-left: 5px;
}

@keyframes blinkCursor {
    50% { opacity: 0; }
}

.guest-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ffff66;
    text-shadow: 0 0 5px #ffcc00;
}

.showcase-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.showcase-card {
    background-color: #111;
    padding: 20px;
    border-radius: 10px;
    width: 260px;
    box-shadow: 0 0 15px #1ea5bb, 0 0 8px #ffcc00 inset;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #1ea5bb, 0 0 10px #ffcc00 inset;
}

.showcase-card h2 {
    margin-top: 0;
    font-size: 1.6em;
    color: #1ea5bb;
    text-shadow: 0 0 5px #1ea5bb;
}

.showcase-link {
    color: #ffff33;
    text-decoration: none;
    font-size: 1.1em;
    display: inline-block;
    margin-top: 10px;
    transition: text-shadow 0.2s ease;
}

.showcase-link:hover {
    text-shadow: 0 0 7px #ffff33;
}

.back-link {
    margin-top: 40px;
}

.back-link a {
    display: inline-block;
    color: #ffff33;
    text-decoration: none;
    font-size: 1em;
    border: 1px solid #ffff33;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, text-shadow 0.3s ease;
}

.back-link a:hover {
    background-color: #1a1a00;
    text-shadow: 0 0 7px #ffff33;
}

.footer-terminal {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #ffff33;
    font-size: 0.9em;
    color: #ffff66;
    text-align: center;
    text-shadow: 0 0 3px #ffff33;
}

.footer-terminal .user {
    color: #ffff99;
    text-shadow: 0 0 5px #ffff99;
}

.footer-terminal .timestamp {
    color: #ffff33;
    font-style: italic;
}

body {
    display: flex;
    background-color: black;
    color: #00ff00;
    font-family: 'Hack', 'Courier New', monospace;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #111;
    padding: 10px 20px;
    border-bottom: 1px solid #0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar h1 {
    margin: 0;
    font-size: 1.5em;
    color: #0f0;
}

.sidebar {
    width: 220px;
    background-color: #111;
    height: 100vh;
    padding: 20px;
    box-shadow: 0 0 15px #00ff00;
    flex-shrink: 0;
}

.sidebar button, .sidebar input[type="text"] {
    display: block;
    width: 100%;
    background: #000;
    color: #0f0;
    border: 1px solid #0f0;
    margin-bottom: 10px;
    padding: 8px;
}

.sidebar h2 {
    color: #0f0;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.mailbox {
    flex-grow: 1;
    padding: 20px;
    overflow-x: auto;
}

.message {
    background-color: #111;
    border: 1px solid #0f0;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px #0f0;
}

.message p {
    margin: 0 0 10px 0;
}

.message button, .message a span {
    background: #000;
    border: 1px solid #0f0;
    color: #0f0;
    padding: 6px 12px;
    margin-right: 10px;
    cursor: pointer;
}

.message button:hover, .message a span:hover {
    background: #002200;
}

.folder-header {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #0f0;
}

input::placeholder {
    color: #0f0;
}

.email-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
}

.email-body.visible {
    max-height: 500px;
    opacity: 1;
}

body {
    background-color: black;
    color: #33ff33;
    font-family: 'Share Tech Mono', monospace;
    padding: 60px;
}

h1, h2 {
    text-align: center;
    text-shadow: 0 0 10px #33ff33;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 1.8em;
    margin-top: 50px;
}

section {
    margin-top: 30px;
    margin-bottom: 50px;
}

p, li {
    font-size: 1.1em;
    line-height: 1.6em;
}

ul {
    list-style-type: square;
    padding-left: 40px;
}

a {
    color: #33ff33;
    text-decoration: underline;
}

body {
    background-color: black;
    color: #33ff33;
    font-family: 'HACK', monospace;
}

.resume-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    padding: 30px;
}

.resume-content {
    white-space: pre-wrap;
    font-size: 1.2em;
    max-width: 800px;
    line-height: 1.8; /* Increase line spacing */
    margin: 20px;
    padding: 15px;
}

.download-link {
    margin-top: 20px;
    font-size: 1.2em;
    color: #33ff33;
    text-align: center;
}

.resume-link {
    color: #33ff33;
    text-decoration: underline;
    font-weight: bold;
}

.resume-link:hover {
    text-shadow: 0 0 5px #33ff33;
    text-decoration: none;
}


body {
  background: radial-gradient(circle at center, #000000, #0a0a0a);
  color: #33ff33;
  font-family: 'Share Tech Mono', monospace;
  margin: 0;
  padding: 0;
  animation: pulseBackground 10s infinite alternate;
  overflow-x: hidden;
}

@keyframes pulseBackground {
  0% { background: radial-gradient(circle at center, #000000, #0a0a0a); }
  100% { background: radial-gradient(circle at center, #000000, #1a1a1a); }
}

.audit-container {
  max-width: 1000px;
  margin: 60px auto;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.85);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 0 25px #33ff33, inset 0 0 10px #00ff00;
  position: relative;
  z-index: 1;
}

h1 {
  font-size: 2.8em;
  margin-bottom: 10px;
  text-shadow: 0 0 8px #33ff33;
  position: relative;
}

h1::after {
  content: "_";
  animation: blinkCursor 1s step-start infinite;
  margin-left: 5px;
}

@keyframes blinkCursor {
  50% { opacity: 0; }
}

.audit-desc {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #66ff66;
  text-shadow: 0 0 5px #00ff00;
}

.meme-img {
  max-width: 300px;
  border: 2px solid #00ff00;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 0 20px #00ff00;
}

.audit-button-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.audit-btn {
  background-color: black;
  color: #00ff00;
  text-decoration: none;
  font-size: 1.1em;
  font-family: 'Share Tech Mono', monospace;
  padding: 12px 30px;
  border: 2px solid #00ff00;
  border-radius: 8px;
  box-shadow: 0 0 12px #00ff00;
  width: 80%;
  max-width: 550px;
  transition: 0.3s ease-in-out;
  animation: flicker 1.5s infinite alternate;
}

.audit-btn:hover {
  background-color: #00ff00;
  color: black;
  box-shadow: 0 0 18px #00ff00, inset 0 0 6px #00ff00;
}

@keyframes flicker {
  0% { opacity: 0.9; }
  100% { opacity: 1; }
}

/* Optional: back link at the bottom */
.back-link {
  margin-top: 50px;
}

.back-link a {
  display: inline-block;
  color: #33ff33;
  text-decoration: none;
  font-size: 1em;
  border: 1px solid #33ff33;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease, text-shadow 0.3s ease;
}

.back-link a:hover {
  background-color: #0a0a0a;
  text-shadow: 0 0 7px #33ff33;
}



body {
    background: radial-gradient(circle at center, #000000, #0a0a0a);
    color: #33ff33;
    font-family: 'Share Tech Mono', monospace;
    margin: 0;
    padding: 0;
    animation: pulseBG 10s infinite alternate;
}

@keyframes pulseBG {
    0% { background: radial-gradient(circle at center, #000000, #0a0a0a); }
    100% { background: radial-gradient(circle at center, #000000, #1a1a1a); }
}

.guest-container {
    max-width: 900px;
    margin: 60px auto;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.85);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 25px #33ff33, inset 0 0 10px #00ff00;
}

.guest-title {
    font-size: 2.8em;
    margin-bottom: 10px;
    text-shadow: 0 0 8px #33ff33;
    position: relative;
}

.guest-title::after {
    content: "_";
    animation: blinkCursor 1s step-start infinite;
    margin-left: 5px;
}

@keyframes blinkCursor {
    50% { opacity: 0; }
}

.guest-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #66ff66;
    text-shadow: 0 0 5px #00ff00;
}

.showcase-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.showcase-card {
    background-color: #111;
    padding: 20px;
    border-radius: 10px;
    width: 260px;
    box-shadow: 0 0 15px #33ff33, 0 0 8px #00ff00 inset;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #33ff33, 0 0 10px #00ff00 inset;
}

.showcase-card h2 {
    margin-top: 0;
    font-size: 1.6em;
    color: #33ff33;
    text-shadow: 0 0 5px #33ff33;
}

.showcase-link {
    color: #33ff33;
    text-decoration: none;
    font-size: 1.1em;
    display: inline-block;
    margin-top: 10px;
    transition: text-shadow 0.2s ease;
}

.showcase-link:hover {
    text-shadow: 0 0 7px #33ff33;
}

.back-link {
    margin-top: 40px;
}

.back-link a {
    display: inline-block;
    color: #33ff33;
    text-decoration: none;
    font-size: 1em;
    border: 1px solid #33ff33;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, text-shadow 0.3s ease;
}

.back-link a:hover {
    background-color: #0a0a0a;
    text-shadow: 0 0 7px #33ff33;
}

.footer-terminal {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #33ff33;
    font-size: 0.9em;
    color: #00ff00;
    text-align: center;
    text-shadow: 0 0 3px #33ff33;
}

.footer-terminal .user {
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff;
}

.footer-terminal .timestamp {
    color: #33ff33;
    font-style: italic;
}
