/* --- Font Imports --- */
@font-face {
  font-family: 'Orbitron';
  src: url('fonts/Orbitron-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Orbitron';
  src: url('fonts/Orbitron-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

/* --- Root Variables (Neon Color Palette) --- */
:root {
  --neon-red: #ff0000;
  --neon-green: #00ff00;
  --neon-cyan: #00ffff;
  --neon-pink: #ff00ff;
  --neon-orange: #ffa500;
  --neon-yellow: #ffff00; /* NEW: Yellow */
  --neon-purple: #8a2be2; /* NEW: Purple (Blue Violet for a neon feel) */
  --neon-bg: #111;
  --text-light: #f1f1f1;
}

/* --- Base / Global Styles --- */
body {
  background-color: #000;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
}

h1,
h2,
h3,
.site-titlebar {
  font-family: 'Orbitron', sans-serif;
}

/* --- Layout --- */
.page-wrapper {
  max-width: 75%;
  margin: 5px auto 0 auto;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-sizing: border-box;
}

/* --- Header / Navigation --- */
.site-titlebar {
  text-align: center;
  font-size: 4rem;
  color: #000; /* Text color is black for the green glow to stand out */
  text-shadow:
    0 0 4px var(--neon-green),
    0 0 8px var(--neon-green),
    0 0 12px var(--neon-green);
}

.navbar {
  margin-top: 0.2rem;
}

.navbar ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
}

.navbar li {
  flex: 0 1 auto;
}

.neon-text-nav-item {
  color: #000;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  line-height: 1;
  display: block;
  box-sizing: border-box;
  text-decoration: none;
  text-align: center;
}

/* Hover styles for navigation items - now inside media query for non-touch devices */
@media (hover: hover) and (pointer: fine) {
  .neon-text-nav-item:hover {
    animation: none;
    background-color: var(--text-light); /* Consistent white from variable */
    color: #000;
    font-family: 'Courier New', monospace;
    border-radius: 4px;
    box-shadow: 0 0 2px var(--text-light); /* Consistent white from variable */
    transition: all 0.2s ease-in-out;
  }
}


/* --- Content Text (Paragraphs & List Items) --- */
p.neon-cyan,
li.neon-cyan {
  color: var(--neon-cyan);
  font-size: 1.4rem;
  line-height: 1.4;
  background-color: transparent;
  margin: 1rem 0;
  text-shadow: 0 0 1px var(--neon-cyan);
}

p.neon-pink,
li.neon-pink {
  color: var(--neon-pink);
  font-size: 1.4rem;
  line-height: 1.4;
  background-color: transparent;
  margin: 1rem 0;
  text-shadow: 0 0 1px var(--neon-pink);
}

p.neon-orange,
li.neon-orange {
  color: var(--neon-orange);
  font-size: 1.4rem;
  line-height: 1.4;
  background-color: transparent;
  margin: 1rem 0;
  text-shadow: 0 0 1px var(--neon-orange);
}

p.neon-green,
li.neon-green {
  color: var(--neon-green);
  font-size: 1.4rem;
  line-height: 1.4;
  background-color: transparent;
  margin: 1rem 0;
  text-shadow: 0 0 1px var(--neon-green); /* Added for consistency */
}

p.neon-red,
li.neon-red {
  color: var(--neon-red);
  font-size: 1.4rem;
  line-height: 1.4;
  background-color: transparent;
  margin: 1rem 0;
  text-shadow: 0 0 1px var(--neon-red);
}

p.neon-yellow, /* NEW: Yellow Paragraph/List Item */
li.neon-yellow {
  color: var(--neon-yellow);
  font-size: 1.4rem;
  line-height: 1.4;
  background-color: transparent;
  margin: 1rem 0;
  text-shadow: 0 0 1px var(--neon-yellow);
}

p.neon-purple, /* NEW: Purple Paragraph/List Item */
li.neon-purple {
  color: var(--neon-purple);
  font-size: 1.4rem;
  line-height: 1.4;
  background-color: transparent;
  margin: 1rem 0;
  text-shadow: 0 0 1px var(--neon-purple);
}

p.neon-white,
li.neon-white {
  color: var(--text-light);
  font-size: 1.4rem;
  line-height: 1.4;
  background-color: transparent;
  margin: 1rem 0;
  text-shadow: 0 0 1px var(--text-light);
}

/* --- Headings (H1) --- */
h1.neon-cyan {
  color: var(--neon-cyan);
  font-size: 2.5rem;
  line-height: 1.4;
  background-color: transparent;
  margin: 2rem 0;
  text-shadow: 0 0 1px var(--neon-cyan), 0 0 5px var(--neon-cyan);
}

h1.neon-pink {
  color: var(--neon-pink);
  font-size: 2.5rem;
  line-height: 1.4;
  background-color: transparent;
  margin: 2rem 0;
  text-shadow: 0 0 1px var(--neon-pink), 0 0 5px var(--neon-pink);
}

h1.neon-orange {
  color: var(--neon-orange);
  font-size: 2.5rem;
  line-height: 1.4;
  background-color: transparent;
  margin: 2rem 0;
  text-shadow: 0 0 1px var(--neon-orange), 0 0 5px var(--neon-orange);
}

h1.neon-green {
  color: var(--neon-green);
  font-size: 2.5rem;
  line-height: 1.4;
  background-color: transparent;
  margin: 2rem 0;
  text-shadow: 0 0 1px var(--neon-green), 0 0 5px var(--neon-green);
}

h1.neon-red {
  color: var(--neon-red);
  font-size: 2.5rem;
  line-height: 1.4;
  background-color: transparent;
  margin: 2rem 0;
  text-shadow: 0 0 1px var(--neon-red), 0 0 5px var(--neon-red);
}

h1.neon-yellow {
  color: var(--neon-yellow);
  font-size: 2.5rem;
  line-height: 1.4;
  background-color: transparent;
  margin: 2rem 0;
  text-shadow: 0 0 1px var(--neon-yellow), 0 0 5px var(--neon-yellow);
}


h1.neon-purple {
  color: var(--neon-purple);
  font-size: 2.5rem;
  line-height: 1.4;
  background-color: transparent;
  margin: 2rem 0;
  text-shadow: 0 0 1px var(--neon-purple), 0 0 5px var(--neon-purple);
}

h1.neon-white {
  color: var(--text-light);
  font-size: 2.5rem;
  line-height: 1.4;
  background-color: transparent;
  margin: 2rem 0;
  text-shadow: 0 0 1px var(--text-light), 0 0 5px var(--text-light);
}

/* --- Headings (H2) --- */
h2.neon-cyan {
  color: var(--neon-cyan);
  font-size: 2rem;
  line-height: 1.3; /* Adjusted line-height to reduce spacing */
  background-color: transparent;
  margin: 2rem 0;
  text-shadow: 0 0 1px var(--neon-cyan);
}

h2.neon-pink {
  color: var(--neon-pink);
  font-size: 2rem;
  line-height: 1.3; /* Adjusted line-height to reduce spacing */
  background-color: transparent;
  margin: 2rem 0;
  text-shadow: 0 0 1px var(--neon-pink);
}

h2.neon-orange {
  color: var(--neon-orange);
  font-size: 2rem;
  line-height: 1.3; /* Adjusted line-height to reduce spacing */
  background-color: transparent;
  margin: 2rem 0;
  text-shadow: 0 0 1px var(--neon-orange);
}

h2.neon-green {
  color: var(--neon-green);
  font-size: 2rem;
  line-height: 1.3; /* Adjusted line-height to reduce spacing */
  background-color: transparent;
  margin: 2rem 0;
  text-shadow: 0 0 1px var(--neon-green);
}

h2.neon-red {
  color: var(--neon-red);
  font-size: 2rem;
  line-height: 1.3; /* Adjusted line-height to reduce spacing */
  background-color: transparent;
  margin: 2rem 0;
  text-shadow: 0 0 1px var(--neon-red);
}

h2.neon-yellow, /* NEW: Yellow H2 */
h2.neon-yellow {
  color: var(--neon-yellow);
  font-size: 2rem;
  line-height: 1.3; /* Adjusted line-height to reduce spacing */
  background-color: transparent;
  margin: 2rem 0;
  text-shadow: 0 0 1px var(--neon-yellow);
}

h2.neon-purple, /* NEW: Purple H2 */
h2.neon-purple {
  color: var(--neon-purple);
  font-size: 2rem;
  line-height: 1.3; /* Adjusted line-height to reduce spacing */
  background-color: transparent;
  margin: 2rem 0;
  text-shadow: 0 0 1px var(--neon-purple);
}

h2.neon-white {
  color: var(--text-light);
  font-size: 2rem;
  line-height: 1.3; /* Adjusted line-height to reduce spacing */
  background-color: transparent;
  margin: 2rem 0;
  text-shadow: 0 0 1px var(--text-light);
}

/* --- Neon Color Cycle Animations --- */
.neonCycleColourStart-red {
  animation: neonCycleRed 15s infinite;
}

.neonCycleColourStart-pink {
  animation: neonCyclePink 15s infinite;
}

.neonCycleColourStart-cyan {
  animation: neonCycleCyan 15s infinite;
}

.neonCycleColourStart-orange {
  animation: neonCycleOrange 15s infinite;
}

.neonCycleColourStart-yellow { /* NEW: Yellow Color Cycle */
  animation: neonCycleYellow 15s infinite;
}

.neonCycleColourStart-purple { /* NEW: Purple Color Cycle */
  animation: neonCyclePurple 15s infinite;
}

@keyframes neonCycleRed {
  0%, 100% { text-shadow: 0 0 2px var(--neon-red), 0 0 4px var(--neon-red), 0 0 6px var(--neon-red); }
  20% { text-shadow: 0 0 2px var(--neon-cyan), 0 0 4px var(--neon-cyan), 0 0 6px var(--neon-cyan); }
  40% { text-shadow: 0 0 2px var(--neon-orange), 0 0 4px var(--neon-orange), 0 0 6px var(--neon-orange); }
  60% { text-shadow: 0 0 2px var(--neon-pink), 0 0 4px var(--neon-pink), 0 0 6px var(--neon-pink); }
  80% { text-shadow: 0 0 2px var(--neon-yellow), 0 0 4px var(--neon-yellow), 0 0 6px var(--neon-yellow); } /* Added yellow */
  90% { text-shadow: 0 0 2px var(--neon-purple), 0 0 4px var(--neon-purple), 0 0 6px var(--neon-purple); } /* Added purple */
}

@keyframes neonCyclePink {
  0%, 100% { text-shadow: 0 0 2px var(--neon-pink), 0 0 4px var(--neon-pink), 0 0 6px var(--neon-pink); }
  20% { text-shadow: 0 0 2px var(--neon-cyan), 0 0 4px var(--neon-cyan), 0 0 6px var(--neon-cyan); }
  40% { text-shadow: 0 0 2px var(--neon-green), 0 0 4px var(--neon-green), 0 0 6px var(--neon-green); }
  60% { text-shadow: 0 0 2px var(--neon-red), 0 0 4px var(--neon-red), 0 0 6px var(--neon-red); }
  80% { text-shadow: 0 0 2px var(--neon-yellow), 0 0 4px var(--neon-yellow), 0 0 6px var(--neon-yellow); } /* Added yellow */
  90% { text-shadow: 0 0 2px var(--neon-purple), 0 0 4px var(--neon-purple), 0 0 6px var(--neon-purple); } /* Added purple */
}

@keyframes neonCycleCyan {
  0%, 100% { text-shadow: 0 0 2px var(--neon-cyan), 0 0 4px var(--neon-cyan), 0 0 6px var(--neon-cyan); }
  20% { text-shadow: 0 0 2px var(--neon-pink), 0 0 4px var(--neon-pink), 0 0 6px var(--neon-pink); }
  40% { text-shadow: 0 0 2px var(--neon-yellow), 0 0 4px var(--neon-yellow), 0 0 6px var(--neon-yellow); } /* Added yellow */
  60% { text-shadow: 0 0 2px var(--neon-orange), 0 0 4px var(--neon-orange), 0 0 6px var(--neon-orange); }
  80% { text-shadow: 0 0 2px var(--neon-green), 0 0 4px var(--neon-green), 0 0 6px var(--neon-green); }
  90% { text-shadow: 0 0 2px var(--neon-purple), 0 0 4px var(--neon-purple), 0 0 6px var(--neon-purple); } /* Added purple */
}

@keyframes neonCycleOrange {
  0%, 100% { text-shadow: 0 0 2px var(--neon-orange), 0 0 4px var(--neon-orange), 0 0 6px var(--neon-orange); }
  20% { text-shadow: 0 0 2px var(--neon-red), 0 0 4px var(--neon-red), 0 0 6px var(--neon-red); }
  40% { text-shadow: 0 0 2px var(--neon-yellow), 0 0 4px var(--neon-yellow), 0 0 6px var(--neon-yellow); } /* Added yellow */
  60% { text-shadow: 0 0 2px var(--neon-green), 0 0 4px var(--neon-green), 0 0 6px var(--neon-green); }
  80% { text-shadow: 0 0 2px var(--neon-purple), 0 0 4px var(--neon-purple), 0 0 6px var(--neon-purple); } /* Added purple */
  90% { text-shadow: 0 0 2px var(--neon-cyan), 0 0 4px var(--neon-cyan), 0 0 6px var(--neon-cyan); }
}

/* NEW: Yellow Color Cycle */
@keyframes neonCycleYellow {
  0%, 100% { text-shadow: 0 0 2px var(--neon-yellow), 0 0 4px var(--neon-yellow), 0 0 6px var(--neon-yellow); }
  20% { text-shadow: 0 0 2px var(--neon-green), 0 0 4px var(--neon-green), 0 0 6px var(--neon-green); }
  40% { text-shadow: 0 0 2px var(--neon-red), 0 0 4px var(--neon-red), 0 0 6px var(--neon-red); }
  60% { text-shadow: 0 0 2px var(--neon-pink), 0 0 4px var(--neon-pink), 0 0 6px var(--neon-pink); }
  80% { text-shadow: 0 0 2px var(--neon-cyan), 0 0 4px var(--neon-cyan), 0 0 6px var(--neon-cyan); }
  90% { text-shadow: 0 0 2px var(--neon-purple), 0 0 4px var(--neon-purple), 0 0 6px var(--neon-purple); } /* Added purple */
}

/* NEW: Purple Color Cycle */
@keyframes neonCyclePurple {
  0%, 100% { text-shadow: 0 0 2px var(--neon-purple), 0 0 4px var(--neon-purple), 0 0 6px var(--neon-purple); }
  20% { text-shadow: 0 0 2px var(--neon-red), 0 0 4px var(--neon-red), 0 0 6px var(--neon-red); }
  40% { text-shadow: 0 0 2px var(--neon-yellow), 0 0 4px var(--neon-yellow), 0 0 6px var(--neon-yellow); }
  60% { text-shadow: 0 0 2px var(--neon-cyan), 0 0 4px var(--neon-cyan), 0 0 6px var(--neon-cyan); }
  80% { text-shadow: 0 0 2px var(--neon-orange), 0 0 4px var(--neon-orange), 0 0 6px var(--neon-orange); }
  90% { text-shadow: 0 0 2px var(--neon-green), 0 0 4px var(--neon-green), 0 0 6px var(--neon-green); }
}


/* --- General Links --- */
/* Hover styles for general links - now inside media query for non-touch devices */
@media (hover: hover) and (pointer: fine) {
  a:hover {
    animation: none;
    background-color: var(--text-light); /* Consistent white from variable */
    color: #000;
    border-radius: 2px;
    box-shadow: 0 0 2px var(--text-light); /* Consistent white from variable */
    transition: all 0.2s ease-in-out;
  }
}

a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--text-light); /* Consistent white from variable */
}

