/* neon CSS containers inspired by
 * Bootswatch v5.3.7 (https://bootswatch.com)
 * Theme: vapor
 * Copyright 2012-2025 Thomas Park
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 * Based on Bootstrap
 */


body {
  left: 10%;
	right: 10%;
	text-align: left;
	z-index: 0;
  margin: 0;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #dee2e6;
  background-color: black;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  min-height: 100vh;
  /* background-image: linear-gradient(#17082e 0%, #1a0933 7%, #1a0933 80%, #0c1f4c 100%); */
}

:root {
  --glow-green: #1AEF6C;
  --glow-pink: #A80069;
  --glow-purple: #63298E;
  --glow-cyan: #087CA7;
  --glow-red: #EE2677;
  --glow-yellow: #ffda6a;
}

hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, #66ffee, #a98eda);
  opacity: 0.4;
  margin: 2rem 0;
  box-shadow: 0 0 4px #66ffee;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Courier New', monospace;
  color: var(--glow-purple);
  text-shadow: 0 0 2px var(--glow-purple);
  font-weight: 600;
  line-height: 1.2;
}

h1 { 
  color: var(--glow-purple);
  font-size: 2.5rem; 
  }
  
h2 { 
  color: var(--glow-pink);
  font-size: 2rem; 
  }
  
h3 { 
  color: white;
  font-size: 1.6rem; 
  }
  
h4 { 
  color: var(--glow-cyan);
  font-size: 1.3rem; 
  }
  
h5 { 
  color: var(--glow-red);
  font-size: 1.1rem; 
  margin: 0;
  }
  
h6 { 
  color: var(--glow-green);
  font-size: 1rem; 
  }

p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.6;
}

ol,
ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