a:visited {
  color: inherit;
  text-decoration: inherit;
}

/* --- Buttons --- */
.button-neon-green {
  background-color: var(--neon-green);
  color: #000;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 0 2px var(--neon-green), 0 0 4px var(--neon-green);
  transition: all 0.2s ease-in-out;
}

.button-neon-red {
  background-color: var(--neon-red);
  color: #000;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 0 2px var(--neon-red), 0 0 4px var(--neon-red);
  transition: all 0.2s ease-in-out;
}

.button-neon-cyan {
  background-color: var(--neon-cyan);
  color: #000;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 0 2px var(--neon-cyan), 0 0 4px var(--neon-cyan);
  transition: all 0.2s ease-in-out;
}

.button-neon-pink {
  background-color: var(--neon-pink);
  color: #000;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 0 2px var(--neon-pink), 0 0 4px var(--neon-pink);
  transition: all 0.2s ease-in-out;
}

.button-neon-orange {
  background-color: var(--neon-orange);
  color: #000;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 0 2px var(--neon-orange), 0 0 4px var(--neon-orange);
  transition: all 0.2s ease-in-out;
}

.button-neon-yellow { /* NEW: Yellow Button */
  background-color: var(--neon-yellow);
  color: #000;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 0 2px var(--neon-yellow), 0 0 4px var(--neon-yellow);
  transition: all 0.2s ease-in-out;
}