dl {
  text-align: left !important;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

dt {
  text-align: left !important;
  font-weight: bold;
  color: #66ffee;
  margin-top: 0.5rem;
  margin-left: 2rem;
}

dd {
  text-align: left !important;
  margin-left: 4rem;
  color: #ccc;
}

blockquote {
  margin: 1rem 0;
  padding: 0.5rem 1rem;
  border-left: 4px solid #a98eda;
  color: #baa5e1;
  font-style: italic;
  background-color: rgba(169, 142, 218, 0.05);
}

b,
strong {
  font-weight: 700;
}

small, .small {
  font-size: 0.85rem;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #66ffee;
  text-decoration: none;
  text-shadow: 0 0 3px #66ffee;
  border-bottom: 1px dashed #66ffee;
}

a:hover {
  color: #8af7b3;
  text-shadow: 0 0 5px #8af7b3;
  border-color: #8af7b3;
}




/* accordion. simple w/ no bootstrap insanity*/

.neon-accordion {
  max-width: 600px;
  margin: 2rem auto;
  font-family: 'Courier New', monospace;
  color: #f0f0f0;
}

.neon-toggle {
  width: 100%;
  background: #0e0e1a;
  border: 2px solid #66ffee;
  padding: 1rem;
  font-size: 1rem;
  font-family: 'Courier New', monospace;
  text-align: left;
  color: #66ffee;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px #66ffee;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.neon-toggle:hover {
  background: #112;
  box-shadow: 0 0 12px #66ffee, 0 0 20px rgba(102, 255, 238, 0.4);
}

.neon-toggle.open {
  background: #1a1a2a;
  box-shadow: 0 0 16px #66ffee, 0 0 32px rgba(102, 255, 238, 0.6);
}

.neon-panel {
  max-height: 0;
  overflow: hidden;
  background: rgba(20, 20, 40, 0.6);
  border-left: 2px solid #66ffee;
  border-right: 2px solid #66ffee;
  border-bottom: none;
  padding: 0 1rem;
  border-radius: 0 0 6px 6px;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.neon-panel.open {
  max-height: 300px;
  border-bottom: 2px solid #66ffee;
  padding: 1rem;
}

.neon-toggle .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  margin-right: 0.5rem;
}

/* When the button is open, rotate the arrow down */
.neon-toggle.open .arrow {
  transform: rotate(90deg); /* ▶ becomes ▼ */
}

/* some custom containers to fidget with */

.neon-card {
  background-color: rgba(20, 20, 40, 0.6);
  border: 2px solid #66ffee;
  border-radius: 10px;
  padding: 1.25rem;
  margin: 1rem auto;
  max-width: 600px;
  box-shadow: 0 0 12px #66ffee, 0 0 24px rgba(102, 255, 238, 0.3);
  color: #f0f0f0;
  font-family: 'Courier New', monospace;
  transition: box-shadow 0.3s ease;
}

.neon-header {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #a98eda;
  text-shadow: 0 0 1px #a98eda;
  border-bottom: 1px solid #a98eda;
  padding-bottom: 0.5rem;
}

.neon-title {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: #66ffee;
  text-shadow: 0 0 2px #66ffee;
}

.neon-text {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.neon-link {
  color: #8af7b3;
  text-decoration: none;
  font-weight: bold;
  text-shadow: 0 0 2px #8af7b3;
  border-bottom: 1px dashed #8af7b3;
  transition: color 0.2s ease;
}

.neon-link:hover {
  color: #baffd2;
  text-shadow: 0 0 4px #baffd2;
}

.neon-footer {
  font-size: 0.9rem;
  margin-top: 1rem;
  border-top: 1px solid #66ffee;
  padding-top: 0.5rem;
  color: #aaa;
}


.glow-card {
  max-width: 22rem;
  margin: 1rem;
  padding: 1rem;
  border: 2px solid #66ffee;
  border-radius: 10px;
  background-color: rgba(10, 10, 20, 0.85);
  box-shadow: 0 0 12px #66ffee;
  font-family: 'Courier New', monospace;
  color: #f0f0f0;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
}

.card-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #66ffee;
  color: #0e0e1a;
  font-weight: bold;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  border-bottom-left-radius: 6px;
  box-shadow: 0 0 6px #66ffee;
  z-index: 2;
}

/*
.glow-card:hover {
  box-shadow: 0 0 18px #66ffee, 0 0 30px rgba(102, 255, 238, 0.4);
  transform: translateY(-2px);
}
*/

.glow-card-header {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #a98eda;
  text-shadow: 0 0 4px #a98eda;
  border-bottom: 1px solid #a98eda;
  padding-bottom: 0.5rem;
}

.glow-card-title {
  color: #66ffee;
  font-size: 1.25rem;
  margin: 0.5rem 0;
  text-shadow: 0 0 3px #66ffee;
}

.glow-card-body p {
  font-size: 1rem;
  line-height: 1.5;
}

.glow-purple {
  border-color: #a98eda;
  box-shadow: 0 0 12px #a98eda;
}
.glow-pink {
  border-color: #f288d4;
  box-shadow: 0 0 12px #f288d4;
}
.glow-cyan {
  border-color: #66ffee;
  box-shadow: 0 0 12px #66ffee;
}
.glow-green {
  border-color: #8af7b3;
  box-shadow: 0 0 12px #8af7b3;
}
.glow-red {
  border-color: #ef9499;
  box-shadow: 0 0 12px #ef9499;
}
.glow-yellow {
  border-color: #ffda6a;
  box-shadow: 0 0 12px #ffda6a;
}


.glow-card-filled {
  max-width: 22rem;
  background-color: rgba(10, 10, 20, 0.85); /* smoky transparent black */
  color: #f0f0f0;
  border-radius: 10px;
  padding: 1.25rem;
  margin: 1rem auto;
  box-shadow: 0 0 12px #66ffee;
  border: 2px solid #66ffee;
  font-family: 'Courier New', monospace;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.glow-card-filled-header {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: cornsilk;
  text-shadow: 0 0 1px black;
  border-bottom: 1px solid black;
  padding-bottom: 0.5rem;
}

.glow-card-filled-title {
  color: cornsilk;
  font-size: 1.25rem;
  margin: 0.5rem 0;
  text-shadow: 0 0 1px black;
}

.glow-card-filled-body p {
  font-size: 1rem;
  line-height: 1.5;
}

.glow-purple-filled {
  background-color: rgba(169, 142, 218, 0.5);
  border-color: #a98eda;
  box-shadow: 0 0 10px #a98eda;
}

.glow-pink-filled {
  background-color: rgba(242, 136, 212, 0.5);
  border-color: #f288d4;
  box-shadow: 0 0 10px #f288d4;
}

.glow-cyan-filled {
  background-color: rgba(102, 255, 238, 0.5);
  border-color: #66ffee;
  box-shadow: 0 0 10px #66ffee;
}

.glow-green-filled {
  background-color: rgba(138, 247, 179, 0.5);
  border-color: #8af7b3;
  box-shadow: 0 0 10px #8af7b3;
}

.glow-yellow-filled {
  background-color: rgba(255, 218, 106, 0.5);
  border-color: #ffda6a;
  box-shadow: 0 0 10px #ffda6a;
}

.glow-red-filled {
  background-color: rgba(239, 148, 153, 0.5);
  border-color: #ef9499;
  box-shadow: 0 0 10px #ef9499;
}


.glow-card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}



.card-locked {
  opacity: 0.5;
  filter: grayscale(60%);
  cursor: not-allowed;
  position: relative;
  box-shadow: 0 0 6px #666;
}

.card-locked .glow-card-header {
  color: #999;
  text-shadow: none;
}

.locked-text {
  font-style: italic;
  color: #ccc;
}

.unlock-btn {
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background: #a98eda;
  color: #0e0e1a;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  box-shadow: 0 0 6px #a98eda;
  cursor: pointer;
  font-family: 'Courier New', monospace;
  transition: background 0.2s ease;
}

.unlock-btn:hover {
  background: #baa5e1;
  box-shadow: 0 0 10px #a98eda, 0 0 16px rgba(169, 142, 218, 0.4);
}


@keyframes glitch {
  0% {
    transform: translate(0);
    opacity: 1;
  }
  20% {
    transform: translate(1px, -1px);
    opacity: 0.8;
  }
  40% {
    transform: translate(-1px, 1px);
    opacity: 0.6;
  }
  60% {
    transform: translate(1px, 1px);
    opacity: 0.9;
  }
  80% {
    transform: translate(-1px, -1px);
    opacity: 0.7;
  }
  100% {
    transform: translate(0);
    opacity: 1;
  }
}

.glitch-on-hover:hover {
  animation: glitch 0.3s linear 1;
}


.typewriter {
  overflow: hidden;
  white-space: wrap;
  border-right: 2px solid #66ffee;
  animation: typing 2s steps(40, end), blink 0.75s step-end infinite;
  font-family: 'Courier New', monospace;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  from, to { border-color: transparent; }
  50% { border-color: #66ffee; }
}



/* Datapad frame, use "border1, border2, ...4" inside frame, then the container.*/

.datapad-border {
  position: relative;
  width: 95vw;              /* Use viewport width for responsiveness */
  max-width: 58vw;         /* “datapad” size */
  height: 70vh;             /* viewport height */
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
  padding: 40px;
}

.border1, .border2, .border3, .border4 {
  background-color: black;
  position: absolute;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none; /* make sure they don’t block clicks */
}

.border1 {
	background-image: url(/assets/img/edge-bottom-neon.svg);
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40px;
}

.border2 {
	background-image: url(/assets/img/edge-top-neon.svg);
	top: 0;
	left: 0;
	width: 100%;
	height: 40px;
}

.border3 {
	background-image: url(/assets/img/edge-left-neon.svg);
	top: 0;
	left: 0;
	width: 40px;
	height: 100%;
}

.border4 {
	background-image: url(/assets/img/edge-right-neon.svg);
	top: 0;
	right: 0;
	width: 40px;
	height: 100%;
}

.datapad-container {
  background-image: url(/assets/img/itch-io-background.jpg);
	text-align: left;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 60px;       /* Slightly smaller padding on small screens */
  box-sizing: border-box;
  z-index: 1;
  position: relative;
}

/* Keep the text outside of frame in the central viewport */

.no-container-header {
	text-align: left;
	position: relative;
  width: 95vw;              /* Use viewport width for responsiveness */
  max-width: 58vw;         
  height: auto;
  margin: 0 auto;
  box-sizing: border-box;

}

/* center banner image with constraint...hmmm...this needs to not do this on mobile. */
.banner-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 58%;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .datapad-border {
    max-width: none;       /* Remove the desktop limit */
    width: 95vw;          /* Full screen width on mobile */
    height: 80vh;          /* height */
    padding: 40px 20px;    /* slightly less padding on small screens */
  }
  
    .datapad-container {
    padding: 40px;
    font-size: 14px;
  }
  
  .no-container-header {
    max-width: none;
  }
  .banner-center {
    width: 95%;
  }
}


/* making a pretty in pink scrollbar eeee */

::-webkit-scrollbar {
    width: .5em;
    height: .5em
}
::-webkit-scrollbar-button {
    background: #000000
}
::-webkit-scrollbar-track-piece {
    background: #271C2D
}
::-webkit-scrollbar-thumb {
    background: #780050
}


/* Let the crazy begin: Let's try to nudge visitors with Fate obnoxiousness bwahahah... */
.fate-alert {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 999;
  width: 280px;
  font-family: 'Courier New', monospace;
}

.fate-box {
  background-color: #ff66cc;
  color: black;
  padding: 12px 16px;
  border-radius: 10px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 8px #ff66cc, 0 0 16px #ff66cc;
  transition: all .2s ease-in-out;
  animation: flicker 2s infinite;
}

.fate-box:hover {
  box-shadow: 0 0 12px #ff99dd, 0 0 24px #ff66cc;
}

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

.hidden {
  display: none;
}

.fate-alert.visible {
  opacity: 1;
}

/* Hide Fate on mobile? 
@media screen and (max-width: 768px) {
  .fate-alert {
    display: none;
  }
}*/


/* Slide out nav bar from the side: not using but may use in the future? */
/*
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 100vh;
  text-align: center;
  background: radial-gradient(circle at top left, #0e0e1a 30%, #000000 100%);
  border-right: 2px solid #CD3778;
  box-shadow: inset 0 0 10px #CD3778, 2px 0 20px #CD3778;
  z-index: 999;
  padding: 20px 10px;
  overflow: hidden;
  transition: width 0.3s ease;
}

.sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.02) 0px,
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px,
    transparent 4px
  );
  pointer-events: none;
  z-index: 1;
}

.sidebar-links {
  list-style: none;
  font-family: 'Courier New', Courier, monospace;
  font-size: 16px;
  padding: 0;
  margin-top: 0px;
}

.sidebar-links li {
  margin: 1rem 0;
}

.sidebar-links li:first-child {
  margin-bottom: 3rem;
}

.sidebar-links a {
  display: flex;
  align-items: center;
  color: #f0f0f0;
  text-decoration: none;
  gap: 12px;
  font-size: 16px;
  transition: all 0.2s ease;
}

.sidebar .icon {
  font-size: 1.4rem;
  display: inline-block;
  width: 24px;
  text-align: center;
}

.sidebar .label {
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

*/

/* Collapsed state */
/*
body.sidebar-collapsed .sidebar {
  width: 60px;
  padding: 20px 5px;
}

body.sidebar-collapsed .sidebar .label {
  opacity: 0;
  pointer-events: none;
}

body.sidebar-collapsed .sidebar-links a {
  justify-content: center;
  padding: 0px;
}

body.sidebar-collapsed .sidebar-links .icon {
  text-align: center;
  width: 100%;
}

body.sidebar-collapsed .sidebar-links .label {
  display: none;
}
*/

/* Main content shifts */
/*
.datapad-content {
  transition: margin-left 0.3s ease;
  margin-left: 250px;
}

body.sidebar-collapsed .datapad-content {
  margin-left: 60px;
}
*/
/*
#sidebarToggle {
  background: #0a0a14;
  border: 1px solid #CD3778;
  color: #CD3778;
  box-shadow: 0 0 6px #CD3778;
  font-size: 18px;
  border-radius: 6px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto; 
} 
*/

/* Toggle Button */
#hudToggle {
  background-color: #0a0a14;
  color: #CD3778;
  border: 1px solid #5F2873;
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 6px;
  margin: 1rem auto;
  display: block;
  cursor: pointer;
  box-shadow: 0 0 6px #5F2873;
}

.hud-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  position: relative;
  background: radial-gradient(circle at top left, #0e0e1a 30%, #000000 100%);
  border-bottom: none;
  box-shadow: inset 0 0 10px #CD3778, 0 2px 20px #CD3778;
  padding: 0px;
  margin: 0 auto;
  width: 100%;
  max-width: 50vw;
  text-align: center;
  z-index: 999;
  border-radius: 0 0 12px 12px;
}

/* When expanded */
.hud-panel.open {
    padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  max-height: 600px; /* Or larger, based on content */
  border-bottom: 2px solid #CD3778;
}

/* Scanline effect (adapted from sidebar::before) */
.hud-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.02) 0px,
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px,
    transparent 4px
  );
  pointer-events: none;
  z-index: 1;
}


/* Links inside HUD */
.hud-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.hud-links a {
  display: inline-block;
  padding: 10px 14px;
  background-color: #5F2873;
  border: 0px solid #66ffee;
  border-radius: 8px;
  color: #f0f0f0;
  text-decoration: none;
  font-family: 'Courier New', Courier, monospace;
}

.hud-links a:hover {
  background-color: #112;
  border-color: #ff66cc;
  color: #ffccff;
  box-shadow: 0 0 6px #ff66cc;
}

@media screen and (max-width: 1000px) {
  .hud-panel {
    width: 95%;
    max-width: 90vw;
    border-radius: 0;
    padding: 0;
  }
}