.button-neon-purple { /* NEW: Purple Button */
  background-color: var(--neon-purple);
  color: #000;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 0 2px var(--neon-purple), 0 0 4px var(--neon-purple);
  transition: all 0.2s ease-in-out;
}

/* Hover styles for buttons - now inside media query for non-touch devices */
@media (hover: hover) and (pointer: fine) {
  .button-neon-green:hover,
  .button-neon-red:hover,
  .button-neon-cyan:hover,
  .button-neon-pink:hover,
  .button-neon-orange:hover,
  .button-neon-yellow:hover, /* NEW: Yellow Button Hover */
  .button-neon-purple:hover { /* NEW: Purple Button Hover */
    background-color: var(--text-light); /* Consistent white from variable */
    color: #000;
    box-shadow: 0 0 2px var(--text-light); /* Consistent white from variable */
  }
}

/* --- Button-Style Links --- */
.button-style-link-neon-green {
  background-color: var(--neon-green);
  color: #000;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 0 2px var(--neon-green), 0 0 4px var(--neon-green);
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
  box-sizing: border-box;
}

.button-style-link-neon-green:link,
.button-style-link-neon-green:visited,
.button-style-link-neon-green:active,
.button-style-link-neon-green:focus {
  color: #000;
  text-decoration: none;
}

/* Hover styles for button-style links - now inside media query for non-touch devices */
@media (hover: hover) and (pointer: fine) {
  .button-style-link-neon-green:hover {
    background-color: var(--text-light);
    color: #000;
    box-shadow: 0 0 2px var(--text-light);
    text-decoration: none;
  }
}

.button-style-link-neon-red {
  background-color: var(--neon-red);
  color: #000;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 0 2px var(--neon-red), 0 0 4px var(--neon-red);
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
  box-sizing: border-box;
}
.button-style-link-neon-red:link,
.button-style-link-neon-red:visited,
.button-style-link-neon-red:active,
.button-style-link-neon-red:focus {
  color: #000;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .button-style-link-neon-red:hover {
    background-color: var(--text-light);
    color: #000;
    box-shadow: 0 0 2px var(--text-light);
    text-decoration: none;
  }
}

.button-style-link-neon-cyan {
  background-color: var(--neon-cyan);
  color: #000;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 0 2px var(--neon-cyan), 0 0 4px var(--neon-cyan);
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
  box-sizing: border-box;
}
.button-style-link-neon-cyan:link,
.button-style-link-neon-cyan:visited,
.button-style-link-neon-cyan:active,
.button-style-link-neon-cyan:focus {
  color: #000;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .button-style-link-neon-cyan:hover {
    background-color: var(--text-light);
    color: #000;
    box-shadow: 0 0 2px var(--text-light);
    text-decoration: none;
  }
}