/* blockquotessss! */


.blockquote {
  text-align: center;
  margin: 2rem auto;
  position: relative;
  font-size: 1.15rem;
  font-style: normal;
  color: #f0f0f0;
  padding: 1rem;
  max-width: 300px;
  background-color: rgba(10, 10, 20, 0.4);
  border-right: 3px solid #66ffee;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(102, 255, 238, 0.3);
}

.blockquote-left {
  max-width: 50%;
  margin: 2rem auto 2rem 0; /* pulls to the left */
  text-align: left;
  border-left: 3px solid #ef9499;
  border-right: none;
}

.blockquote-center {
  max-width: 50%;
  margin: 1rem auto; 
  text-align: center;
  border-left: 3px solid #ef9499;
  border-right: 3px solid #ef9499;
}

.blockquote-right {
  max-width: 50%;
  margin: 2rem 0 2rem auto;
  text-align: right;
  border-left: none;
  border-right: 3px solid #ef9499;
}

.blockquote p {
  margin: 0;
  text-shadow: 0 0 1px rgba(102, 255, 238, 0.4);
}

.blockquote-footer {
  font-size: 0.85rem;
  text-align: right;
  color: #66ffee;
  margin-top: 0.5rem;
  max-width: 50vw;
  display: block;
  padding-top: 0.5rem;
  padding-right: 1rem;
  text-shadow: 0 0 2px rgba(102, 255, 238, 0.4);
}