.button-style-link-neon-pink {
  background-color: var(--neon-pink);
  color: #000;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 0 2px var(--neon-pink), 0 0 4px var(--neon-pink);
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
  box-sizing: border-box;
}
.button-style-link-neon-pink:link,
.button-style-link-neon-pink:visited,
.button-style-link-neon-pink:active,
.button-style-link-neon-pink:focus {
  color: #000;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .button-style-link-neon-pink:hover {
    background-color: var(--text-light);
    color: #000;
    box-shadow: 0 0 2px var(--text-light);
    text-decoration: none;
  }
}

.button-style-link-neon-orange {
  background-color: var(--neon-orange);
  color: #000;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 0 2px var(--neon-orange), 0 0 4px var(--neon-orange);
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
  box-sizing: border-box;
}
.button-style-link-neon-orange:link,
.button-style-link-neon-orange:visited,
.button-style-link-neon-orange:active,
.button-style-link-neon-orange:focus {
  color: #000;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .button-style-link-neon-orange:hover {
    background-color: var(--text-light);
    color: #000;
    box-shadow: 0 0 2px var(--text-light);
    text-decoration: none;
  }
}

.button-style-link-neon-yellow { /* NEW: Yellow Button-Style Link */
  background-color: var(--neon-yellow);
  color: #000;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 0 2px var(--neon-yellow), 0 0 4px var(--neon-yellow);
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
  box-sizing: border-box;
}
.button-style-link-neon-yellow:link,
.button-style-link-neon-yellow:visited,
.button-style-link-neon-yellow:active,
.button-style-link-neon-yellow:focus {
  color: #000;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .button-style-link-neon-yellow:hover {
    background-color: var(--text-light);
    color: #000;
    box-shadow: 0 0 2px var(--text-light);
    text-decoration: none;
  }
}

.button-style-link-neon-purple { /* NEW: Purple Button-Style Link */
  background-color: var(--neon-purple);
  color: #000;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 0 2px var(--neon-purple), 0 0 4px var(--neon-purple);
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
  box-sizing: border-box;
}
.button-style-link-neon-purple:link,
.button-style-link-neon-purple:visited,
.button-style-link-neon-purple:active,
.button-style-link-neon-purple:focus {
  color: #000;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .button-style-link-neon-purple:hover {
    background-color: var(--text-light);
    color: #000;
    box-shadow: 0 0 2px var(--text-light);
    text-decoration: none;
  }
}

/* --- Footer --- */
.footer {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 1rem;
}

p.neon-cyan-footer {
  color: var(--neon-cyan);
  font-size: 1rem;
  line-height: 1rem;
  text-align: center;
  background-color: transparent;
  margin: 1rem 0;
  text-shadow: 0 0 1px var(--neon-cyan);
}

p.neon-pink-footer {
  color: var(--neon-pink);
  font-size: 1rem;
  line-height: 1rem;
  text-align: center;
  background-color: transparent;
  margin: 1rem 0;
  text-shadow: 0 0 1px var(--neon-pink);
}

p.neon-orange-footer {
  color: var(--neon-orange);
  font-size: 1rem;
  line-height: 1rem;
  text-align: center;
  background-color: transparent;
  margin: 1rem 0;
  text-shadow: 0 0 1px var(--neon-orange);
}

p.neon-green-footer {
  color: var(--neon-green);
  font-size: 1rem;
  line-height: 1rem;
  text-align: center;
  background-color: transparent;
  margin: 1rem 0;
  text-shadow: 0 0 1px var(--neon-green);
}

p.neon-red-footer {
  color: var(--neon-red);
  font-size: 1rem;
  line-height: 1rem;
  text-align: center;
  background-color: transparent;
  margin: 1rem 0;
  text-shadow: 0 0 1px var(--neon-red);
}

p.neon-yellow-footer { /* NEW: Yellow Footer */
  color: var(--neon-yellow);
  font-size: 1rem;
  line-height: 1rem;
  text-align: center;
  background-color: transparent;
  margin: 1rem 0;
  text-shadow: 0 0 1px var(--neon-yellow);
}

p.neon-purple-footer { /* NEW: Purple Footer */
  color: var(--neon-purple);
  font-size: 1rem;
  line-height: 1rem;
  text-align: center;
  background-color: transparent;
  margin: 1rem 0;
  text-shadow: 0 0 1px var(--neon-purple);
}

p.neon-white-footer {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1rem;
  text-align: center;
  background-color: transparent;
  margin: 1rem 0;
  text-shadow: 0 0 1px var(--text-light);
}

/* --- Mobile-specific Adjustments --- */
@media (orientation: portrait) and (max-aspect-ratio: 3/2) {
  .page-wrapper {
    max-width: 100%;
    margin: 0;
    padding: 1rem;
    border: none;
    border-radius: 0;
  }

  .navbar ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }

  .neon-text-nav-item {
    font-size: 1.5rem;
    line-height: 1.2;
    padding: 0.15rem 0;
    width: 100%;
    text-align: center;
    display: block;
    box-sizing: border-box;
    margin: 0;
  }

  /* No hover styles for nav items in this specific mobile portrait media query as they are handled by the general @media (hover: hover) */
}