.blockquote-footer::before {
  content: "~ ";
  font-size: 18px;
}

.blockquote-footer cite {
  font-style: normal;
  color: #a98eda;
  font-weight: 600;
  text-shadow: 0 0 2px #a98eda;
}

.blockquote.green {
  border-right-color: #8af7b3;
  box-shadow: 0 0 6px rgba(138, 247, 179, 0.3);
}

.blockquote.red {
  border-right-color: #ef9499;
  box-shadow: 0 0 6px rgba(239, 148, 153, 0.3);
}

.blockquote.yellow {
  border-right-color: #ffda6a;
  box-shadow: 0 0 6px rgba(255, 218, 106, 0.3);
}


@media (max-width: 768px) {
  .blockquote {
    max-width: 90%;
    margin: 1.5rem auto;
  }
}

/* customize character quotes */
.characterquote-footer {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  text-shadow: 0 0 2px rgba(102, 255, 238, 0.4);
}
.characterquote-footer::before {
  content: "— ";
}


.characterquote-fate {
  border: 2px dashed #f288d4;
  box-shadow: 0 0 6px #f288d4, 0 0 20px rgba(242, 136, 212, 0.3);
  animation: glitch 1.8s infinite;
  color: #f288d4;
  text-shadow: 0 0 3px #f288d4;
}

.characterquote-jetl {
  border-left: 4px solid #8af7b3;
  text-align: left;
  color: #8af7b3;
  box-shadow: 0 0 6px rgba(138, 247, 179, 0.2);
  background-color: rgba(5, 25, 20, 0.5);
  font-family: 'Georgia', serif;
}


.characterquote-dred {
  border-left: 4px solid #66ffee;
  font-family: 'Courier New', monospace;
  background-color: rgba(5, 15, 20, 0.4);
  text-align: left;
  color: #c0fefe;
  letter-spacing: 0.03em;
}

.characterquote-sass {
  border-right: 4px dotted #ffda6a;
  border-left: 1px solid #ffda6a;
  background-color: rgba(255, 218, 106, 0.08);
  color: #ffda6a;
  text-align: right;
  font-weight: 600;
  text-shadow: 0 0 4px #ffda6a;
}

.blockquote-warning {
  border-left: 4px solid #ef9499;
  background-color: rgba(239, 148, 153, 0.1);
  color: #ef9499;
  text-align: left;
}


.blockquote-classifiedlabel {
  background-color: rgba(20, 20, 20, 0.8);
  color: #999;
  border: 1px solid #333;
  font-family: 'Courier New', monospace;
  text-align: left;
  position: relative;
}
.blockquote-classifiedlabel::before {
  content: "CLASSIFIED";
  position: absolute;
  top: -0.8rem;
  left: 1rem;
  font-size: 0.75rem;
  color: red;
  background: black;
  padding: 0 0.25rem;
  letter-spacing: 1px;
}


/* crap I've got to set up rows and blocks for flex and flex-wrap */

.image-blurb-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: 100%;
  box-sizing: border-box;
}

.image-text-block {
  flex: 1 1 300px;
  max-width: 600px;
  text-align: center;
  overflow: hidden;
}

.image-text-block img {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 0 12px var(--glow-purple, 0.4);
  transition: box-shadow 0.4s ease;
}

.image-text-block img:hover {
  box-shadow: 0 0 12px var(--glow-red), 0 0 20px var(--glow-pink);
} 

.blurb {
  margin-top: 1rem;
  font-size: 1rem;
  color: #ccc;
  padding: 0 1rem;
}




