@font-face
{
  font-family: "Agency FB";
  src: url("fontudpate/AgencyFB-Bold.woff2") format("woff2"),
    url("fontudpate/AgencyFB-Bold.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face
{
  font-family: "Fixedsys Excelsior";
  src: url("fontudpate/FSEX300.woff2") format("woff2"),
    url("fontudpate/FSEX300.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
/* ttf fall backs just in case */





*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body
{
  background: #1A2A4C url("background.webp") repeat;
  background-size: 512px 1024px;
  color: #B8D3EE;
  font-family: "Agency FB", "Saira Condensed", "Arial Narrow", sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.02em;
  min-height: 100vh;
  padding: 32px;
}



.window
{
  width: 100%;
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  background: #060C18;
  border: 1px solid #2A4068;
  border-radius: 4px;
  overflow: hidden;
  /* box-shadow: 0 0 70px rgba(52, 200, 214, 0.15), 0 8px 40px rgba(0, 0, 0, 0.6); */
  box-shadow: 0 0 2px rgba(127, 183, 210, 0.55), 0 0 9px rgba(127, 183, 210, 0.4), 0 0 26px rgba(127, 183, 210, 0.24), 0 0 55px rgba(127, 183, 210, 0.13), 0 8px 40px rgba(0, 0, 0, 0.55);
}

.titlebar
{
  background: #0C1222;
  color: #B8D3EE;
  font-size: 15px;
  font-weight: 700;
  padding: 8px 12px;
  letter-spacing: 0.04em;
}

.tabbar
{
  background: #0C1222;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 8px 8px 0 8px;
  border-bottom: 1px solid #2A4068;
}



.tab
{
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  color: #B8D3EE;
  background: #141C2E;
  border: none;
  border-radius: 10px 10px 0 0;
  padding: 7px 18px 8px 18px;
  cursor: pointer;
  transition: background 0.1s, color 0.1s;
}

.tab:hover
{
  background: #FCD75F;
  color: #060C18;
}

.tab.active
{
  background: #F4C846;
  color: #060C18;
}





.tab:focus-visible
{
  outline: 2px solid #F4C846;
  outline-offset: -2px;
}

.pane
{
  flex: 1;
  padding: 26px 24px 30px 24px;
}

.pane.hidden
{
  display: none;
}

.info-grid
{
  display: flex;
  gap: 28px;
  align-items: flex-start;
}



.portrait-box
{
  flex: 0 0 170px;
  border: 2px solid #F4C846;
  border-radius: 12px;
  overflow: hidden;
  background: #1A2A4C;
  line-height: 0;
}

.portrait-box img
{
  width: 100%;
  height: auto;
  display: block;
}





.info-text
{
  flex: 1;
  min-width: 0;
}

.info-text h1
{
  color: #F4C846;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}



.info-text p
{
  margin-bottom: 13px;
  line-height: 1.45;
}

.red
{
  color: #E04545;
  font-weight: 700;
}

.link-stack a
{
  display: block;
  margin-bottom: 4px;
}

.accent-link
{
  color: #6CB2F0;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.accent-link:hover
{
  color: #B8D3EE;
}
.accent-link:active
{
  color: #84A8CE;
}

.ship-box
{
  margin: 24px auto 0 auto;
  width: min(100%, 1100px);
  border: 2px solid #F4C846;
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
}

.ship-box img
{
  width: 100%;
  height: auto;
  display: block;
}







@media (max-width: 620px)
{
  .info-grid
  {
    flex-direction: column;
  }
  .portrait-box
  {
    flex: none;
    width: 170px;
  }
}



/*rep stuffs*/

.rep-layout
{
  display: flex;
  gap: 36px;
  align-items: flex-start;
}

.rep-list-col
{
  flex: 0 0 340px;
  min-width: 0;
}

.rep-heading
{
  color: #F4C846;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 14px;
}

.rep-list
{
  display: flex;
  flex-direction: column;
  gap: 6px; /* 8 is thematically better but 6 until we expand the rep list*/
  max-height: 70vh;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;     /* of all the shit why has this box given me the most grief */
  scrollbar-color: #F4C846 #1A2A4C;
}

.rep-list::-webkit-scrollbar,
.comms-area::-webkit-scrollbar
{
  width: 10px;
}
.rep-list::-webkit-scrollbar-track,
.comms-area::-webkit-scrollbar-track
{
  background: #1A2A4C;
  border-radius: 3px;
}
.rep-list::-webkit-scrollbar-thumb,
.comms-area::-webkit-scrollbar-thumb
{
  background: #F4C846;
  border-radius: 3px;
}
.rep-list::-webkit-scrollbar-thumb:hover,
.comms-area::-webkit-scrollbar-thumb:hover
{
  background: #FCD75F;
}


.rep-row
{
  font: inherit;
  display: block;
  width: 100%;
  background: #141C2E;
  border: 1px solid #2A4068;
  border-radius: 6px;
  padding: 8px 10px 9px 10px;
  cursor: pointer;
  text-align: center;
  transition: background 0.1s, border-color 0.1s;
}

.rep-row:hover
{
  background: #1E283E;
  border-color: #84A8CE;
}

.rep-row.selected
{
  border-color: #F4C846;
  background: #1E283E;
}

.rep-row:focus-visible
{
  outline: 2px solid #F4C846;
  outline-offset: 1px;
}

.rep-name
{
  display: block;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 7px;
}

.rep-friendly
{
  color: #6FD65F;
}
.rep-neutral
{
  color: #B8D3EE;
}
.rep-hostile
{
  color: #E04545;
}

.rep-bar
{
  display: flex;
  gap: 2px;
}

.seg
{
  flex: 1;
  height: 9px;
  border-radius: 2px;
  background: #1A2A4C;
  border: 1px solid #2A4068;
}

.seg.filled
{
  border-color: transparent;
}


.rep-detail-col
{
  flex: 1;
  min-width: 0;
  background: #0C1222;
  border: 1px solid #2A4068;
  border-radius: 8px;
  padding: 20px 24px 24px 24px;
}

.detail-name
{
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.rep-detail-col h3
{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.rel-allies
{
  color: #6FD65F;
}
.rel-friendlies
{
  color: #B9D982;
}
.rel-hostiles
{
  color: #E88A7A;
}
.rel-enemies
{
  color: #E04545;
}

.rel-names
{
  color: #B8D3EE;
  margin-bottom: 16px;
}

.detail-desc
{
  color: #84A8CE;
  line-height: 1.45;
  border-top: 1px solid #2A4068;
  padding-top: 14px;
  margin-top: 4px;
}

@media (max-width: 760px)
{
  .rep-layout
  {
    flex-direction: column;
  }
  .rep-list-col
  {
    flex: none;
    width: 100%;
  }
  .rep-detail-col
  {
    width: 100%;
  }
}












.suit-heading
{
  color: #F4C846;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

.suit-grid
{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.suit-thumb
{
  font: inherit;
  padding: 0;
  border: 2px solid #F4C846;
  border-radius: 12px;
  overflow: hidden;
  background: #1A2A4C;
  cursor: pointer;
  line-height: 0;
  aspect-ratio: 1 / 1;
  transition: border-color 0.1s, transform 0.1s, box-shadow 0.1s;
}

.suit-thumb img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.suit-thumb:hover
{
  border-color: #FCD75F;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.suit-thumb:focus-visible
{
  outline: 2px solid #F4C846;
  outline-offset: 2px;
}




.lightbox
{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(6, 12, 24, 0.92);
  cursor: zoom-out;
  z-index: 1000;
}

.lightbox.open
{
  display: flex;
}

.lightbox-img
{
  max-width: 95vw;
  max-height: 95vh;
  width: auto;
  height: auto;
  border: 2px solid #F4C846;
  border-radius: 12px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
}


@media (max-width: 620px)
{
  .suit-grid
  {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}








.comms-heading
{
  color: #F4C846;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

.comms-box
{
  max-width: 720px;
  /*max-width:480px;*/
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}



.comms-label
{
  color: #F4C846;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
}

.comms-input,
.comms-area
{
  font: inherit;
  color: #B8D3EE;
  background: #141C2E;
  border: 1px solid #2A4068;
  border-radius: 6px;
  padding: 10px 12px;
  width: 100%;
}

.comms-area
{
  min-height: 120px;
  resize: none;
  line-height: 1.4;
  scrollbar-color: #F4C846 #1A2A4C;
}


.comms-input:focus,
.comms-area:focus
{
  /*min-height:52px;*/
  outline: none;
  border-color: #F4C846;
  background: #1E283E;
}

.comms-btns
{
  display: flex;
  gap: 8px;
  margin-top: 6px;
  justify-content: space-between;
}

.comms-btn
{
  font: inherit;
  font-weight: 700;
  color: #060C18;
  background: #F4C846;
  border: none;
  border-radius: 8px;
  padding: 9px 22px;
  cursor: pointer;
  transition: background 0.1s;
}

.comms-btn:hover
{
  background: #FCD75F;
}
.comms-btn:active
{
  background: #E0B63A;
}

.comms-btn:focus-visible
{
  outline: 2px solid #F4C846;
  outline-offset: 2px;
}

.comms-copy
{
  align-self: flex-start;
  background: #141C2E;
  color: #B8D3EE;
  border: 1px solid #2A4068;
}

.comms-copy:hover
{
  background: #1E283E;
  border-color: #F4C846;
}

.comms-status
{
  min-height: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.comms-ok
{
  color: #6FD65F;
}
.comms-bad
{
  color: #E04545;
}

@media (max-width: 620px)
{
  .comms-btns
  {
    flex-wrap: wrap;
  }
}

.comms-gen
{
  align-self: flex-start;
  background: #141C2E;
  color: #B8D3EE;
  border: 1px solid #2A4068;
  padding: 8px 16px;
}

.comms-gen:hover
{
  background: #1E283E;
  border-color: #F4C846;
}

.comms-enc
{
  background: #6FD65F;
  color: #060C18;
}

.comms-enc:hover
{
  background: #86E077;
}
.comms-enc:active
{
  background: #5BC24C;
}

.comms-dec
{
  background: #E04545;
  color: #060C18;
}


.comms-dec:hover
{
  background: #E86A6A;
}
.comms-dec:active
{
  background: #C93A3A;
}













.login-btn
{
  align-self: flex-start;
  background: #141C2E;
  color: #B8D3EE;
  border: 1px solid #2A4068;
}


.login-btn:hover
{
  background: #1E283E;
  border-color: #F4C846;
}

.login-row
{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}

.login-forgot
{
  color: #84A8CE;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.04em;
}


.login-forgot:hover
{
  color: #B8D3EE;
}

.login-forgot-msg
{
  align-self: flex-end;
  color: #84A8CE;
  font-size: 14px;
  min-height: 18px;
  letter-spacing: 0.04em;
}

.login-overlay
{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(6, 12, 24, 0.6);
  z-index: 1000;
  transition: opacity 0.6s;
}


.login-overlay.open
{
  display: flex;
}
.login-overlay.fade-out
{
  opacity: 0;
}

.login-overlay-text
{
  color: #6FD65F;
  font-size: clamp(34px, 8vw, 58px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}

.login-overlay-text.kidding
{
  /*font-size:80px;*/
  color: #B8D3EE;
}

/* .login-overlay-text.denied
{ 
animation:login-shake 0.4s 3;
} */

.login-overlay-text.denied
{
  color: #E04545;
  animation: login-shake 0.13s linear infinite;
}



@keyframes login-shake
{
  0%,
  100%
  {
    transform: translate(0, 0) rotate(0deg);
  }
  20%
  {
    transform: translate(-13px, 7px) rotate(-3deg);
  }
  40%
  {
    transform: translate(13px, -8px) rotate(3deg);
  }
  60%
  {
    transform: translate(-10px, 5px) rotate(-2deg);
  }
  80%
  {
    transform: translate(11px, -5px) rotate(2deg);
  }
}

.window.glitch
{
  animation: page-glitch 0.1s linear infinite;
}

/* .window.glitch
{ 
animation:page-glitch 0.4s infinite;
} */

@keyframes page-glitch
{
  0%,
  100%
  {
    transform: translate(0, 0) skewX(0deg);
  }
  10%
  {
    transform: translate(-22px, 11px) skewX(-4deg);
    opacity: 0.82;
  }
  20%
  {
    transform: translate(24px, -15px) skewX(3deg);
  }
  30%
  {
    transform: translate(-28px, -9px) skewX(-5deg);
    opacity: 0.78;
  }
  40%
  {
    transform: translate(20px, 17px) skewX(4deg);
  }
  50%
  {
    transform: translate(-26px, 13px) skewX(-3deg);
    opacity: 0.9;
  }
  60%
  {
    transform: translate(28px, -11px) skewX(5deg);
  }
  70%
  {
    transform: translate(-18px, -15px) skewX(-4deg);
    opacity: 0.8;
  }
  80%
  {
    transform: translate(22px, 15px) skewX(3deg);
  }
  90%
  {
    transform: translate(-24px, -7px) skewX(-5deg);
    opacity: 0.86;
  }
}

body.no-scroll
{
  overflow: hidden;
}


.window-shell
{
  max-width: 1400px;
  height: calc(100vh - 64px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.window
{
  position: relative;
  z-index: 1;
  height: 100%;
  background-color: rgba(6, 12, 24, 0.86);
}

/* .window
{ 
background-color:rgba(6,12,24,0.7); 
} */

.pane
{
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #F4C846 #1A2A4C;
}

/* .pane
{ 
overflow-y:scroll;
} */

.titlebar,
.tabbar,
.hud-bar,
.ticker
{
  flex-shrink: 0;
}

/* .hud-bar
{ 
flex-shrink:1;
} */

.pane::-webkit-scrollbar
{
  width: 10px;
}
.pane::-webkit-scrollbar-track
{
  background: #1A2A4C;
  border-radius: 3px;
}
.pane::-webkit-scrollbar-thumb
{
  background: #F4C846;
  border-radius: 3px;
}
.pane::-webkit-scrollbar-thumb:hover
{
  background: #FCD75F;
}

.ship-box
{
  width: fit-content;
  max-width: 100%;
}

/* .ship-box
{ 
width:min(100%, 1100px); 
} */

/* .info-box
{ 
max-width:980px; 
} 

.info-box
{
  max-width: 1280px;
  margin: 0 auto;
  background: #0C1222;
  border: 1px solid #2A4068;
  border-radius: 8px;
  padding: 24px;
}

/* .info-box
{ 
max-width:100%; 
} */

#starsphere
{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.titlebar
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.titlebar-right
{
  display: flex;
  align-items: center;
  gap: 14px;
}

.ship-time
{
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #84A8CE;
  font-family: "Fixedsys Excelsior", "SFMono-Regular", "Consolas", "Roboto Mono", ui-monospace, monospace; 
  font-variant-numeric: tabular-nums;   /* ugh */
}

.win-btns
{
  display: flex;
  gap: 6px;
}

.win-btn
{
  font: inherit;
  font-size: 12px;
  line-height: 1;
  width: 22px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B8D3EE;
  background: #141C2E;
  border: 1px solid #2A4068;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.1s, color 0.1s, border-color 0.1s;
}

.win-btn:hover
{
  background: #1E283E;
}
.win-min:hover
{
  border-color: #F4C846;
}
.win-max:hover
{
  border-color: #6FD65F;
}
.win-close:hover
{
  background: #E04545;
  color: #060C18;
  border-color: #E04545;
}

.window.minimizing
{
  animation: win-min-spring 0.5s ease;
}
.window.maximizing
{
  animation: win-max-pop 0.4s ease;
}

@keyframes win-min-spring
{
  0%
  {
    transform: scale(1);
  }
  40%
  {
    transform: scale(0.86);
  }
  70%
  {
    transform: scale(1.03);
  }
  100%
  {
    transform: scale(1);
  }
}

@keyframes win-max-pop
{
  0%
  {
    transform: scale(1);
  }
  50%
  {
    transform: scale(1.04);
  }
  100%
  {
    transform: scale(1);
  }
}

.hud-frame
{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hud-frame span
{
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid #F4C846;
  opacity: 0.7;
}

.hud-frame span:nth-child(1)
{
  top: -9px;
  left: -9px;
  border-right: none;
  border-bottom: none;
}
.hud-frame span:nth-child(2)
{
  top: -9px;
  right: -9px;
  border-left: none;
  border-bottom: none;
}
.hud-frame span:nth-child(3)
{
  bottom: -9px;
  left: -9px;
  border-right: none;
  border-top: none;
}
.hud-frame span:nth-child(4)
{
  bottom: -9px;
  right: -9px;
  border-left: none;
  border-top: none;
}

/* .hud-frame span:nth-child(1)
{ 
top:6px; 
left:6px; 
} */

.hud-bar
{
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 6px 14px;
  background: #0C1222;
  border-top: 1px solid #2A4068;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #84A8CE;
  text-transform: uppercase;
}

.hud-secure
{
  display: flex;
  align-items: center;
  gap: 7px;
  color: #6FD65F;
}

.hud-dot
{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6FD65F;
  animation: hud-pulse 1.4s ease-in-out infinite;
}

@keyframes hud-pulse
{
  0%,
  100%
  {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(111, 214, 95, 0.6);
  }
  50%
  {
    opacity: 0.35;
    box-shadow: 0 0 0 5px rgba(111, 214, 95, 0);
  }
}

.hud-sig
{
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}

.hud-sig i
{
  width: 3px;
  background: #2A4068;
}
.hud-sig i:nth-child(1)
{
  height: 3px;
}
.hud-sig i:nth-child(2)
{
  height: 5px;
}
.hud-sig i:nth-child(3)
{
  height: 7px;
}
.hud-sig i:nth-child(4)
{
  height: 9px;
}
.hud-sig i:nth-child(5)
{
  height: 12px;
}
.hud-sig i.lit
{
  background: #F4C846;
}

.hud-ping
{
  color: #B8D3EE;
}

/* .hud-coords
{ 
display:none; 
} */

.hud-bark
{
  margin-left: auto;
  color: #E04545;
  opacity: 0;
  transition: opacity 0.3s;
}

.hud-bark.show
{
  opacity: 1;
}

.ticker
{
  overflow: hidden;
  white-space: nowrap;
  background: #060C18;
  border-top: 1px solid #2A4068;
  padding: 5px 0;
}

.ticker-track
{
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #6CB2F0;
  animation: ticker-scroll 34s linear infinite;
}

/* .ticker-track
{ 
animation-duration:12s; 
} */

@keyframes ticker-scroll
{
  from
  {
    transform: translateX(0);
  }
  to
  {
    transform: translateX(-100%);
  }
}

.portrait-box img
{
  animation: portrait-idle 5s ease-in-out infinite;
}

@keyframes portrait-idle
{
  0%,
  100%
  {
    transform: scale(1);
  }
  50%
  {
    transform: scale(1.03);
  }
}

.tab
{
  position: relative;
  flex: none;
  width: 150px;
  text-align: center;
}

/* 
.tab
{ 
width:120px; 
} */

@property --hud-angle
{
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.tab.active::after
{
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px 10px 0 0;
  padding: 2px;
  background: conic-gradient(from var(--hud-angle), transparent 0deg 300deg, #FCD75F 345deg, #FFF3C0 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: hud-trace 2.4s linear infinite;
  pointer-events: none;
}

@keyframes hud-trace
{
  to
  {
    --hud-angle: 360deg;
  }
}

.crt
{
  position: fixed;
  inset: 0;
  z-index: 400;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(6, 12, 24, 0) 50%, rgba(6, 12, 24, 0.19) 50%),
    radial-gradient(ellipse at center, rgba(6, 12, 24, 0) 62%, rgba(6, 12, 24, 0.4) 100%);
  background-size: 100% 5px, cover;
  background-repeat: repeat, no-repeat;
  animation: crt-flicker 4s steps(40) infinite;
}

/* .crt
{ 
background-size:100% 2px, cover; 
} */






@keyframes crt-flicker
{
  0%,
  100%
  {
    opacity: 1;
  }
  48%
  {
    opacity: 0.97;
  }
  50%
  {
    opacity: 0.92;
  }
  52%
  {
    opacity: 0.98;
  }
}

.crt::before
{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(to bottom, rgba(184, 211, 238, 0) 0%, rgba(184, 211, 238, 0.05) 50%, rgba(184, 211, 238, 0) 100%);
  pointer-events: none;
  animation: crt-sweep 9s linear infinite;
}

/* .crt::before
{ 
height:90px; 
} */

@keyframes crt-sweep
{
  0%
  {
    transform: translateY(-30px);
  }
  78%
  {
    transform: translateY(108vh);
  }
  100%
  {
    transform: translateY(108vh);
  }
}

#crt-noise
{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 401;
  pointer-events: none;
  opacity: 0.025;
  image-rendering: pixelated;
}


.boot
{
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #030710;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  transition: opacity 0.65s ease 0.25s;
}

.boot.done
{
  opacity: 0;
  pointer-events: none;
}



.boot-text
{
  font-family: "Agency FB", "Saira Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #6FD65F;
  white-space: pre-wrap;
  width: 100%;
  min-height: 10.5em;
  text-shadow: 0 0 8px rgba(111, 214, 95, 0.55);
}

.boot-cursor
{
  display: inline-block;
  width: 9px;
  height: 1.05em;
  background: #6FD65F;
  vertical-align: text-bottom;
  animation: boot-blink 0.9s steps(1) infinite;
}

@keyframes boot-blink
{
  0%,
  50%
  {
    opacity: 1;
  }
  50.01%,
  100%
  {
    opacity: 0;
  }
}

@media (max-width: 620px)
{
  .titlebar
  {
    flex-wrap: wrap;
    gap: 6px;
  }
  .ship-time
  {
    font-size: 11px;
  }
  .hud-bar
  {
    gap: 12px;
    font-size: 10px;
  }
  .tab
  {
    width: auto;
  }
}




.boot-inner
{
  width: 100%;
  position: relative;
  z-index: 0;
  transition: opacity 0.3s ease;
}

.boot-header
{
  font-family: "Agency FB", "Saira Condensed", "Arial Narrow", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F4C846;
  text-shadow: 0 0 8px rgba(244, 200, 70, 0.4);
  padding-bottom: 10px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(244, 200, 70, 0.25);
}

.boot-screen::before
{
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    linear-gradient(rgba(2, 5, 12, 0) 50%, rgba(2, 5, 12, 0.28) 50%),
    radial-gradient(ellipse at center, rgba(2, 5, 12, 0) 55%, rgba(2, 5, 12, 0.55) 100%);
  background-size: 100% 4px, cover;
  background-repeat: repeat, no-repeat;
  animation: boot-flicker 2.6s steps(40) infinite;
}



@keyframes boot-flicker
{
  0%,
  100%
  {
    opacity: 1;
  }
  46%
  {
    opacity: 0.9;
  }
  48%
  {
    opacity: 0.8;
  }
  50%
  {
    opacity: 0.92;
  }
}

.boot-frame
{
  position: absolute;
  inset: 8px;
  pointer-events: none;
  z-index: 2;
}

.boot-frame span
{
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid #F4C846;
  opacity: 0.5;
}

.boot-frame span:nth-child(1)
{
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}
.boot-frame span:nth-child(2)
{
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}
.boot-frame span:nth-child(3)
{
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}
.boot-frame span:nth-child(4)
{
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}





.boot-screen
{
  position: relative;
  width: min(680px, 92vw);
  padding: 26px 30px 30px 30px;
  background: #060E1A;
  border: 1px solid #2A4068;
  border-radius: 6px;
  overflow: hidden;
  /* box-shadow: 0 0 60px rgba(111, 214, 95, 0.12), 0 12px 44px rgba(0, 0, 0, 0.7);*/
  box-shadow: 0 0 2px rgba(127, 183, 210, 0.55), 0 0 9px rgba(127, 183, 210, 0.4), 0 0 26px rgba(127, 183, 210, 0.24), 0 0 55px rgba(127, 183, 210, 0.13), 0 12px 44px rgba(0, 0, 0, 0.7);
  transform-origin: center center;
  animation: crt-on 0.85s ease-out;
  transition: width 0.8s cubic-bezier(0.19, 1, 0.22, 1), height 0.8s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.7s ease;
}






@keyframes crt-on
{
  0%
  {
    transform: scale(0.03, 0.006);
    opacity: 0;
    filter: brightness(26);
  }
  12%
  {
    transform: scale(0.03, 0.006);
    opacity: 1;
    filter: brightness(26);
  }
  32%
  {
    transform: scale(1, 0.006);
    filter: brightness(26);
  }
  58%
  {
    transform: scale(1, 1);
    filter: brightness(16);
  }
  80%
  {
    filter: brightness(3.5);
  }
  100%
  {
    transform: scale(1, 1);
    opacity: 1;
    filter: brightness(1);
  }
}





.boot.done .boot-screen
{
  width: min(1400px, calc(100vw - 64px));
  height: calc(100vh - 64px);
  box-shadow: 0 0 2px rgba(127, 183, 210, 0.55), 0 0 9px rgba(127, 183, 210, 0.4), 0 0 26px rgba(127, 183, 210, 0.24), 0 0 55px rgba(127, 183, 210, 0.13), 0 8px 40px rgba(0, 0, 0, 0.55);
}


.boot.done .boot-inner
{
  opacity: 0;
}

.edge-glow
{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 450;
  box-shadow:
    inset 0 0 2px rgba(127, 183, 210, 0.4),
    inset 0 0 11px rgba(127, 183, 210, 0.2),
    inset 0 0 38px rgba(127, 183, 210, 0.09);
}

.ship-box img
{
  width: auto;
  max-width: 100%;
  max-height: max(100px, calc(100vh - 720px));
}

.comms-enc,
.comms-dec
{
  color: #060C18;
  border: 1px solid transparent;
  transition: background 0.1s, border-color 0.1s;
}

.comms-enc:hover,
.comms-dec:hover
{
  border-color: #F4C846;
}

.lightbox-nav
{
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 8px 22px;
  background: rgba(6, 12, 24, 0.85);
  border: 1px solid #2A4068;
  border-radius: 30px;
  cursor: default;
}

.lb-arrow
{
  font-family: "Agency FB", "Saira Condensed", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: #F4C846;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 10px;
  transition: color 0.12s, transform 0.12s;
}

.lb-arrow:hover
{
  color: #FCD75F;
  transform: scale(1.2);
}
.lb-arrow:active
{
  transform: scale(0.95);
}

.lb-count
{
  color: #B8D3EE;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  min-width: 64px;
  text-align: center;
}

#tab-login:not(.hidden)
{
  display: flex;
  flex-direction: column;
}

#tab-login .comms-box
{
  flex: 0 0 auto;
  width: min(100%, 720px);
  margin: auto;
}

/* #tab-login
{ 
justify-content:center; 
} */





#tab-login .comms-heading
{
  border-bottom: 1px solid #2A4068;
  padding-bottom: 14px;
}

.rep-list-box
{
  background: #0C1222;
  border: 1px solid #2A4068;
  border-radius: 8px;
  padding: 14px;
}

.rep-list
{
  max-height: calc(100vh - 370px);
  overflow-y: auto;
  scrollbar-gutter: stable both-edges;
  padding-left: 8px;
  padding-right: 8px;
}






.rep-list-box .rep-heading
{
  border-bottom: 1px solid #2A4068;
  padding-bottom: 12px;
}

#tab-login .login-row
{
  border-bottom: 1px solid #2A4068;
  padding-bottom: 18px;
}


.titlebar
{
  border-bottom: 1px solid #2A4068;
}





.win-max
{
  color: #B8D3EE;
}
.win-max::before
{
  content: '';
  width: 9px;
  height: 8px;
  border: 1.5px solid currentColor;
  border-radius: 1px;
}





#tab-comms .comms-heading
{
  border-bottom: 1px solid #2A4068;
  padding-bottom: 14px;
}





.suit-box
{
  background: #0C1222;
  border: 1px solid #2A4068;
  border-radius: 8px;
  padding: 20px 24px 24px 24px;
}

.suit-box .suit-heading
{
  border-bottom: 1px solid #2A4068;
  padding-bottom: 14px;
}



.info-text h1
{
  border-bottom: 1px solid #2A4068;
  padding-bottom: 12px;
}





.win-min:hover
{
  background: #F4C846;
  border-color: #F4C846;
  color: #060C18;
}
.win-max:hover
{
  background: #6FD65F;
  border-color: #6FD65F;
  color: #060C18;
}











.login-box
{
  position: relative;
  max-width: 94vw;
  padding: 38px clamp(28px, 6vw, 54px);
  background: #060E1A;
  border: 1px solid #7FB7D2;
  border-radius: 6px;
  overflow: hidden;
  transform-origin: center center;
  box-shadow: 0 0 2px rgba(127, 183, 210, 0.55), 0 0 9px rgba(127, 183, 210, 0.4), 0 0 26px rgba(127, 183, 210, 0.24), 0 0 55px rgba(127, 183, 210, 0.13), 0 12px 44px rgba(0, 0, 0, 0.7);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.login-overlay.open .login-box
{
  animation: crt-on 0.7s ease-out;
}

.login-box::before
{
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    linear-gradient(rgba(2, 5, 12, 0) 50%, rgba(2, 5, 12, 0.28) 50%),
    radial-gradient(ellipse at center, rgba(2, 5, 12, 0) 55%, rgba(2, 5, 12, 0.55) 100%);
  background-size: 100% 4px, cover;
  background-repeat: repeat, no-repeat;
  animation: boot-flicker 2.6s steps(40) infinite;
}

.login-box.alarm
{
  border-color: #E04545;
  box-shadow: 0 0 2px rgba(224, 69, 69, 0.6), 0 0 12px rgba(224, 69, 69, 0.45), 0 0 34px rgba(224, 69, 69, 0.28), 0 0 66px rgba(224, 69, 69, 0.15), 0 12px 44px rgba(0, 0, 0, 0.7);
}

.login-overlay-text
{
  position: relative;
  z-index: 2;
  font-size: clamp(26px, 6.5vw, 54px);
  letter-spacing: 0.12em;
  text-shadow: 0 0 14px rgba(111, 214, 95, 0.55), 0 0 30px rgba(111, 214, 95, 0.3);
}

.login-overlay.open .login-overlay-text:not(.kidding):not(.denied)
{
  animation: login-text-in 0.4s ease-out 0.6s both;
}





@keyframes login-text-in
{
  0%
  {
    opacity: 0;
    transform: translateY(8px);
  }
  100%
  {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-overlay-text.kidding
{
  text-shadow: 0 0 14px rgba(184, 211, 238, 0.5), 0 0 30px rgba(184, 211, 238, 0.28);
}

.login-overlay-text.denied
{
  text-shadow: 0 0 14px rgba(224, 69, 69, 0.6), 0 0 34px rgba(224, 69, 69, 0.35);
}






.hud-coords
{
  font-variant-numeric: tabular-nums;
}


.cval
{
  display: inline-block;
  min-width: 6ch;
  text-align: center;
}

.cval.corrupt
{
  color: #FCD75F;
  text-shadow: 1.5px 0 rgba(224, 69, 69, 0.9), -1.5px 0 rgba(127, 183, 210, 0.85);
  animation: hud-corrupt 0.13s steps(4) infinite;
}






#cy.corrupt
{
  animation-delay: -0.05s;
}
#cz.corrupt
{
  animation-delay: -0.09s;
}

@keyframes hud-corrupt
{
  0%
  {
    transform: translate(0, 0) skewX(0deg);
  }
  25%
  {
    transform: translate(-1.5px, 1px) skewX(-8deg);
  }
  50%
  {
    transform: translate(2px, -1.5px) skewX(6deg);
  }
  75%
  {
    transform: translate(-1px, -1px) skewX(-4deg);
  }
  100%
  {
    transform: translate(1.5px, 1.5px) skewX(7deg);
  }
}







.window-shell.powering-off
{
  transform-origin: center center;
  animation: crt-off 0.55s ease-in forwards;
}
.window-shell.powering-on
{
  transform-origin: center center;
  animation: crt-on 0.7s ease-out;
}

@keyframes crt-off
{
  0%
  {
    transform: scale(1, 1);
    opacity: 1;
    filter: brightness(1);
  }
  25%
  {
    transform: scale(1, 0.008);
    opacity: 1;
    filter: brightness(7);
  }
  65%
  {
    transform: scale(0.05, 0.008);
    opacity: 1;
    filter: brightness(13);
  }
  100%
  {
    transform: scale(0, 0);
    opacity: 0;
    filter: brightness(16);
  }
}






.shutdown-overlay
{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2100;
  pointer-events: none;
}

.shutdown-overlay.active
{
  display: flex;
}

.shutdown-box
{
  position: relative;
  min-width: min(380px, 86vw);
  padding: 40px clamp(40px, 8vw, 88px);
  background: #060E1A;
  border: 1px solid #7FB7D2;
  border-radius: 6px;
  overflow: hidden;
  transform-origin: center center;
  box-shadow: 0 0 2px rgba(127, 183, 210, 0.55), 0 0 9px rgba(127, 183, 210, 0.4), 0 0 26px rgba(127, 183, 210, 0.24), 0 0 55px rgba(127, 183, 210, 0.13), 0 12px 44px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.shutdown-box.on
{
  opacity: 1;
  animation: crt-on 0.7s ease-out;
}

.shutdown-box::before
{
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    linear-gradient(rgba(2, 5, 12, 0) 50%, rgba(2, 5, 12, 0.28) 50%),
    radial-gradient(ellipse at center, rgba(2, 5, 12, 0) 55%, rgba(2, 5, 12, 0.55) 100%);
  background-size: 100% 4px, cover;
  background-repeat: repeat, no-repeat;
  animation: boot-flicker 2.6s steps(40) infinite;
}

.shutdown-text
{
  position: relative;
  z-index: 2;
  margin: 0;
  color: #B8D3EE;
  font-size: clamp(38px, 8vw, 64px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  min-height: 1.2em;
  text-align: center;
  text-shadow: 0 0 14px rgba(127, 183, 210, 0.6), 0 0 30px rgba(127, 183, 210, 0.32);
  opacity: 0;
}







.shutdown-text.show
{
  opacity: 1;
}
.shutdown-text.fade-out
{
  opacity: 0;
  transition: opacity 0.7s ease;
}
.shutdown-text.fade-in
{
  opacity: 1;
  transition: opacity 1.2s ease;
}





/* 'borrowed */
.radar
{
  position: absolute;
  right: 22px;
  bottom: 92px;
  width: 150px;
  padding: 10px 11px 8px;
  background: rgba(6, 14, 26, 0.72);
  border: 1px solid #2A4068;
  border-radius: 8px;
  pointer-events: none;
  z-index: 20;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.radar-scope
{
  position: relative;
  width: 128px;
  height: 128px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, rgba(111, 214, 95, 0.1), rgba(6, 14, 26, 0.4) 72%);
  border: 1px solid rgba(111, 214, 95, 0.35);
}
.radar-grid
{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(111, 214, 95, 0.16), rgba(111, 214, 95, 0.16)) center / 100% 1px no-repeat,
    linear-gradient(rgba(111, 214, 95, 0.16), rgba(111, 214, 95, 0.16)) center / 1px 100% no-repeat;
}
.radar-grid::before
{
  content: '';
  position: absolute;
  inset: 25%;
  border: 1px solid rgba(111, 214, 95, 0.16);
  border-radius: 50%;
}
.radar-sweep
{
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(111, 214, 95, 0.45), rgba(111, 214, 95, 0.06) 42deg, transparent 84deg, transparent 360deg);
  animation: radar-spin 3.6s linear infinite;
}
@keyframes radar-spin
{
  to
  {
    transform: rotate(360deg);
  }
}
.radar-self
{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  border-radius: 50%;
  background: #FCD75F;
  box-shadow: 0 0 6px #FCD75F;
}
.radar-blip
{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  border-radius: 50%;
  background: #6FD65F;
  box-shadow: 0 0 6px rgba(111, 214, 95, 0.9);
  transition: transform 4s ease-in-out, opacity 0.6s ease;
}
.radar-blip.hostile
{
  background: #E04545;
  box-shadow: 0 0 6px rgba(224, 69, 69, 0.9);
}
.radar-readout
{
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin-top: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #84A8CE;
  text-transform: uppercase;
  white-space: nowrap;
}
.radar-readout b
{
  color: #6FD65F;
}






.syslog
{
  position: absolute;
  left: 22px;
  bottom: 92px;
  width: 238px;
  background: rgba(6, 14, 26, 0.72);
  border: 1px solid #2A4068;
  border-radius: 8px;
  overflow: hidden;
  pointer-events: none;
  z-index: 20;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.syslog-head
{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  background: rgba(20, 28, 46, 0.65);
  border-bottom: 1px solid #2A4068;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #F4C846;
  text-transform: uppercase;
}

.syslog-cr
{
  color: #84A8CE;
  letter-spacing: 0.04em;
}

.syslog-cr b
{
  color: #FCD75F;
  font-variant-numeric: tabular-nums;
}

.syslog-body
{
  height: 94px;
  padding: 7px 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 3px;
  font-size: 9.5px;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #84A8CE;
}

.syslog-line
{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.syslog-line .t
{
  color: #6CB2F0;
}

.syslog-line.warn
{
  color: #F4C846;
}

.syslog-line.new
{
  animation: syslog-in 0.4s ease;
}

@keyframes syslog-in
{
  from
  {
    opacity: 0;
    transform: translateY(4px);
  }
  to
  {
    opacity: 1;
    transform: translateY(0);
  }
}


.hail
{
  position: absolute;
  right: 22px;
  top: 96px;
  width: 250px;
  padding: 10px 13px 11px;
  background: rgba(6, 14, 26, 0.92);
  border: 1px solid #7FB7D2;
  border-radius: 8px;
  pointer-events: none;
  z-index: 22;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  box-shadow: 0 0 2px rgba(127, 183, 210, 0.5), 0 0 16px rgba(127, 183, 210, 0.28), 0 8px 24px rgba(0, 0, 0, 0.5);
}


.hail.show
{
  opacity: 1;
  transform: translateX(0);
}

.hail.hostile
{
  border-color: #E04545;
  box-shadow: 0 0 2px rgba(224, 69, 69, 0.5), 0 0 16px rgba(224, 69, 69, 0.3), 0 8px 24px rgba(0, 0, 0, 0.5);
}

.hail-head
{
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #7FB7D2;
  text-transform: uppercase;
  margin-bottom: 5px;
  animation: hail-pulse 0.9s ease-in-out infinite;
}

.hail.hostile .hail-head
{
  color: #E04545;
}

.hail-from
{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #FCD75F;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.hail-msg
{
  font-size: 11px;
  line-height: 1.35;
  color: #B8D3EE;
}




@keyframes hail-pulse
{
  0%,
  100%
  {
    opacity: 1;
  }
  50%
  {
    opacity: 0.45;
  }
}




.radar
{
  right: 12px;
}
.syslog
{
  left: 12px;
}
.hail
{
  right: 12px;
}



.radar,
.syslog
{
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}


.window-shell.hud-on .radar,
.window-shell.hud-on .syslog
{
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}


.window-shell:not(.hud-on) .hail.show
{
  opacity: 0;
  transform: translateX(30px);
}




.syslog
{
  width: 210px;
}


.hail
{
  width: 226px;
}


.window-shell.hud-rep .syslog
{
  left: auto;
  right: 174px;
}


.window-shell.hud-rep .hail.show
{
  opacity: 0;
  transform: translateX(30px);
}


html,
body
{
  cursor: url("uiarties/pointer.webp") 9 8, auto;
}





a,
button,
.tab,
.rep-row,
.suit-thumb,
.lightbox,
.comms-btn,
.login-forgot,
.win-btn,
.lightbox-nav,
.lb-arrow,
.ctx-item
{
  cursor: url("uiarties/pointer-gold.webp") 9 8, auto;
}











.ctx-menu
{
  position: fixed;
  z-index: 1500;
  min-width: 206px;
  padding: 5px;
  background: rgba(8, 16, 30, 0.97);
  border: 1px solid #2A4068;
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(127, 183, 210, 0.14), 0 12px 32px rgba(0, 0, 0, 0.62), 0 0 20px rgba(127, 183, 210, 0.12);
  font-family: "Agency FB", "Saira Condensed", "Arial Narrow", sans-serif;
  opacity: 0;
  transform: scale(0.96);
  transform-origin: top left;
  transition: opacity 0.12s ease, transform 0.12s ease;
  pointer-events: none;
}




.ctx-menu.open
{
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.ctx-head
{
  padding: 5px 10px 7px;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: #F4C846;
  border-bottom: 1px solid #1E283E;
  margin-bottom: 4px;
  white-space: nowrap;
}

.ctx-head b
{
  color: #84A8CE;
  font-weight: 400;
}

.ctx-head::before
{
  content: '\25CF  ';
  color: #6FD65F;
  font-size: 8px;
  vertical-align: middle;
}

.ctx-item
{
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 6px 10px;
  background: none;
  border: 0;
  border-radius: 4px;
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #B8D3EE;
  text-align: left;
  white-space: nowrap;
}

.ctx-item::before
{
  content: '\203A';
  color: #4A6893;
  font-weight: 700;
}

.ctx-item:hover
{
  background: rgba(127, 183, 210, 0.12);
  color: #FCD75F;
}

.ctx-item:hover::before
{
  color: #FCD75F;
}

.ctx-item.danger:hover
{
  background: rgba(224, 69, 69, 0.15);
  color: #FF6B6B;
}

.ctx-item.danger:hover::before
{
  color: #FF6B6B;
}

.ctx-hint
{
  margin-left: auto;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: #56779F;
}

.ctx-item:hover .ctx-hint
{
  color: #C6A94A;
}

.ctx-sep
{
  height: 1px;
  margin: 4px 6px;
  background: #1E283E;
}




.terminal
{
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #05090F;
  border: 1px solid #223354;
  border-radius: 8px;
  overflow: hidden;
  font-family: "Fixedsys Excelsior", "SFMono-Regular", "Consolas", "Roboto Mono", ui-monospace, monospace;
  box-shadow: inset 0 0 46px rgba(0, 0, 0, 0.55);
}


.term-head
{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 0 0 auto;
  padding: 7px 13px;
  background: rgba(20, 28, 46, 0.7);
  border-bottom: 1px solid #223354;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #84A8CE;
  text-transform: uppercase;
}



.term-status
{
  color: #6FD65F;
  letter-spacing: 0.08em;
}


.term-output
{
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 13px 15px;
  font-size: 13px;
  line-height: 1.5;
  color: #A9C6E4;
}


.term-line
{
  white-space: pre-wrap;
  word-break: break-word;
}

.term-cmd
{
  color: #EAF3FF;
}

.term-out
{
  color: #A9C6E4;
}

.term-ok
{
  color: #6FD65F;
}

.term-err
{
  color: #E86A6A;
}

.term-muted
{
  color: #6C86A8;
}

.term-gold
{
  color: #F4C846;
}

.term-head-line
{
  color: #FCD75F;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.term-key
{
  color: #6CB2F0;
}

.term-inputline
{
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 9px 15px;
  border-top: 1px solid #223354;
  background: rgba(10, 16, 26, 0.6);
}

.term-prompt
{
  color: #6FD65F;
  font-size: 13px;
  white-space: nowrap;
}

.term-input
{
  flex: 1 1 auto;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: none;
  color: #EAF3FF;
  font-family: inherit;
  font-size: 13px;
  caret-color: #6FD65F;
  padding: 0;
}


.term-input::placeholder
{
  color: #45608322;
}


.term-statbox
{
  border: 1px solid #2A4068;
  background: #0B1524;
  margin: 4px 0 2px;
  max-width: 470px;
  font-family: inherit;
}


.tsb-title
{
  font-size: 10px;
  letter-spacing: 0.16em;
  color: #F4C846;
  padding: 5px 12px;
  border-bottom: 1px solid #223354;
  background: rgba(244, 200, 70, 0.05);
}


.tsb-grid
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  padding: 4px 6px 7px;
}


.tsb-cell
{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 4px 11px;
  font-size: 12px;
  border-bottom: 1px dotted rgba(42, 64, 104, 0.4);
}


.tsb-k
{
  color: #6C86A8;
}


.tsb-v
{
  color: #DCEBFB;
  font-weight: 600;
  white-space: nowrap;
}



.hud-instab
{
  display: none;
  color: #E04545;
}


.hud-instab.show
{
  display: inline;
  animation: instab-blink 0.9s steps(2, start) infinite;
}

@media (max-width: 620px)
{
  .cval
  {
    width: 6ch;
  }
  .cval.corrupt
  {
    animation: none;
  }
  .hud-instab
  {
    display: inline;
    visibility: hidden;
  }
  .hud-instab.show
  {
    visibility: visible;
  }
}




@keyframes instab-blink
{
  to
  {
    visibility: hidden;
  }
}



.radar-loc-row
{
  margin-top: 4px;
}



.radar-loc-row span
{
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}



.radar.corrupt .radar-blip
{
  transition: none;
  animation: radar-grid-flicker 0.1s steps(2, start) infinite;
}




.radar.corrupt .radar-grid
{
  animation: radar-grid-flicker 0.11s steps(2, start) infinite;
}



.radar.corrupt .radar-scope
{
  animation: radar-jitter 0.13s steps(4) infinite;
  border-color: rgba(224, 69, 69, 0.55);
}

.radar.corrupt .radar-readout b
{
  color: #FCD75F;
  text-shadow: 1.5px 0 rgba(224, 69, 69, 0.9), -1.5px 0 rgba(127, 183, 210, 0.85);
}

@keyframes radar-grid-flicker
{
  to
  {
    visibility: hidden;
  }
}




@keyframes radar-jitter
{
  0%
  {
    transform: translate(0, 0) rotate(0deg);
  }
  25%
  {
    transform: translate(3px, -2px) rotate(0.7deg);
  }
  50%
  {
    transform: translate(-2.5px, 3px) rotate(-0.6deg);
  }
  75%
  {
    transform: translate(2px, 2.5px) rotate(0.5deg);
  }
  100%
  {
    transform: translate(0, 0) rotate(0deg);
  }
}



.radar-blip
{
  transition: none;
}

.radar-blip.dying
{
  transition: opacity 0.45s ease;
  opacity: 0 !important;
}

.radar-sweep
{
  animation: none;
}

.rep-list
{
  scrollbar-gutter: auto;
  margin-right: 0;
  padding-left: 20px;
  padding-right: 20px;
  /* scrollbar-gutter:stable both-edges;
  margin-right:-12px;
  padding:9px 6px;
  width:274px; 
  align-self:flex-start; */
}


.boot
{
  cursor: pointer;
}



.boot-gate
{
  font-family: "Agency FB", "Saira Condensed", "Arial Narrow", sans-serif;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #6FD65F;
  text-shadow: 0 0 8px rgba(111, 214, 95, 0.55);
  white-space: pre;
}




.boot .boot-screen
{
  /*display: none;*/
  visibility: hidden;
  opacity: 0;
  animation: none;
}

.boot.connected .boot-screen
{
  visibility: visible;
  opacity: 1;
  animation: crt-on 0.85s ease-out;
  /*visibility: visible; 
  opacity: 1; 
  transition: opacity 0.35s;*/
}

.boot.connected .boot-gate
{
  display: none;
}

.login-overlay-text.vanish
{
  opacity: 0;
  transition: opacity 0.6s ease;
}
.login-overlay-text.appear
{
  animation: jk-fadein 1.1s ease both;
}
@keyframes jk-fadein
{
  from
  {
    opacity: 0;
  }
  to
  {
    opacity: 1;
  }
}






.login-box
{
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-overlay.closing .login-box
{
  transform-origin: center center;
  animation: crt-off 0.55s ease-in forwards;
}

.shutdown-box.closing
{
  transform-origin: center center;
  animation: crt-off 0.55s ease-in forwards;
}

.logplayer-box
{
  min-width: min(440px, 92vw);
  padding: 30px 34px 26px 34px;
}

.logplayer-close
{
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
}






.logplayer-title
{
  position: relative;
  z-index: 2;
  font-family: "Agency FB", "Saira Condensed", "Arial Narrow", sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: #7FB7D2;
  margin: 0 26px 18px 0;
  text-transform: uppercase;
}

.logplayer-transport
{
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
}

.logplayer-playbtn
{
  min-width: 72px;
}

.logplayer-timebar
{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.logplayer-track
{
  height: 8px;
  border: 1px solid #7FB7D2;
  background: rgba(127, 183, 210, 0.12);
  overflow: hidden;
}

.logplayer-fill
{
  height: 100%;
  width: 0%;
  background: #6FD65F;
  box-shadow: 0 0 8px rgba(111, 214, 95, 0.7);
}

.logplayer-time
{
  font-family: "Agency FB", "Saira Condensed", "Arial Narrow", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #B8D3EE;
}

#logplayer-overlay .logplayer-box
{
  pointer-events: auto;
}













@keyframes wild-flicker
{
  0%,
  100%
  {
    filter: none;
  }
  7%
  {
    filter: sepia(0.55) hue-rotate(150deg) saturate(2.4);
  }
  9%
  {
    filter: none;
  }
  23%
  {
    filter: sepia(0.5) hue-rotate(255deg) saturate(2.2);
  }
  25%
  {
    filter: none;
  }
  48%
  {
    filter: sepia(0.55) hue-rotate(160deg) saturate(2.6);
  }
  52%
  {
    filter: none;
  }
  71%
  {
    filter: sepia(0.5) hue-rotate(255deg) saturate(2);
  }
  73%
  {
    filter: none;
  }
  88%
  {
    filter: sepia(0.6) hue-rotate(150deg) saturate(2.4);
  }
  90%
  {
    filter: none;
  }
}







@keyframes wild-red-flicker
{
  0%,
  100%
  {
    filter: none;
  }
  6%
  {
    filter: sepia(0.6) hue-rotate(315deg) saturate(3);
  }
  10%
  {
    filter: none;
  }
  34%
  {
    filter: sepia(0.65) hue-rotate(320deg) saturate(3.2);
  }
  40%
  {
    filter: none;
  }
  58%
  {
    filter: sepia(0.6) hue-rotate(310deg) saturate(2.8);
  }
  62%
  {
    filter: none;
  }
  83%
  {
    filter: sepia(0.65) hue-rotate(318deg) saturate(3.4);
  }
  88%
  {
    filter: none;
  }
}











body.wild-flicker .window:not(.minimizing):not(.maximizing)
{
  animation: wild-flicker 7s steps(1, end) infinite;
}
body.wild-flicker .radar
{
  animation: wild-flicker 7.7s steps(1, end) infinite;
  animation-delay: -2.3s;
}
body.wild-flicker .syslog
{
  animation: wild-flicker 6.4s steps(1, end) infinite;
  animation-delay: -4.1s;
}
body.wild-flicker .hail
{
  animation: wild-flicker 8.2s steps(1, end) infinite;
  animation-delay: -1.2s;
}
body.wild-flicker .hud-frame
{
  animation: wild-flicker 7.3s steps(1, end) infinite;
  animation-delay: -5.6s;
}

body.wild-red .window:not(.minimizing):not(.maximizing)
{
  animation: wild-red-flicker 2.7s steps(1, end) infinite;
}
body.wild-red .radar
{
  animation: wild-red-flicker 2.9s steps(1, end) infinite;
  animation-delay: -0.9s;
}
body.wild-red .syslog
{
  animation: wild-red-flicker 2.5s steps(1, end) infinite;
  animation-delay: -1.7s;
}
body.wild-red .hail
{
  animation: wild-red-flicker 3.1s steps(1, end) infinite;
  animation-delay: -0.5s;
}
body.wild-red .hud-frame
{
  animation: wild-red-flicker 2.8s steps(1, end) infinite;
  animation-delay: -2.1s;
}




.wildmsg-text
{
  font-size: clamp(22px, 4.4vw, 36px);
}
.wildmsg-box.infected
{
  border-color: #E86AC8;
  box-shadow: 0 0 2px rgba(232, 106, 200, 0.55), 0 0 9px rgba(232, 106, 200, 0.4), 0 0 26px rgba(232, 106, 200, 0.24), 0 0 55px rgba(232, 106, 200, 0.13), 0 12px 44px rgba(0, 0, 0, 0.7);
}
.wildmsg-box.hostile
{
  border-color: #E04545;
  box-shadow: 0 0 2px rgba(224, 69, 69, 0.55), 0 0 9px rgba(224, 69, 69, 0.4), 0 0 26px rgba(224, 69, 69, 0.24), 0 0 55px rgba(224, 69, 69, 0.13), 0 12px 44px rgba(0, 0, 0, 0.7);
}



.fight-box
{
  padding: 20px 24px 16px;
  min-width: 0;
}
#fight-overlay .fight-box
{
  pointer-events: auto;
}
.fight-title
{
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FCD75F;
  font-size: 12px;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
.fight-bars
{
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}
.fight-side
{
  flex: 1;
}
.fight-label
{
  color: #6C86A8;
  font-size: 10px;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.fight-track
{
  height: 5px;
  background: #0A1626;
  border: 1px solid #2A4068;
  border-radius: 2px;
  margin-bottom: 4px;
  overflow: hidden;
}
.fight-fill
{
  height: 100%;
  width: 100%;
  transition: width 0.12s linear;
}
.fight-shield
{
  background: #6CB2F0;
}
.fight-neo-hull
{
  background: #E04545;
}
.fight-station-hull
{
  background: #6FD65F;
}
#fight-scope
{
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border: 1px solid #2A4068;
  border-radius: 50%;
  background: radial-gradient(circle at center, #081222 0%, #060E1A 70%);
  cursor: crosshair;
}
.fight-status
{
  position: relative;
  z-index: 2;
  margin-top: 10px;
  text-align: center;
  color: #F4C846;
  font-size: 11px;
  letter-spacing: 0.12em;
  min-height: 14px;
}

.wild-blank
{
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 6000;
  display: none;
}
.wild-blank.on
{
  display: block;
}

.login-overlay-text.success
{
  color: #6FD65F;
}














@keyframes wild-glitch-cyan
{
  0%,
  100%
  {
    filter: none;
    transform: none;
  }
  6%
  {
    filter: sepia(0.5) hue-rotate(155deg) saturate(2.6);
    transform: translate(1px, -1px);
  }
  8%
  {
    filter: sepia(0.55) hue-rotate(150deg) saturate(2.9);
    transform: translate(-2px, 1px);
  }
  11%
  {
    filter: none;
    transform: none;
  }
  27%
  {
    filter: sepia(0.45) hue-rotate(158deg) saturate(2.3);
    transform: translate(-1px, 0);
  }
  30%
  {
    filter: none;
    transform: translate(2px, -1px);
  }
  32%
  {
    filter: none;
    transform: none;
  }
  46%
  {
    filter: sepia(0.55) hue-rotate(152deg) saturate(2.8);
    transform: translate(1px, 1px);
  }
  49%
  {
    filter: sepia(0.5) hue-rotate(155deg) saturate(2.5);
    transform: translate(-1px, -2px);
  }
  53%
  {
    filter: none;
    transform: none;
  }
  71%
  {
    filter: sepia(0.5) hue-rotate(156deg) saturate(2.6);
    transform: translate(-2px, 1px);
  }
  74%
  {
    filter: none;
    transform: none;
  }
  88%
  {
    filter: sepia(0.55) hue-rotate(150deg) saturate(3);
    transform: translate(2px, 0);
  }
  91%
  {
    filter: none;
    transform: none;
  }
}








@keyframes wild-glitch-red
{
  0%,
  100%
  {
    filter: sepia(0.55) hue-rotate(315deg) saturate(2.6);
    transform: none;
  }
  7%
  {
    filter: sepia(0.6) hue-rotate(318deg) saturate(3.2) brightness(1.06);
    transform: translate(-2px, 1px);
  }
  10%
  {
    filter: sepia(0.55) hue-rotate(315deg) saturate(2.6);
    transform: none;
  }
  33%
  {
    filter: sepia(0.65) hue-rotate(312deg) saturate(3.4) brightness(1.1);
    transform: translate(1px, -2px);
  }
  36%
  {
    filter: sepia(0.55) hue-rotate(315deg) saturate(2.6);
    transform: none;
  }
  58%
  {
    filter: sepia(0.6) hue-rotate(320deg) saturate(3) brightness(1.05);
    transform: translate(2px, 1px);
  }
  61%
  {
    filter: sepia(0.55) hue-rotate(315deg) saturate(2.6);
    transform: none;
  }
  84%
  {
    filter: sepia(0.65) hue-rotate(314deg) saturate(3.3) brightness(1.08);
    transform: translate(-1px, -1px);
  }
  87%
  {
    filter: sepia(0.55) hue-rotate(315deg) saturate(2.6);
    transform: none;
  }
}










body.wild-flicker .window:not(.minimizing):not(.maximizing)
{
  animation: wild-glitch-cyan 3.4s steps(1, end) infinite;
}
body.wild-flicker .radar
{
  animation: wild-glitch-cyan 3.9s steps(1, end) infinite;
  animation-delay: -1.3s;
}
body.wild-flicker .syslog
{
  animation: wild-glitch-cyan 3.1s steps(1, end) infinite;
  animation-delay: -2.2s;
}
body.wild-flicker .hail
{
  animation: wild-glitch-cyan 4.2s steps(1, end) infinite;
  animation-delay: -0.7s;
}
body.wild-flicker .hud-frame
{
  animation: wild-glitch-cyan 3.6s steps(1, end) infinite;
  animation-delay: -2.9s;
}




body.wild-red .window:not(.minimizing):not(.maximizing)
{
  animation: wild-glitch-red 2.8s steps(1, end) infinite;
}
body.wild-red .radar
{
  animation: wild-glitch-red 3s steps(1, end) infinite;
  animation-delay: -1.1s;
}
body.wild-red .syslog
{
  animation: wild-glitch-red 2.6s steps(1, end) infinite;
  animation-delay: -1.8s;
}
body.wild-red .hail
{
  animation: wild-glitch-red 3.2s steps(1, end) infinite;
  animation-delay: -0.6s;
}
body.wild-red .hud-frame
{
  animation: wild-glitch-red 2.9s steps(1, end) infinite;
  animation-delay: -2.2s;
}




.fight-box
{
  border-color: #E04545;
  box-shadow: 0 0 2px rgba(224, 69, 69, 0.55), 0 0 9px rgba(224, 69, 69, 0.4), 0 0 26px rgba(224, 69, 69, 0.24), 0 0 55px rgba(224, 69, 69, 0.13), 0 12px 44px rgba(0, 0, 0, 0.7);
}
.fight-title
{
  color: #E04545;
}
.fight-label
{
  color: #C46A6A;
}
.fight-track
{
  border-color: #6A3040;
}
.fight-status
{
  color: #E86A6A;
}






.neo-profile
{
  display: none;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid #2A4068;
  border-radius: 8px;
  background: rgba(6, 14, 26, 0.72);
  grid-template-columns: 84px 1fr;
  gap: 12px 14px;
}
#tab-login.neo-linked .neo-profile
{
  display: grid;
}
#tab-login.neo-linked .comms-heading,
#tab-login.neo-linked .comms-label,
#tab-login.neo-linked .comms-input,
#tab-login.neo-linked .login-row,
#tab-login.neo-linked .login-forgot-msg,
#tab-login.neo-linked #login-status
{
  display: none;
}
.neo-profile-pic
{
  width: 84px;
  height: 84px;
  object-fit: cover;
  border: 1px solid #2A4068;
  border-radius: 6px;
}

.neo-profile-head
{
  align-self: center;
  min-width: 0;
}
.neo-profile-name
{
  color: #FCD75F;
  font-size: 18px;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.neo-profile-line
{
  color: #7FB7D2;
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-bottom: 3px;
}
.neo-profile-line b
{
  color: #6FD65F;
  font-weight: 700;
}

.neo-profile-body
{
  grid-column: 1 / -1;
  border-top: 1px solid #2A4068;
  padding-top: 10px;
}
.neo-profile-row
{
  display: flex;
  gap: 10px;
  color: #B8D3EE;
  font-size: 12.5px;
  margin-bottom: 6px;
}

.neo-profile-row span
{
  color: #6C86A8;
  min-width: 92px;
  letter-spacing: 0.08em;
}




.fight-box
{
  min-width: min(396px, 92vw);
}
#fight-scope
{
  width: min(340px, 82vw);
  height: auto;
  aspect-ratio: 1 / 1;
  max-width: none;
}








@keyframes wild-glitch-pink
{
  0%,
  100%
  {
    filter: none;
    transform: none;
  }
  6%
  {
    filter: sepia(1) hue-rotate(280deg) saturate(2.8);
    transform: translate(1px, -1px);
  }
  8%
  {
    filter: sepia(1) hue-rotate(280deg) saturate(3.2);
    transform: translate(-2px, 1px);
  }
  11%
  {
    filter: none;
    transform: none;
  }
  27%
  {
    filter: sepia(1) hue-rotate(280deg) saturate(2.5);
    transform: translate(-1px, 0);
  }
  30%
  {
    filter: none;
    transform: translate(2px, -1px);
  }
  32%
  {
    filter: none;
    transform: none;
  }
  46%
  {
    filter: sepia(1) hue-rotate(280deg) saturate(3) brightness(1.05);
    transform: translate(1px, 1px);
  }
  49%
  {
    filter: sepia(1) hue-rotate(280deg) saturate(2.7);
    transform: translate(-1px, -2px);
  }
  53%
  {
    filter: none;
    transform: none;
  }
  71%
  {
    filter: sepia(1) hue-rotate(280deg) saturate(2.8);
    transform: translate(-2px, 1px);
  }
  74%
  {
    filter: none;
    transform: none;
  }
  88%
  {
    filter: sepia(1) hue-rotate(280deg) saturate(3.2);
    transform: translate(2px, 0);
  }
  91%
  {
    filter: none;
    transform: none;
  }
}












@keyframes wild-glitch-red-true
{
  0%,
  100%
  {
    filter: sepia(1) hue-rotate(310deg) saturate(2.8);
    transform: none;
  }
  7%
  {
    filter: sepia(1) hue-rotate(310deg) saturate(3.3) brightness(1.08);
    transform: translate(-2px, 1px);
  }
  10%
  {
    filter: sepia(1) hue-rotate(310deg) saturate(2.8);
    transform: none;
  }
  33%
  {
    filter: sepia(1) hue-rotate(310deg) saturate(3.5) brightness(1.12);
    transform: translate(1px, -2px);
  }
  36%
  {
    filter: sepia(1) hue-rotate(310deg) saturate(2.8);
    transform: none;
  }
  58%
  {
    filter: sepia(1) hue-rotate(310deg) saturate(3.2) brightness(1.06);
    transform: translate(2px, 1px);
  }
  61%
  {
    filter: sepia(1) hue-rotate(310deg) saturate(2.8);
    transform: none;
  }
  84%
  {
    filter: sepia(1) hue-rotate(310deg) saturate(3.4) brightness(1.1);
    transform: translate(-1px, -1px);
  }
  87%
  {
    filter: sepia(1) hue-rotate(310deg) saturate(2.8);
    transform: none;
  }
}




body.wild-flicker .window:not(.minimizing):not(.maximizing)
{
  animation: wild-glitch-pink 3.4s steps(1, end) infinite;
}


body.wild-flicker .radar
{
  animation: wild-glitch-pink 3.9s steps(1, end) infinite;
  animation-delay: -1.3s;
}

body.wild-flicker .syslog
{
  animation: wild-glitch-pink 3.1s steps(1, end) infinite;
  animation-delay: -2.2s;
}

body.wild-flicker .hail
{
  animation: wild-glitch-pink 4.2s steps(1, end) infinite;
  animation-delay: -0.7s;
}

body.wild-flicker .hud-frame
{
  animation: wild-glitch-pink 3.6s steps(1, end) infinite;
  animation-delay: -2.9s;
}

body.wild-red .window:not(.minimizing):not(.maximizing)
{
  animation: wild-glitch-red-true 2.8s steps(1, end) infinite;
}

body.wild-red .radar
{
  animation: wild-glitch-red-true 3s steps(1, end) infinite;
  animation-delay: -1.1s;
}

body.wild-red .syslog
{
  animation: wild-glitch-red-true 2.6s steps(1, end) infinite;
  animation-delay: -1.8s;
}

body.wild-red .hail
{
  animation: wild-glitch-red-true 3.2s steps(1, end) infinite;
  animation-delay: -0.6s;
}

body.wild-red .hud-frame
{
  animation: wild-glitch-red-true 2.9s steps(1, end) infinite;
  animation-delay: -2.2s;
}



body.wild-pulse-pink .window:not(.minimizing):not(.maximizing),
body.wild-pulse-pink .radar,
body.wild-pulse-pink .syslog,
body.wild-pulse-pink .hail,
body.wild-pulse-pink .hud-frame
{
  filter: sepia(1) hue-rotate(280deg) saturate(3);
}




body.wild-blink .window:not(.minimizing):not(.maximizing),
body.wild-blink .radar,
body.wild-blink .syslog,
body.wild-blink .hail,
body.wild-blink .hud-frame
{
  opacity: 0.72;
  transform: translate(1px, -1px);
}

body.wild-pulse-pink.wild-blink .window:not(.minimizing):not(.maximizing),
body.wild-pulse-pink.wild-blink .radar,
body.wild-pulse-pink.wild-blink .syslog,
body.wild-pulse-pink.wild-blink .hail,
body.wild-pulse-pink.wild-blink .hud-frame
{
  filter: sepia(1) hue-rotate(280deg) saturate(3) brightness(0.8);
  transform: translate(-1px, 1px);
}




.term-line .term-neoship,
.term-neoship
{
  display: block;
  width: min(240px, 60%);
  margin: 6px 0 4px;
  border: 1px solid #2A4068;
  border-radius: 4px;
  image-rendering: auto;
}

.tsb-neoship
{
  display: block;
  width: min(240px, 70%);
  margin: 10px 12px 4px;
  border: 1px solid #2A4068;
  border-radius: 4px;
}
.tsb-cell.tsb-wide
{
  grid-column: 1 / -1;
}
.tsb-cell.tsb-wide .tsb-v
{
  white-space: normal;
  text-align: right;
}
.tsb-threat
{
  color: #E86A6A;
}





.fight-box.fight-over .fight-title
{
  color: #FCD75F;
}
.fight-box.fight-over .fight-label
{
  color: #6C86A8;
}
.fight-box.fight-over .fight-track
{
  border-color: #2A4068;
}
.fight-box.fight-over .fight-status
{
  color: #F4C846;
}




.fight-box.fight-over .fight-neo-hull
{
  background: #4C6E9C;
}




.fight-box.fight-over
{
  border-color: #7FB7D2;
  box-shadow: 0 0 2px rgba(127, 183, 210, 0.55), 0 0 9px rgba(127, 183, 210, 0.4), 0 0 26px rgba(127, 183, 210, 0.24), 0 0 55px rgba(127, 183, 210, 0.13), 0 12px 44px rgba(0, 0, 0, 0.7);
}
.fight-box
{
  transition: opacity 0.4s ease, border-color 0.9s ease, box-shadow 0.9s ease;
}





.fight-title
{
  transition: opacity 0.45s ease;
}

.fight-title.swap
{
  opacity: 0;
}

.fight-status.fade-out
{
  opacity: 0;
  transition: opacity 4s ease;
}

.fight-side
{
  max-width: 400px;
  transition: opacity 0.9s ease, flex-grow 0.9s ease, max-width 0.9s ease;
}



.fight-box.neo-gone .fight-side:first-child
{
  opacity: 0;
  flex-grow: 0.001;
  min-width: 0;
  overflow: hidden;
}


.fight-box.neo-gone .fight-side:last-child
{
  max-width: 240px;
  margin: 0 auto;
}
.fight-box.neo-gone .fight-side:last-child .fight-label
{
  text-align: center;
}





#fight-scope
{
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}





body.wild-pulse-pink::after
{
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5900;
  box-shadow: inset 0 0 130px 34px rgba(232, 106, 200, 0.2);
}

@keyframes wild-caret-blink
{
  0%,
  100%
  {
    opacity: 1;
  }
  50%
  {
    opacity: 0;
  }
}



.term-line.term-stall::after
{
  content: '\2588';
  margin-left: 1px;
  animation: wild-caret-blink 0.55s steps(1, end) infinite;
}

.radar-blip.wild-fore
{
  background: #E86AC8;
  width: 5px;
  height: 5px;
  box-shadow: 0 0 6px rgba(232, 106, 200, 0.5);
}




@keyframes neorow-in
{
  from
  {
    opacity: 0;
    transform: translateX(-6px);
  }
  to
  {
    opacity: 1;
    transform: none;
  }
}



.term-neobox .tsb-neoship
{
  animation: neorow-in 0.34s both;
  animation-delay: 0.05s;
}

.term-neobox .tsb-cell
{
  animation: neorow-in 0.3s both;
}

.term-neobox .tsb-cell:nth-child(1)
{
  animation-delay: 0.16s;
}

.term-neobox .tsb-cell:nth-child(2)
{
  animation-delay: 0.27s;
}

.term-neobox .tsb-cell:nth-child(3)
{
  animation-delay: 0.38s;
}

.term-neobox .tsb-cell:nth-child(4)
{
  animation-delay: 0.49s;
}

.term-neobox .tsb-cell:nth-child(5)
{
  animation-delay: 0.6s;
}

.term-neobox .tsb-cell:nth-child(6)
{
  animation-delay: 0.71s;
}

.term-neobox .tsb-cell:nth-child(7)
{
  animation-delay: 0.82s;
}

.term-neobox .tsb-cell:nth-child(8)
{
  animation-delay: 0.93s;
}

.term-neobox .tsb-cell:nth-child(9)
{
  animation-delay: 1.04s;
}

.term-neobox .tsb-cell:nth-child(10)
{
  animation-delay: 1.15s;
}

.term-neobox .tsb-cell:nth-child(11)
{
  animation-delay: 1.26s;
}





.tsb-threat-unknown
{
  color: #F4C846;
}

.neo-profile
{
  position: relative;
  padding-bottom: 44px;
}

.neo-logout
{
  position: absolute;
  right: 12px;
  bottom: 10px;
  font-size: 11px;
  padding: 5px 14px;
}

.term-neobox .tsb-cell:nth-child(12)
{
  animation-delay: 1.37s;
}




.tsb-cell .tsb-k
{
  white-space: nowrap;
  word-break: normal;
  flex: 0 0 auto;
}

.radar-title
{
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: #F4C846;
  margin-bottom: 6px;
}

.neo-logout
{
  font-size: inherit;
  padding: 8px 16px;
}

.neo-logout:hover
{
  box-shadow: 0 0 9px rgba(244, 200, 70, 0.4);
}


.boot-gate
{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body.egg-quake .radar,
body.egg-quake .syslog,
body.egg-quake .hail
{
  animation: page-glitch 0.12s steps(2, end) infinite;
}









@keyframes wild-vignette-breathe
{
  0%,
  100%
  {
    box-shadow: inset 0 0 80px 14px rgba(232, 106, 200, 0.1);
  }
  50%
  {
    box-shadow: inset 0 0 175px 48px rgba(232, 106, 200, 0.26);
  }
}
@keyframes wild-vignette-flicker
{
  0%,
  100%
  {
    opacity: 1;
  }
  7%
  {
    opacity: 0.5;
  }
  9%
  {
    opacity: 1;
  }
  38%
  {
    opacity: 0.35;
  }
  42%
  {
    opacity: 1;
  }
  63%
  {
    opacity: 0.65;
  }
  66%
  {
    opacity: 1;
  }
  87%
  {
    opacity: 0.45;
  }
  90%
  {
    opacity: 1;
  }
}


body.wild-era-pink::after
{
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5900;
  box-shadow: inset 0 0 90px 18px rgba(232, 106, 200, 0.14);
  animation: wild-vignette-breathe 3.2s ease-in-out infinite, wild-vignette-flicker 1.1s steps(1, end) infinite;
}

@keyframes wild-fall
{
  0%
  {
    opacity: 1;
    transform: none;
  }
  28%
  {
    opacity: 1;
    transform: translateY(5px) rotate(0.5deg);
  }
  100%
  {
    opacity: 0;
    transform: translateY(48px) rotate(2.4deg) scaleY(0.55);
  }
}



.wild-fall,
body.wild-red .window.wild-fall,
body.wild-red .radar.wild-fall,
body.wild-red .syslog.wild-fall,
body.wild-red .hail.wild-fall,
body.wild-red .hud-frame.wild-fall
{
  animation: wild-fall 0.95s ease-in forwards;
}

.wild-blank
{
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 2.1s ease;
}
.wild-blank.on
{
  opacity: 1;
  pointer-events: auto;
}

.boot-gate.refade
{
  opacity: 0;
  animation: gate-refade 1.7s ease 0.4s forwards;
}
@keyframes gate-refade
{
  to
  {
    opacity: 1;
  }
}





body.wild-red .window.wild-fall:not(.minimizing):not(.maximizing)
{
  animation: wild-fall 0.95s ease-in forwards;
}






body.wild-era-pink::after
{
  content: '';
  position: fixed;
  inset: -34px;
  pointer-events: none;
  z-index: 5900;
  box-shadow: none;
  background: radial-gradient(ellipse at center, rgba(232, 106, 200, 0) 56%, rgba(232, 106, 200, 0.42) 100%);
  animation: wild-vig-grow 2.6s ease-in-out infinite, wild-vig-flick 1.15s steps(1, end) infinite;
}





@keyframes wild-vig-grow
{
  0%,
  100%
  {
    transform: scale(1.09);
    opacity: 0.45;
  }
  50%
  {
    transform: scale(1);
    opacity: 1;
  }
}



@keyframes wild-vig-flick
{
  0%,
  100%
  {
    filter: brightness(1);
  }
  8%
  {
    filter: brightness(0.4);
  }
  11%
  {
    filter: brightness(1.3);
  }
  34%
  {
    filter: brightness(0.55);
  }
  38%
  {
    filter: brightness(1);
  }
  61%
  {
    filter: brightness(1.35);
  }
  64%
  {
    filter: brightness(0.5);
  }
  68%
  {
    filter: brightness(1);
  }
  86%
  {
    filter: brightness(0.6);
  }
  89%
  {
    filter: brightness(1);
  }
}

@keyframes wild-fall-bit
{
  0%
  {
    opacity: 1;
    transform: none;
  }
  100%
  {
    opacity: 0;
    transform: translateY(16px) rotate(3deg) scale(0.86);
  }
}



.wild-fall-bit
{
  animation: wild-fall-bit 0.5s ease-in forwards;
}

.wild-blank
{
  background: #030710;
}

body.wild-era-pink::after
{
  background: radial-gradient(ellipse at center, rgba(232, 106, 200, 0) 50%, rgba(232, 106, 200, 0.62) 100%);
}




#login-status,
.login-forgot-msg
{
  display: none;
}

body.wild-era-pink::after
{
  background: radial-gradient(ellipse at center, rgba(232, 106, 200, 0) 84%, rgba(232, 106, 200, 0.55) 100%);
}

body.wild-era-pink::after
{
  background: radial-gradient(ellipse at center, rgba(232, 106, 200, 0) 76%, rgba(232, 106, 200, 0.5) 100%);
}





@keyframes wild-vig-grow
{
  0%,
  100%
  {
    transform: scale(1);
    opacity: 0.5;
  }
  50%
  {
    transform: scale(0.958);
    opacity: 1;
  }
}

body.wild-era-pink::after
{
  background: none;
  box-shadow: inset 0 0 70px 12px rgba(232, 106, 200, 0.55);
}




@keyframes wild-vig-grow
{
  0%,
  100%
  {
    box-shadow: inset 0 0 55px 8px rgba(232, 106, 200, 0.4);
  }
  50%
  {
    box-shadow: inset 0 0 115px 34px rgba(232, 106, 200, 0.7);
  }
}



.login-overlay-text.plain
{
  color: #B8D3EE;
  text-shadow: 0 0 12px rgba(127, 183, 210, 0.45), 0 0 26px rgba(127, 183, 210, 0.22);
  animation: none;
}

body.wild-era-pink::after
{
  box-shadow: inset 0 0 26px 4px rgba(232, 106, 200, 0.5);
}



@keyframes wild-vig-grow
{
  0%,
  100%
  {
    box-shadow: inset 0 0 18px 2px rgba(232, 106, 200, 0.38);
  }
  50%
  {
    box-shadow: inset 0 0 44px 10px rgba(232, 106, 200, 0.62);
  }
}


body.wild-era-pink::after
{
  box-shadow: inset 0 0 28px 5px rgba(232, 106, 200, 0.62);
}
@keyframes wild-vig-grow
{
  0%,
  100%
  {
    box-shadow: inset 0 0 20px 3px rgba(232, 106, 200, 0.5);
  }
  50%
  {
    box-shadow: inset 0 0 48px 12px rgba(232, 106, 200, 0.8);
  }
}



.logplayer-drag
{
  height: 18px;
  margin: -30px -34px 12px;
  cursor: grab;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  border-bottom: 1px solid #2A4068;
  background:
    repeating-linear-gradient(90deg, rgba(127, 183, 210, 0.4) 0 3px, transparent 3px 7px) center / 38px 3px no-repeat,
    rgba(20, 28, 46, 0.55);
}

.logplayer-drag:active
{
  cursor: grabbing;
}


.rel-line
{
  margin: 2px 0 9px;
}

.rel-line .rel-k
{
  font-weight: 700;
  letter-spacing: 0.06em;
}

.rel-line .rel-names
{
  display: inline;
  margin: 0;
}

.logplayer-drag
{
  height: 26px;
}

.logplayer-close
{
  top: 4px;
  right: 8px;
}

.logplayer-track
{
  cursor: pointer;
}

.logplayer-pausebtn
{
  min-width: 72px;
}

.logplayer-playbtn:hover,
.logplayer-pausebtn:hover
{
  box-shadow: 0 0 9px rgba(244, 200, 70, 0.4);
}


.logplayer-playbtn
{
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-icon
{
  width: 0;
  height: 0;
  border-left: 11px solid currentColor;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.logplayer-playbtn.playing .lp-icon
{
  width: 4px;
  height: 14px;
  border: none;
  background: currentColor;
  box-shadow: 7px 0 0 currentColor;
  margin-right: 7px;
}

.logplayer-box
{
  width: min(440px, 92vw);
}

.logplayer-playbtn
{
  width: 64px;
  padding-left: 0;
  padding-right: 0;
}

.logplayer-time
{
  font-variant-numeric: tabular-nums;
  min-width: 96px;
}

.rel-line
{
  margin-bottom: 20px;
}

.lp-icon
{
  width: 15px;
  height: 14px;
  border: none;
  position: relative;
}

.lp-icon::before
{
  content: '';
  position: absolute;
  left: 2px;
  top: 0;
  width: 0;
  height: 0;
  border-left: 11px solid currentColor;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.logplayer-playbtn.playing .lp-icon
{
  width: 15px;
  height: 14px;
  background: none;
  box-shadow: none;
  margin-right: 0;
}

.logplayer-playbtn.playing .lp-icon::before
{
  left: 2px;
  top: 0;
  width: 4px;
  height: 14px;
  border: none;
  background: currentColor;
  box-shadow: 7px 0 0 currentColor;
}

#term-output .term-line:empty
{
  min-height: 20px;
}


@keyframes wild-die-crt
{
  0%
  {
    transform: scale(1, 1);
    opacity: 1;
    filter: brightness(1);
  }
  35%
  {
    transform: scale(1.02, 0.012);
    opacity: 1;
    filter: brightness(2.6);
  }
  70%
  {
    transform: scale(0.1, 0.012);
    opacity: 1;
    filter: brightness(3);
  }
  82%
  {
    transform: scale(0.004, 0.012);
    opacity: 1;
    filter: brightness(4);
  }
  100%
  {
    transform: scale(0.004, 0.012);
    opacity: 0;
    filter: brightness(4);
  }
}


@keyframes wild-die-starve
{
  0%
  {
    opacity: 1;
    filter: brightness(1);
  }
  12%
  {
    opacity: 0.4;
  }
  20%
  {
    opacity: 0.95;
    filter: brightness(1.4);
  }
  34%
  {
    opacity: 0.25;
  }
  44%
  {
    opacity: 0.75;
    filter: brightness(1.2);
  }
  58%
  {
    opacity: 0.12;
  }
  66%
  {
    opacity: 0.5;
  }
  80%
  {
    opacity: 0.05;
  }
  88%
  {
    opacity: 0.22;
  }
  100%
  {
    opacity: 0;
    filter: brightness(0.6);
  }
}


@keyframes wild-die-iris
{
  0%
  {
    clip-path: circle(75% at 50% 50%);
    opacity: 1;
    filter: brightness(1);
  }
  18%
  {
    clip-path: circle(75% at 50% 50%);
    filter: brightness(2.2) saturate(1.6);
  }
  100%
  {
    clip-path: circle(0% at 50% 50%);
    opacity: 0.9;
    filter: brightness(2.2);
  }
}


@keyframes wild-die-steps
{
  0%
  {
    opacity: 1;
  }
  100%
  {
    opacity: 0;
  }
}


@keyframes wild-die-blink
{
  0%,
  28%,
  56%
  {
    opacity: 1;
    filter: brightness(1.8);
  }
  14%,
  42%
  {
    opacity: 0.1;
  }
  100%
  {
    opacity: 0;
  }
}


@keyframes wild-die-line
{
  0%
  {
    transform: scaleY(1);
    opacity: 1;
    filter: brightness(1);
  }
  45%
  {
    transform: scaleY(0.015);
    opacity: 1;
    filter: brightness(2.4);
  }
  100%
  {
    transform: scaleY(0.015);
    opacity: 0;
    filter: brightness(2.4);
  }
}


@keyframes wild-die-grand
{
  0%
  {
    transform: scale(1, 1);
    opacity: 1;
    filter: brightness(1);
  }
  16%
  {
    transform: scale(1.01, 1.01);
    filter: brightness(2);
  }
  42%
  {
    transform: scale(1.03, 0.01);
    filter: brightness(3);
    opacity: 1;
  }
  62%
  {
    transform: scale(0.08, 0.01);
    filter: brightness(3.4);
    opacity: 1;
  }
  74%
  {
    transform: scale(0.006, 0.01);
    filter: brightness(4);
    opacity: 1;
  }
  86%
  {
    transform: scale(0.006, 0.01);
    opacity: 0.9;
  }
  100%
  {
    transform: scale(0.006, 0.01);
    opacity: 0;
  }
}


.wild-die-crt,
body.wild-red .hail.wild-die-crt
{
  animation: wild-die-crt 0.9s ease-in forwards;
  transform-origin: 50% 50%;
  pointer-events: none;
}


.wild-die-starve,
body.wild-red .syslog.wild-die-starve
{
  animation: wild-die-starve 1.05s linear forwards;
  pointer-events: none;
}

.wild-die-iris,
body.wild-red .radar.wild-die-iris
{
  animation: wild-die-iris 0.85s ease-in forwards;
  pointer-events: none;
}

.wild-die-steps,
body.wild-red .hud-frame.wild-die-steps
{
  animation: wild-die-steps 0.8s steps(5, end) forwards;
  pointer-events: none;
}

.wild-die-blink
{
  animation: wild-die-blink 0.55s linear forwards;
  pointer-events: none;
}

.wild-die-line,
body.wild-red .pane.wild-die-line
{
  animation: wild-die-line 0.8s ease-in forwards;
  transform-origin: 50% 50%;
  pointer-events: none;
}

.wild-die-grand,
body.wild-red .window.wild-die-grand,
body.wild-era-pink .window.wild-die-grand
{
  animation: wild-die-grand 1.5s ease-in forwards;
  transform-origin: 50% 50%;
  pointer-events: none;
}

#wild-dead-text
{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2350;
  color: #E86A6A;
  font-size: clamp(20px, 4vw, 34px);
  letter-spacing: 0.2em;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  text-shadow: 0 0 18px rgba(232, 106, 106, 0.5);
}

@keyframes wild-dead-in
{
  0%
  {
    opacity: 0;
  }
  22%
  {
    opacity: 1;
  }
  34%
  {
    opacity: 0.15;
  }
  48%
  {
    opacity: 1;
  }
  60%
  {
    opacity: 0.3;
  }
  72%,
  100%
  {
    opacity: 1;
  }
}


#wild-dead-text.on
{
  animation: wild-dead-in 0.9s steps(1, end) forwards;
}

#wild-dead-text
{
  background: rgba(11, 18, 32, 0.94);
  border: 1px solid rgba(232, 106, 106, 0.55);
  box-shadow: 0 0 26px rgba(232, 106, 106, 0.22), inset 0 0 18px rgba(232, 106, 106, 0.08);
  padding: 26px 42px;
  max-width: min(640px, 88vw);
}

@keyframes wild-dead-box-in
{
  0%
  {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
  }
  60%
  {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.03);
  }
  100%
  {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

#wild-dead-text.on
{
  animation: wild-dead-box-in 0.5s cubic-bezier(0.2, 0.9, 0.25, 1.2) forwards;
}
@keyframes wild-dead-box-out
{
  0%
  {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1, 1);
    filter: brightness(1);
  }
  45%
  {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.02, 0.02);
    filter: brightness(2.6);
  }
  75%
  {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.05, 0.02);
    filter: brightness(3.2);
  }
  100%
  {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.05, 0.02);
    filter: brightness(3.2);
  }
}

#wild-dead-text.on.closing
{
  animation: wild-dead-box-out 0.6s ease-in forwards;
}
.info-links
{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
  max-width: 460px;
}
.info-link
{
  display: flex;
  align-items: center;
  gap: 14px;
  background: #141C2E;
  border: 1px solid #2A4068;
  border-radius: 6px;
  padding: 10px 14px;
  text-decoration: none;
  color: #B8D3EE;
  letter-spacing: 0.04em;
  transition: background 0.1s, border-color 0.1s, box-shadow 0.1s;
}



.info-link:hover
{
  background: #1E283E;
  border-color: #F4C846;
  box-shadow: 0 0 9px rgba(244, 200, 70, 0.35);
}


.info-link-icon
{
  position: relative;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  background: #0B1220;
  border: 1px solid #2A4068;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.info-link-mono
{
  color: #F4C846;
  font-size: 13px;
  letter-spacing: 0.12em;
  font-weight: 700;
}


.info-link-icon img
{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.info-link-name
{
  font-size: 15px;
}


.info-links
{
  max-width: none;
}

.info-link
{
  padding: 14px 16px;
}

.info-link-name
{
  flex: 1;
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.06em;
  padding-right: 54px;
}

.info-link
{
  padding: 8px 14px;
}

.info-links
{
  gap: 8px;
  margin-top: 14px;
}

html,
body
{
  overflow-x: hidden;
}

.window
{
  min-height: calc(100vh - 68px);
}

.window-shell
{
  height: calc(100vh - 68px);
}

.pane
{
  padding-bottom: 6px;
}

.proj-list
{
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 980px;
}

.proj-card
{
  background: rgba(11, 18, 32, 0.72);
  border: 1px solid #2A4068;
  border-radius: 8px;
  padding: 20px 24px 22px;
}

.proj-name
{
  color: #F4C846;
  font-size: 24px;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #2A4068;
  padding-bottom: 10px;
  margin-bottom: 16px;
}

.proj-media
{
  border: 2px solid #F4C846;
  border-radius: 12px;
  overflow: hidden;
  background: #0B1220;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.proj-media img
{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.proj-desc
{
  margin: 16px 2px 14px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.proj-features summary
{
  list-style: none;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #141C2E;
  border: 1px solid #2A4068;
  border-radius: 6px;
  padding: 10px 14px;
  color: #B8D3EE;
  letter-spacing: 0.08em;
  transition: background 0.1s, border-color 0.1s, box-shadow 0.1s;
}

.proj-features summary::-webkit-details-marker
{
  display: none;
}

.proj-features summary:hover
{
  background: #1E283E;
  border-color: #F4C846;
  box-shadow: 0 0 9px rgba(244, 200, 70, 0.35);
}

.proj-caret
{
  color: #F4C846;
  display: inline-block;
  transition: transform 0.15s;
}

.proj-features[open] .proj-caret
{
  transform: rotate(90deg);
}

.proj-features ul
{
  list-style: none;
  margin: 12px 4px 2px;
  padding: 0;
}

.proj-features li
{
  padding: 5px 0 5px 18px;
  position: relative;
  overflow-wrap: anywhere;
}

.proj-features li::before
{
  content: '\2014';
  position: absolute;
  left: 0;
  color: #56709A;
}

.proj-list
{
  max-width: none;
}

.proj-media
{
  width: fit-content;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.proj-media img
{
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 380px;
  object-fit: unset;
}

.proj-features li::before
{
  content: '-';
}

.hud-frame span
{
  width: 170px;
  height: 120px;
}

.lightbox-nav
{
  border-radius: 6px;
}




.hud-frame span
{
  border: none;
  background: #F4C846;
  -webkit-mask: url('uiarties/CornerBracket.webp') no-repeat center / contain;
  mask: url('uiarties/CornerBracket.webp') no-repeat center / contain;
  width: 150px;
  height: 150px;
}

.hud-frame span:nth-child(1)
{
  transform: scaleY(-1);
}

.hud-frame span:nth-child(2)
{
  transform: scale(-1, -1);
}

.hud-frame span:nth-child(4)
{
  transform: scaleX(-1);
}



.hud-frame.bracket-fallback span
{
  -webkit-mask: none;
  mask: none;
  background: none;
  border: 2px solid #F4C846;
  width: 170px;
  height: 120px;
}

.hud-frame.bracket-fallback span:nth-child(1)
{
  transform: none;
  border-right: none;
  border-bottom: none;
}

.hud-frame.bracket-fallback span:nth-child(2)
{
  transform: none;
  border-left: none;
  border-bottom: none;
}

.hud-frame.bracket-fallback span:nth-child(3)
{
  border-right: none;
  border-top: none;
}

.hud-frame.bracket-fallback span:nth-child(4)
{
  transform: none;
  border-left: none;
  border-top: none;
}





.hud-frame span,
.boot-frame span
{
  border: none;
  background: none;
  -webkit-mask: none;
  mask: none;
}

.hud-frame span svg,
.boot-frame span svg
{
  display: block;
  width: 100%;
  height: 100%;
  fill: #F4C846;
}
.boot-frame span
{
  width: 44px;
  height: 44px;
}

.boot-frame span:nth-child(1)
{
  transform: scaleY(-1);
}

.boot-frame span:nth-child(2)
{
  transform: scale(-1, -1);
}

.boot-frame span:nth-child(4)
{
  transform: scaleX(-1);
}




.hud-frame span
{
  width: 88px;
  height: 88px;
}


.hud-frame span
{
  width: 38px;
  height: 38px;
}










































/* more 'borrowed' radar / fixes */
.radar-sweep
{
  background: none;
  overflow: hidden;
  will-change: transform;
}

.radar-sweep::before
{
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, rgba(111, 214, 95, 0.34) 0deg, rgba(111, 214, 95, 0.2) 16deg, rgba(111, 214, 95, 0.1) 38deg, rgba(111, 214, 95, 0.042) 68deg, rgba(111, 214, 95, 0.014) 104deg, rgba(111, 214, 95, 0) 140deg, rgba(111, 214, 95, 0) 360deg),
    conic-gradient(from 5deg, rgba(111, 214, 95, 0.15) 0deg, rgba(111, 214, 95, 0.07) 30deg, rgba(111, 214, 95, 0.02) 74deg, rgba(111, 214, 95, 0) 118deg, rgba(111, 214, 95, 0) 360deg),
    conic-gradient(from 14deg, rgba(160, 255, 150, 0.09) 0deg, rgba(111, 214, 95, 0.03) 24deg, rgba(111, 214, 95, 0) 62deg, rgba(111, 214, 95, 0) 360deg);
  filter: blur(5px);
  -webkit-mask: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.3) 0%, #000 36%, rgba(0, 0, 0, 0.8) 76%, rgba(0, 0, 0, 0.3) 100%);
  mask: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.3) 0%, #000 36%, rgba(0, 0, 0, 0.8) 76%, rgba(0, 0, 0, 0.3) 100%);
}

.radar-sweep::after
{
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 50%;
  margin-left: -1px;
  background: linear-gradient(to top, rgba(111, 214, 95, 0.1), rgba(111, 214, 95, 0.72) 44%, rgba(178, 255, 164, 0.95));
  box-shadow: 0 0 7px rgba(111, 214, 95, 0.7), 0 0 15px rgba(111, 214, 95, 0.32);
}

.radar-sweep::before
{
  background:
    conic-gradient(from 0deg, rgba(111, 214, 95, 0.17) 0deg, rgba(111, 214, 95, 0.1) 20deg, rgba(111, 214, 95, 0.05) 48deg, rgba(111, 214, 95, 0.018) 86deg, rgba(111, 214, 95, 0) 132deg, rgba(111, 214, 95, 0) 360deg),
    conic-gradient(from 7deg, rgba(111, 214, 95, 0.07) 0deg, rgba(111, 214, 95, 0.025) 34deg, rgba(111, 214, 95, 0) 96deg, rgba(111, 214, 95, 0) 360deg);
  filter: blur(7px);
}

.sweep-band
{
  position: absolute;
  inset: 0;
  display: block;
  border-radius: 50%;
  pointer-events: none;
}

.sweep-band:nth-child(1)
{
  background: conic-gradient(from 358deg, rgba(111, 214, 95, 0.26) 0deg, rgba(111, 214, 95, 0.15) 34deg, rgba(111, 214, 95, 0.06) 88deg, rgba(111, 214, 95, 0.015) 132deg, rgba(111, 214, 95, 0) 168deg, rgba(111, 214, 95, 0) 360deg);
  -webkit-mask: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.45) 0%, #000 14%, #000 30%, rgba(0, 0, 0, 0) 44%);
  mask: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.45) 0%, #000 14%, #000 30%, rgba(0, 0, 0, 0) 44%);
  filter: blur(3px);
}

.sweep-band:nth-child(2)
{
  background: conic-gradient(from 3deg, rgba(111, 214, 95, 0.24) 0deg, rgba(111, 214, 95, 0.12) 22deg, rgba(111, 214, 95, 0.03) 50deg, rgba(111, 214, 95, 0) 76deg, rgba(111, 214, 95, 0) 360deg);
  -webkit-mask: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 20%, #000 34%, #000 50%, rgba(0, 0, 0, 0) 62%);
  mask: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 20%, #000 34%, #000 50%, rgba(0, 0, 0, 0) 62%);
  filter: blur(5px);
}

.sweep-band:nth-child(3)
{
  background: conic-gradient(from 356deg, rgba(111, 214, 95, 0.2) 0deg, rgba(111, 214, 95, 0.12) 40deg, rgba(111, 214, 95, 0.05) 84deg, rgba(111, 214, 95, 0.012) 116deg, rgba(111, 214, 95, 0) 142deg, rgba(111, 214, 95, 0) 360deg);
  -webkit-mask: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 40%, #000 54%, #000 70%, rgba(0, 0, 0, 0) 84%);
  mask: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 40%, #000 54%, #000 70%, rgba(0, 0, 0, 0) 84%);
  filter: blur(4px);
}

.sweep-band:nth-child(4)
{
  background: conic-gradient(from 6deg, rgba(111, 214, 95, 0.19) 0deg, rgba(111, 214, 95, 0.08) 18deg, rgba(111, 214, 95, 0.02) 38deg, rgba(111, 214, 95, 0) 58deg, rgba(111, 214, 95, 0) 360deg);
  -webkit-mask: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 62%, #000 74%, rgba(0, 0, 0, 0.75) 92%, rgba(0, 0, 0, 0) 100%);
  mask: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 62%, #000 74%, rgba(0, 0, 0, 0.75) 92%, rgba(0, 0, 0, 0) 100%);
  filter: blur(7px);
}

.radar-sweep::before
{
  background:
    conic-gradient(from 0deg, rgba(111, 214, 95, 0.2) 0deg, rgba(111, 214, 95, 0.09) 16deg, rgba(111, 214, 95, 0.025) 38deg, rgba(111, 214, 95, 0) 64deg, rgba(111, 214, 95, 0) 360deg),
    conic-gradient(from 9deg, rgba(111, 214, 95, 0.06) 0deg, rgba(111, 214, 95, 0.015) 22deg, rgba(111, 214, 95, 0) 52deg, rgba(111, 214, 95, 0) 360deg);
  filter: blur(6px);
}
.sweep-band:nth-child(1)
{
  background:
    conic-gradient(from 358deg, rgba(111, 214, 95, 0.24) 0deg, rgba(111, 214, 95, 0.13) 46deg, rgba(111, 214, 95, 0.06) 104deg, rgba(111, 214, 95, 0.02) 152deg, rgba(111, 214, 95, 0) 196deg, rgba(111, 214, 95, 0) 360deg),
    conic-gradient(from 12deg, rgba(111, 214, 95, 0.05) 0deg, rgba(111, 214, 95, 0.015) 60deg, rgba(111, 214, 95, 0) 128deg, rgba(111, 214, 95, 0) 360deg);
  -webkit-mask: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.4) 0%, #000 16%, #000 32%, rgba(0, 0, 0, 0) 48%);
  mask: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.4) 0%, #000 16%, #000 32%, rgba(0, 0, 0, 0) 48%);
  filter: blur(4px);
}
.sweep-band:nth-child(2)
{
  background: conic-gradient(from 4deg, rgba(111, 214, 95, 0.26) 0deg, rgba(111, 214, 95, 0.1) 16deg, rgba(111, 214, 95, 0.02) 34deg, rgba(111, 214, 95, 0) 54deg, rgba(111, 214, 95, 0) 360deg);
  -webkit-mask: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 22%, #000 36%, #000 52%, rgba(0, 0, 0, 0) 66%);
  mask: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 22%, #000 36%, #000 52%, rgba(0, 0, 0, 0) 66%);
  filter: blur(5px);
}
.sweep-band:nth-child(3)
{
  background:
    conic-gradient(from 355deg, rgba(111, 214, 95, 0.21) 0deg, rgba(111, 214, 95, 0.13) 38deg, rgba(111, 214, 95, 0.07) 86deg, rgba(111, 214, 95, 0.022) 124deg, rgba(111, 214, 95, 0) 158deg, rgba(111, 214, 95, 0) 360deg),
    conic-gradient(from 20deg, rgba(160, 255, 150, 0.04) 0deg, rgba(111, 214, 95, 0.012) 54deg, rgba(111, 214, 95, 0) 112deg, rgba(111, 214, 95, 0) 360deg);
  -webkit-mask: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 42%, #000 56%, #000 72%, rgba(0, 0, 0, 0) 86%);
  mask: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 42%, #000 56%, #000 72%, rgba(0, 0, 0, 0) 86%);
  filter: blur(4px);
}
.sweep-band:nth-child(4)
{
  background: conic-gradient(from 7deg, rgba(111, 214, 95, 0.2) 0deg, rgba(111, 214, 95, 0.07) 13deg, rgba(111, 214, 95, 0.015) 27deg, rgba(111, 214, 95, 0) 42deg, rgba(111, 214, 95, 0) 360deg);
  -webkit-mask: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 64%, #000 76%, rgba(0, 0, 0, 0.7) 92%, rgba(0, 0, 0, 0) 100%);
  mask: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 64%, #000 76%, rgba(0, 0, 0, 0.7) 92%, rgba(0, 0, 0, 0) 100%);
  filter: blur(7px);
}











@keyframes sweep-live-1
{
  0%,
  100%
  {
    transform: rotate(0deg);
    opacity: 1;
  }
  50%
  {
    transform: rotate(7deg);
    opacity: 0.52;
  }
}

@keyframes sweep-live-2
{
  0%,
  100%
  {
    transform: rotate(2deg);
    opacity: 0.88;
  }
  45%
  {
    transform: rotate(12deg);
    opacity: 0.42;
  }
}
@keyframes sweep-live-3
{
  0%,
  100%
  {
    transform: rotate(0deg);
    opacity: 0.98;
  }
  55%
  {
    transform: rotate(6deg);
    opacity: 0.58;
  }
}
@keyframes sweep-live-4
{
  0%,
  100%
  {
    transform: rotate(3deg);
    opacity: 0.82;
  }
  40%
  {
    transform: rotate(14deg);
    opacity: 0.3;
  }
}
@keyframes sweep-haze
{
  0%,
  100%
  {
    opacity: 1;
  }
  50%
  {
    opacity: 0.72;
  }
}
@keyframes sweep-beam
{
  0%,
  100%
  {
    opacity: 1;
  }
  38%
  {
    opacity: 0.84;
  }
  62%
  {
    opacity: 0.93;
  }
}
.sweep-band:nth-child(1)
{
  animation: sweep-live-1 4.3s ease-in-out infinite;
}
.sweep-band:nth-child(2)
{
  animation: sweep-live-2 3.1s ease-in-out infinite;
}
.sweep-band:nth-child(3)
{
  animation: sweep-live-3 5.7s ease-in-out infinite;
}
.sweep-band:nth-child(4)
{
  animation: sweep-live-4 2.6s ease-in-out infinite;
}
.radar-sweep::before
{
  animation: sweep-haze 3.7s ease-in-out infinite;
}
.radar-sweep::after
{
  animation: sweep-beam 1.9s ease-in-out infinite;
}




@keyframes sweep-live-1
{
  0%,
  100%
  {
    transform: rotate(0deg);
    opacity: 1;
  }
  50%
  {
    transform: rotate(11deg);
    opacity: 0.24;
  }
}
@keyframes sweep-live-2
{
  0%,
  100%
  {
    transform: rotate(1deg);
    opacity: 0.94;
  }
  45%
  {
    transform: rotate(18deg);
    opacity: 0.16;
  }
}
@keyframes sweep-live-3
{
  0%,
  100%
  {
    transform: rotate(0deg);
    opacity: 1;
  }
  55%
  {
    transform: rotate(9deg);
    opacity: 0.3;
  }
}
@keyframes sweep-live-4
{
  0%,
  100%
  {
    transform: rotate(2deg);
    opacity: 0.9;
  }
  40%
  {
    transform: rotate(20deg);
    opacity: 0.12;
  }
}
@keyframes sweep-haze
{
  0%,
  100%
  {
    opacity: 1;
  }
  50%
  {
    opacity: 0.55;
  }
}
.sweep-band:nth-child(1)
{
  animation: sweep-live-1 4.3s ease-in-out infinite;
  animation-delay: -0.7s;
}
.sweep-band:nth-child(2)
{
  animation: sweep-live-2 3.1s ease-in-out infinite;
  animation-delay: -2.2s;
}
.sweep-band:nth-child(3)
{
  animation: sweep-live-3 5.7s ease-in-out infinite;
  animation-delay: -3.9s;
}
.sweep-band:nth-child(4)
{
  animation: sweep-live-4 2.6s ease-in-out infinite;
  animation-delay: -1.1s;
}
.radar-sweep::before
{
  animation: sweep-haze 3.7s ease-in-out infinite;
  animation-delay: -1.6s;
}





.sweep-band
{
  display: none;
}
.radar-sweep::after
{
  animation: none;
}
.radar-sweep::before
{
  animation: none;
  background: conic-gradient(from 0deg,
      rgba(111, 214, 95, 0.32) 0deg,
      rgba(111, 214, 95, 0.242) 5deg,
      rgba(111, 214, 95, 0.183) 10deg,
      rgba(111, 214, 95, 0.139) 15deg,
      rgba(111, 214, 95, 0.105) 20deg,
      rgba(111, 214, 95, 0.079) 25deg,
      rgba(111, 214, 95, 0.06) 30deg,
      rgba(111, 214, 95, 0.045) 35deg,
      rgba(111, 214, 95, 0.034) 40deg,
      rgba(111, 214, 95, 0.026) 45deg,
      rgba(111, 214, 95, 0.02) 50deg,
      rgba(111, 214, 95, 0.015) 55deg,
      rgba(111, 214, 95, 0.011) 60deg,
      rgba(111, 214, 95, 0.008) 65deg,
      rgba(111, 214, 95, 0.004) 70deg,
      rgba(111, 214, 95, 0) 78deg,
      rgba(111, 214, 95, 0) 360deg);
  -webkit-mask: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.5) 0%, #000 28%, #000 74%, rgba(0, 0, 0, 0.5) 93%, rgba(0, 0, 0, 0.2) 100%);
  mask: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.5) 0%, #000 28%, #000 74%, rgba(0, 0, 0, 0.5) 93%, rgba(0, 0, 0, 0.2) 100%);
  filter: blur(2px);
}


.radar-sweep::before
{
  background: conic-gradient(from 0deg,
      rgba(111, 214, 95, 0.32) 0deg,
      rgba(111, 214, 95, 0.27) 5deg,
      rgba(111, 214, 95, 0.227) 10deg,
      rgba(111, 214, 95, 0.191) 15deg,
      rgba(111, 214, 95, 0.161) 20deg,
      rgba(111, 214, 95, 0.136) 25deg,
      rgba(111, 214, 95, 0.114) 30deg,
      rgba(111, 214, 95, 0.096) 35deg,
      rgba(111, 214, 95, 0.081) 40deg,
      rgba(111, 214, 95, 0.068) 45deg,
      rgba(111, 214, 95, 0.058) 50deg,
      rgba(111, 214, 95, 0.049) 55deg,
      rgba(111, 214, 95, 0.041) 60deg,
      rgba(111, 214, 95, 0.034) 65deg,
      rgba(111, 214, 95, 0.029) 70deg,
      rgba(111, 214, 95, 0.02) 75deg,
      rgba(111, 214, 95, 0.012) 80deg,
      rgba(111, 214, 95, 0.005) 85deg,
      rgba(111, 214, 95, 0) 92deg,
      rgba(111, 214, 95, 0) 360deg);
  filter: blur(3px);
}


.sweep-band
{
  display: block;
}
@keyframes sweep-drag-a
{
  0%,
  100%
  {
    transform: rotate(0deg);
    opacity: 1;
  }
  50%
  {
    transform: rotate(5deg);
    opacity: 0.82;
  }
}
@keyframes sweep-drag-b
{
  0%,
  100%
  {
    transform: rotate(0deg);
    opacity: 0.95;
  }
  50%
  {
    transform: rotate(9deg);
    opacity: 0.76;
  }
}
@keyframes sweep-drag-c
{
  0%,
  100%
  {
    transform: rotate(2deg);
    opacity: 1;
  }
  50%
  {
    transform: rotate(8deg);
    opacity: 0.8;
  }
}
@keyframes sweep-drag-d
{
  0%,
  100%
  {
    transform: rotate(0deg);
    opacity: 0.9;
  }
  50%
  {
    transform: rotate(12deg);
    opacity: 0.72;
  }
}



.radar-sweep::before
{
  background: conic-gradient(from 0deg,
      rgba(111, 214, 95, 0.2) 0deg, rgba(111, 214, 95, 0.155) 6deg, rgba(111, 214, 95, 0.115) 12deg,
      rgba(111, 214, 95, 0.08) 18deg, rgba(111, 214, 95, 0.05) 24deg, rgba(111, 214, 95, 0.022) 30deg,
      rgba(111, 214, 95, 0) 38deg, rgba(111, 214, 95, 0) 360deg);
  filter: blur(4px);
}


.sweep-band:nth-child(1)
{
  background: conic-gradient(from 0deg,
      rgba(111, 214, 95, 0.15) 0deg, rgba(111, 214, 95, 0.115) 8deg, rgba(111, 214, 95, 0.08) 16deg,
      rgba(111, 214, 95, 0.05) 24deg, rgba(111, 214, 95, 0.024) 32deg, rgba(111, 214, 95, 0) 42deg,
      rgba(111, 214, 95, 0) 360deg);
  -webkit-mask: radial-gradient(circle closest-side at 50% 50%, #000 0%, #000 38%, rgba(0, 0, 0, 0) 54%);
  mask: radial-gradient(circle closest-side at 50% 50%, #000 0%, #000 38%, rgba(0, 0, 0, 0) 54%);
  filter: blur(5px);
  animation: sweep-drag-a 7.3s ease-in-out infinite;
  animation-delay: -1.4s;
}


.sweep-band:nth-child(2)
{
  background: conic-gradient(from 0deg,
      rgba(111, 214, 95, 0) 4deg, rgba(111, 214, 95, 0.13) 12deg, rgba(111, 214, 95, 0.1) 22deg,
      rgba(111, 214, 95, 0.07) 34deg, rgba(111, 214, 95, 0.042) 46deg, rgba(111, 214, 95, 0.018) 56deg,
      rgba(111, 214, 95, 0) 66deg, rgba(111, 214, 95, 0) 360deg);
  -webkit-mask: radial-gradient(circle closest-side at 50% 50%, rgba(0, 0, 0, 0) 20%, #000 34%, #000 58%, rgba(0, 0, 0, 0) 74%);
  mask: radial-gradient(circle closest-side at 50% 50%, rgba(0, 0, 0, 0) 20%, #000 34%, #000 58%, rgba(0, 0, 0, 0) 74%);
  filter: blur(7px);
  animation: sweep-drag-b 9.1s ease-in-out infinite;
  animation-delay: -3.8s;
}


.sweep-band:nth-child(3)
{
  background: conic-gradient(from 0deg,
      rgba(111, 214, 95, 0) 10deg, rgba(111, 214, 95, 0.105) 20deg, rgba(111, 214, 95, 0.082) 34deg,
      rgba(111, 214, 95, 0.058) 48deg, rgba(111, 214, 95, 0.036) 62deg, rgba(111, 214, 95, 0.016) 74deg,
      rgba(111, 214, 95, 0) 86deg, rgba(111, 214, 95, 0) 360deg);
  -webkit-mask: radial-gradient(circle closest-side at 50% 50%, rgba(0, 0, 0, 0) 42%, #000 56%, #000 78%, rgba(0, 0, 0, 0) 92%);
  mask: radial-gradient(circle closest-side at 50% 50%, rgba(0, 0, 0, 0) 42%, #000 56%, #000 78%, rgba(0, 0, 0, 0) 92%);
  filter: blur(8px);
  animation: sweep-drag-c 11.7s ease-in-out infinite;
  animation-delay: -6.2s;
}

.sweep-band:nth-child(4)
{
  background: conic-gradient(from 0deg,
      rgba(111, 214, 95, 0) 18deg, rgba(111, 214, 95, 0.085) 30deg, rgba(111, 214, 95, 0.065) 45deg,
      rgba(111, 214, 95, 0.045) 60deg, rgba(111, 214, 95, 0.026) 74deg, rgba(111, 214, 95, 0.012) 86deg,
      rgba(111, 214, 95, 0) 98deg, rgba(111, 214, 95, 0) 360deg);
  -webkit-mask: radial-gradient(circle closest-side at 50% 50%, rgba(0, 0, 0, 0) 60%, #000 74%, #000 94%, rgba(0, 0, 0, 0.45) 100%);
  mask: radial-gradient(circle closest-side at 50% 50%, rgba(0, 0, 0, 0) 60%, #000 74%, #000 94%, rgba(0, 0, 0, 0.45) 100%);
  filter: blur(9px);
  animation: sweep-drag-d 6.7s ease-in-out infinite;
  animation-delay: -2.5s;
}


.radar-sweep::before
{
  background: conic-gradient(from 0deg,
      rgba(111, 214, 95, 0.29) 0deg, rgba(111, 214, 95, 0.225) 6deg, rgba(111, 214, 95, 0.167) 12deg,
      rgba(111, 214, 95, 0.116) 18deg, rgba(111, 214, 95, 0.072) 24deg, rgba(111, 214, 95, 0.032) 30deg,
      rgba(111, 214, 95, 0) 38deg, rgba(111, 214, 95, 0) 360deg);
}
.sweep-band:nth-child(1)
{
  background: conic-gradient(from 0deg,
      rgba(111, 214, 95, 0.2) 0deg, rgba(111, 214, 95, 0.155) 8deg, rgba(111, 214, 95, 0.108) 16deg,
      rgba(111, 214, 95, 0.068) 24deg, rgba(111, 214, 95, 0.033) 32deg, rgba(111, 214, 95, 0) 44deg,
      rgba(111, 214, 95, 0) 360deg);
}
.sweep-band:nth-child(2)
{
  background: conic-gradient(from 0deg,
      rgba(111, 214, 95, 0) 3deg, rgba(111, 214, 95, 0.175) 13deg, rgba(111, 214, 95, 0.135) 23deg,
      rgba(111, 214, 95, 0.095) 35deg, rgba(111, 214, 95, 0.057) 47deg, rgba(111, 214, 95, 0.025) 58deg,
      rgba(111, 214, 95, 0) 70deg, rgba(111, 214, 95, 0) 360deg);
}
.sweep-band:nth-child(3)
{
  background: conic-gradient(from 0deg,
      rgba(111, 214, 95, 0) 6deg, rgba(111, 214, 95, 0.062) 14deg, rgba(111, 214, 95, 0.115) 26deg,
      rgba(111, 214, 95, 0.088) 40deg, rgba(111, 214, 95, 0.058) 54deg, rgba(111, 214, 95, 0.032) 68deg,
      rgba(111, 214, 95, 0.014) 80deg, rgba(111, 214, 95, 0) 94deg, rgba(111, 214, 95, 0) 360deg);
}
.sweep-band:nth-child(4)
{
  background: conic-gradient(from 0deg,
      rgba(111, 214, 95, 0) 14deg, rgba(111, 214, 95, 0.055) 26deg, rgba(111, 214, 95, 0.09) 38deg,
      rgba(111, 214, 95, 0.07) 52deg, rgba(111, 214, 95, 0.048) 66deg, rgba(111, 214, 95, 0.028) 80deg,
      rgba(111, 214, 95, 0.012) 92deg, rgba(111, 214, 95, 0) 104deg, rgba(111, 214, 95, 0) 360deg);
}


.radar-paint
{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}
.radar-sweep::before
{
  display: none;
}
.sweep-band
{
  display: none;
}


.radar-blip
{
  width: 11px;
  height: 4.5px;
  margin: -2.25px 0 0 -5.5px;
  border-radius: 50%;
  background: linear-gradient(to right,
      rgba(111, 214, 95, 0) 0%, rgba(140, 234, 124, 0.72) 20%, #C6FFB6 34%,
      rgba(111, 214, 95, 0.55) 62%, rgba(111, 214, 95, 0.17) 84%, rgba(111, 214, 95, 0) 100%);
  box-shadow: 0 0 7px rgba(111, 214, 95, 0.5);
}
.radar-blip.hostile
{
  background: linear-gradient(to right,
      rgba(224, 69, 69, 0) 0%, rgba(238, 104, 104, 0.72) 20%, #FFB0B0 34%,
      rgba(224, 69, 69, 0.55) 62%, rgba(224, 69, 69, 0.17) 84%, rgba(224, 69, 69, 0) 100%);
  box-shadow: 0 0 7px rgba(224, 69, 69, 0.55);
}


.radar-scope
{
  background: radial-gradient(circle at 50% 50%, rgba(9, 19, 32, 0.5), rgba(4, 10, 20, 0.55) 78%);
}

/* corner.webp converted to svg*/
:root
{

  --corner-w: min(calc(0.143 * (100vw - 64px)), 200px);
  --corner-pull: 0px;
  --corner-tl: url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%20258%20238%27%3E%3Cpath%20d=%27M0.0%20237.5%20L-0.5%2021.0%20L3.0%2017.5%20L25.0%20-0.5%20L177.0%20-0.5%20L197.0%206.5%20L257.5%207.0%20L257.0%2029.5%20L32.0%2029.5%20L31.5%20105.0%20L23.5%20141.0%20L23.5%20195.0%20L0.0%20237.5%20Z%27%20fill=%27%237FB7D2%27/%3E%3Cpath%20d=%27M4.0%20219.5%20L3.5%2024.0%20L5.0%2022.5%20L29.0%203.5%20L173.0%203.5%20L192.0%2010.5%20L252.5%2011.0%20L252.0%2025.5%20L30.0%2025.5%20L27.5%2028.0%20L27.5%20100.0%20L19.5%20135.0%20L19.5%20192.0%20L4.0%20219.5%20Z%27%20fill=%27%230C1222%27/%3E%3C/svg%3E");
  --corner-tr: url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%20258%20238%27%3E%3Cg%20transform=%27translate%28258,0%29%20scale%28-1,1%29%27%3E%3Cpath%20d=%27M0.0%20237.5%20L-0.5%2021.0%20L3.0%2017.5%20L25.0%20-0.5%20L177.0%20-0.5%20L197.0%206.5%20L257.5%207.0%20L257.0%2029.5%20L32.0%2029.5%20L31.5%20105.0%20L23.5%20141.0%20L23.5%20195.0%20L0.0%20237.5%20Z%27%20fill=%27%237FB7D2%27/%3E%3Cpath%20d=%27M4.0%20219.5%20L3.5%2024.0%20L5.0%2022.5%20L29.0%203.5%20L173.0%203.5%20L192.0%2010.5%20L252.5%2011.0%20L252.0%2025.5%20L30.0%2025.5%20L27.5%2028.0%20L27.5%20100.0%20L19.5%20135.0%20L19.5%20192.0%20L4.0%20219.5%20Z%27%20fill=%27%230C1222%27/%3E%3C/g%3E%3C/svg%3E");
  --corner-bl: url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%20326%20264%27%3E%3Cpath%20d=%27M104.0%20263.5%20L27.0%20263.5%20L-0.5%20244.0%20L0.0%2027.5%20L22.5%2066.0%20L22.5%20140.0%20L29.5%20170.0%20L30.0%20234.5%20L194.0%20234.5%20L237.0%20226.5%20L325.5%20227.0%20L325.0%20259.5%20L120.0%20259.5%20L104.0%20263.5%20Z%27%20fill=%27%237FB7D2%27/%3E%3Cpath%20d=%27M99.0%20259.5%20L30.0%20259.5%20L3.5%20240.0%20L4.0%2044.5%20L18.5%2070.0%20L18.5%20145.0%20L25.5%20176.0%20L25.5%20236.0%20L28.0%20238.5%20L201.0%20238.5%20L237.0%20231.5%20L321.5%20232.0%20L321.0%20255.5%20L115.0%20255.5%20L99.0%20259.5%20Z%27%20fill=%27%230C1222%27/%3E%3C/svg%3E");
  --corner-br: url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%20326%20264%27%3E%3Cg%20transform=%27translate%28326,0%29%20scale%28-1,1%29%27%3E%3Cpath%20d=%27M104.0%20263.5%20L27.0%20263.5%20L-0.5%20244.0%20L0.0%2027.5%20L22.5%2066.0%20L22.5%20140.0%20L29.5%20170.0%20L30.0%20234.5%20L194.0%20234.5%20L237.0%20226.5%20L325.5%20227.0%20L325.0%20259.5%20L120.0%20259.5%20L104.0%20263.5%20Z%27%20fill=%27%237FB7D2%27/%3E%3Cpath%20d=%27M99.0%20259.5%20L30.0%20259.5%20L3.5%20240.0%20L4.0%2044.5%20L18.5%2070.0%20L18.5%20145.0%20L25.5%20176.0%20L25.5%20236.0%20L28.0%20238.5%20L201.0%20238.5%20L237.0%20231.5%20L321.5%20232.0%20L321.0%20255.5%20L115.0%20255.5%20L99.0%20259.5%20Z%27%20fill=%27%230C1222%27/%3E%3C/g%3E%3C/svg%3E");
}

.boot-frame
{
  --corner-w: 97px;
  --corner-pull: 8px;
}

.shutdown-box,
.login-box
{
  --corner-w: 54px;
}

.hud-frame::before,
.hud-frame::after,
.boot-frame::before,
.boot-frame::after
{
  content: '';
  position: absolute;
  height: 42%;
  pointer-events: none;
  background-repeat: no-repeat;
  z-index: 20;
}


.hud-frame::before,
.boot-frame::before
{
  left: calc(2px - 0.120 * var(--corner-w) - var(--corner-pull));
  right: calc(2px - 0.120 * var(--corner-w) - var(--corner-pull));
  top: calc(2px - 0.116 * var(--corner-w) - var(--corner-pull));
  background-image: var(--corner-tl), var(--corner-tr);
  background-position: left top, right top;
  background-size: var(--corner-w) auto, var(--corner-w) auto;
}


.hud-frame::after,
.boot-frame::after
{
  left: calc(2px - 0.074 * var(--corner-w) - var(--corner-pull));
  right: calc(2px - 0.074 * var(--corner-w) - var(--corner-pull));
  bottom: calc(2px - 0.101 * var(--corner-w) - var(--corner-pull));
  background-image: var(--corner-bl), var(--corner-br);
  background-position: left bottom, right bottom;
  background-size: var(--corner-w) auto, var(--corner-w) auto;
}


.shutdown-box,
.login-box
{
  overflow: visible;
}

.shutdown-box::before,
.login-box::before
{
  border-radius: 6px;
}

.shutdown-box::after,
.login-box::after
{
  content: '';
  position: absolute;
  left: calc(2px - 0.120 * var(--corner-w));
  right: calc(2px - 0.120 * var(--corner-w));
  top: calc(2px - 0.116 * var(--corner-w));
  bottom: calc(2px - 0.101 * var(--corner-w));
  pointer-events: none;
  z-index: 3;
  background-image: var(--corner-tl), var(--corner-tr), var(--corner-bl), var(--corner-br);
  background-position: left top, right top, left bottom, right bottom;
  background-repeat: no-repeat;
  background-size: var(--corner-w) auto, var(--corner-w) auto, var(--corner-w) auto, var(--corner-w) auto;
}



.window.minimizing~.hud-frame:not(.wild-die-steps)
{
  animation: win-min-spring 0.5s ease;
}

.window.maximizing~.hud-frame:not(.wild-die-steps)
{
  animation: win-max-pop 0.4s ease;
}





.boot-screen
{
  overflow: visible;
}
.boot-screen::before,
.boot-screen::after
{
  border-radius: 6px;
}


.hud-frame::before
{
  left: calc(5px - 0.120 * var(--corner-w));
  right: calc(5px - 0.120 * var(--corner-w));
  top: calc(5px - 0.116 * var(--corner-w));
}

/* goldsvg */
:root
{
  --gold-tl: url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%20128%20128%27%3E%3Cg%20transform=%27translate%280,128%29%20scale%281,-1%29%27%3E%3Cpath%20d=%27M120%20126%20L117%20126%20L114%20126%20L111%20126%20L108%20126%20L105%20126%20L102%20126%20L99%20126%20L96%20126%20L93%20126%20L90%20126%20L87%20126%20L84%20126%20L81%20126%20L78%20126%20L75%20126%20L72%20126%20L69%20126%20L66%20126%20L63%20126%20L60%20126%20L57%20126%20L54%20126%20L51%20126%20L48%20126%20L46%20126%20L43%20126%20L41%20124%20L40%20123%20L38%20122%20L36%20120%20L35%20118%20L34%20117%20L32%20116%20L30%20114%20L29%20112%20L28%20111%20L26%20110%20L24%20108%20L23%20106%20L22%20104%20L20%20103%20L19%20102%20L18%20100%20L16%2098%20L14%2097%20L13%2096%20L12%2094%20L10%2092%20L8%2091%20L7%2090%20L6%2088%20L4%2086%20L2%2085%20L2%2083%20L2%2080%20L0%2078%20L0%2075%20L0%2072%20L0%2069%20L0%2066%20L0%2063%20L0%2060%20L0%2057%20L0%2054%20L0%2051%20L0%2048%20L0%2045%20L0%2042%20L0%2039%20L0%2036%20L0%2033%20L0%2030%20L0%2027%20L0%2024%20L0%2021%20L0%2018%20L0%2015%20L0%2012%20L0%209%20L2%207%20L2%204%20L3%202%20L5%202%20L8%202%20L9%204%20L10%205%20L10%208%20L10%2011%20L10%2014%20L10%2017%20L10%2020%20L10%2023%20L10%2026%20L10%2029%20L10%2032%20L10%2035%20L10%2038%20L10%2041%20L10%2044%20L10%2047%20L10%2050%20L10%2053%20L10%2056%20L10%2059%20L10%2062%20L10%2065%20L10%2068%20L10%2071%20L10%2074%20L10%2077%20L11%2080%20L12%2081%20L14%2082%20L16%2084%20L17%2086%20L18%2087%20L20%2089%20L21%2090%20L22%2092%20L24%2094%20L26%2095%20L27%2096%20L28%2098%20L30%20100%20L32%20101%20L33%20102%20L34%20104%20L36%20106%20L38%20107%20L39%20108%20L40%20110%20L42%20112%20L43%20114%20L45%20114%20L46%20116%20L49%20116%20L52%20116%20L55%20116%20L58%20116%20L61%20116%20L64%20116%20L67%20116%20L70%20116%20L73%20116%20L76%20116%20L79%20116%20L82%20116%20L85%20116%20L88%20116%20L91%20116%20L94%20116%20L97%20116%20L100%20116%20L103%20116%20L106%20116%20L109%20116%20L112%20116%20L115%20116%20L118%20116%20L121%20116%20L123%20118%20L125%20118%20L126%20121%20L125%20124%20L124%20125%20L121%20126%20Z%27%20fill=%27%23F4C846%27/%3E%3C/g%3E%3C/svg%3E");
  --gold-tr: url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%20128%20128%27%3E%3Cg%20transform=%27translate%28128,128%29%20scale%28-1,-1%29%27%3E%3Cpath%20d=%27M120%20126%20L117%20126%20L114%20126%20L111%20126%20L108%20126%20L105%20126%20L102%20126%20L99%20126%20L96%20126%20L93%20126%20L90%20126%20L87%20126%20L84%20126%20L81%20126%20L78%20126%20L75%20126%20L72%20126%20L69%20126%20L66%20126%20L63%20126%20L60%20126%20L57%20126%20L54%20126%20L51%20126%20L48%20126%20L46%20126%20L43%20126%20L41%20124%20L40%20123%20L38%20122%20L36%20120%20L35%20118%20L34%20117%20L32%20116%20L30%20114%20L29%20112%20L28%20111%20L26%20110%20L24%20108%20L23%20106%20L22%20104%20L20%20103%20L19%20102%20L18%20100%20L16%2098%20L14%2097%20L13%2096%20L12%2094%20L10%2092%20L8%2091%20L7%2090%20L6%2088%20L4%2086%20L2%2085%20L2%2083%20L2%2080%20L0%2078%20L0%2075%20L0%2072%20L0%2069%20L0%2066%20L0%2063%20L0%2060%20L0%2057%20L0%2054%20L0%2051%20L0%2048%20L0%2045%20L0%2042%20L0%2039%20L0%2036%20L0%2033%20L0%2030%20L0%2027%20L0%2024%20L0%2021%20L0%2018%20L0%2015%20L0%2012%20L0%209%20L2%207%20L2%204%20L3%202%20L5%202%20L8%202%20L9%204%20L10%205%20L10%208%20L10%2011%20L10%2014%20L10%2017%20L10%2020%20L10%2023%20L10%2026%20L10%2029%20L10%2032%20L10%2035%20L10%2038%20L10%2041%20L10%2044%20L10%2047%20L10%2050%20L10%2053%20L10%2056%20L10%2059%20L10%2062%20L10%2065%20L10%2068%20L10%2071%20L10%2074%20L10%2077%20L11%2080%20L12%2081%20L14%2082%20L16%2084%20L17%2086%20L18%2087%20L20%2089%20L21%2090%20L22%2092%20L24%2094%20L26%2095%20L27%2096%20L28%2098%20L30%20100%20L32%20101%20L33%20102%20L34%20104%20L36%20106%20L38%20107%20L39%20108%20L40%20110%20L42%20112%20L43%20114%20L45%20114%20L46%20116%20L49%20116%20L52%20116%20L55%20116%20L58%20116%20L61%20116%20L64%20116%20L67%20116%20L70%20116%20L73%20116%20L76%20116%20L79%20116%20L82%20116%20L85%20116%20L88%20116%20L91%20116%20L94%20116%20L97%20116%20L100%20116%20L103%20116%20L106%20116%20L109%20116%20L112%20116%20L115%20116%20L118%20116%20L121%20116%20L123%20118%20L125%20118%20L126%20121%20L125%20124%20L124%20125%20L121%20126%20Z%27%20fill=%27%23F4C846%27/%3E%3C/g%3E%3C/svg%3E");
  --gold-bl: url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%20128%20128%27%3E%3Cpath%20d=%27M120%20126%20L117%20126%20L114%20126%20L111%20126%20L108%20126%20L105%20126%20L102%20126%20L99%20126%20L96%20126%20L93%20126%20L90%20126%20L87%20126%20L84%20126%20L81%20126%20L78%20126%20L75%20126%20L72%20126%20L69%20126%20L66%20126%20L63%20126%20L60%20126%20L57%20126%20L54%20126%20L51%20126%20L48%20126%20L46%20126%20L43%20126%20L41%20124%20L40%20123%20L38%20122%20L36%20120%20L35%20118%20L34%20117%20L32%20116%20L30%20114%20L29%20112%20L28%20111%20L26%20110%20L24%20108%20L23%20106%20L22%20104%20L20%20103%20L19%20102%20L18%20100%20L16%2098%20L14%2097%20L13%2096%20L12%2094%20L10%2092%20L8%2091%20L7%2090%20L6%2088%20L4%2086%20L2%2085%20L2%2083%20L2%2080%20L0%2078%20L0%2075%20L0%2072%20L0%2069%20L0%2066%20L0%2063%20L0%2060%20L0%2057%20L0%2054%20L0%2051%20L0%2048%20L0%2045%20L0%2042%20L0%2039%20L0%2036%20L0%2033%20L0%2030%20L0%2027%20L0%2024%20L0%2021%20L0%2018%20L0%2015%20L0%2012%20L0%209%20L2%207%20L2%204%20L3%202%20L5%202%20L8%202%20L9%204%20L10%205%20L10%208%20L10%2011%20L10%2014%20L10%2017%20L10%2020%20L10%2023%20L10%2026%20L10%2029%20L10%2032%20L10%2035%20L10%2038%20L10%2041%20L10%2044%20L10%2047%20L10%2050%20L10%2053%20L10%2056%20L10%2059%20L10%2062%20L10%2065%20L10%2068%20L10%2071%20L10%2074%20L10%2077%20L11%2080%20L12%2081%20L14%2082%20L16%2084%20L17%2086%20L18%2087%20L20%2089%20L21%2090%20L22%2092%20L24%2094%20L26%2095%20L27%2096%20L28%2098%20L30%20100%20L32%20101%20L33%20102%20L34%20104%20L36%20106%20L38%20107%20L39%20108%20L40%20110%20L42%20112%20L43%20114%20L45%20114%20L46%20116%20L49%20116%20L52%20116%20L55%20116%20L58%20116%20L61%20116%20L64%20116%20L67%20116%20L70%20116%20L73%20116%20L76%20116%20L79%20116%20L82%20116%20L85%20116%20L88%20116%20L91%20116%20L94%20116%20L97%20116%20L100%20116%20L103%20116%20L106%20116%20L109%20116%20L112%20116%20L115%20116%20L118%20116%20L121%20116%20L123%20118%20L125%20118%20L126%20121%20L125%20124%20L124%20125%20L121%20126%20Z%27%20fill=%27%23F4C846%27/%3E%3C/svg%3E");
  --gold-br: url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%20128%20128%27%3E%3Cg%20transform=%27translate%28128,0%29%20scale%28-1,1%29%27%3E%3Cpath%20d=%27M120%20126%20L117%20126%20L114%20126%20L111%20126%20L108%20126%20L105%20126%20L102%20126%20L99%20126%20L96%20126%20L93%20126%20L90%20126%20L87%20126%20L84%20126%20L81%20126%20L78%20126%20L75%20126%20L72%20126%20L69%20126%20L66%20126%20L63%20126%20L60%20126%20L57%20126%20L54%20126%20L51%20126%20L48%20126%20L46%20126%20L43%20126%20L41%20124%20L40%20123%20L38%20122%20L36%20120%20L35%20118%20L34%20117%20L32%20116%20L30%20114%20L29%20112%20L28%20111%20L26%20110%20L24%20108%20L23%20106%20L22%20104%20L20%20103%20L19%20102%20L18%20100%20L16%2098%20L14%2097%20L13%2096%20L12%2094%20L10%2092%20L8%2091%20L7%2090%20L6%2088%20L4%2086%20L2%2085%20L2%2083%20L2%2080%20L0%2078%20L0%2075%20L0%2072%20L0%2069%20L0%2066%20L0%2063%20L0%2060%20L0%2057%20L0%2054%20L0%2051%20L0%2048%20L0%2045%20L0%2042%20L0%2039%20L0%2036%20L0%2033%20L0%2030%20L0%2027%20L0%2024%20L0%2021%20L0%2018%20L0%2015%20L0%2012%20L0%209%20L2%207%20L2%204%20L3%202%20L5%202%20L8%202%20L9%204%20L10%205%20L10%208%20L10%2011%20L10%2014%20L10%2017%20L10%2020%20L10%2023%20L10%2026%20L10%2029%20L10%2032%20L10%2035%20L10%2038%20L10%2041%20L10%2044%20L10%2047%20L10%2050%20L10%2053%20L10%2056%20L10%2059%20L10%2062%20L10%2065%20L10%2068%20L10%2071%20L10%2074%20L10%2077%20L11%2080%20L12%2081%20L14%2082%20L16%2084%20L17%2086%20L18%2087%20L20%2089%20L21%2090%20L22%2092%20L24%2094%20L26%2095%20L27%2096%20L28%2098%20L30%20100%20L32%20101%20L33%20102%20L34%20104%20L36%20106%20L38%20107%20L39%20108%20L40%20110%20L42%20112%20L43%20114%20L45%20114%20L46%20116%20L49%20116%20L52%20116%20L55%20116%20L58%20116%20L61%20116%20L64%20116%20L67%20116%20L70%20116%20L73%20116%20L76%20116%20L79%20116%20L82%20116%20L85%20116%20L88%20116%20L91%20116%20L94%20116%20L97%20116%20L100%20116%20L103%20116%20L106%20116%20L109%20116%20L112%20116%20L115%20116%20L118%20116%20L121%20116%20L123%20118%20L125%20118%20L126%20121%20L125%20124%20L124%20125%20L121%20126%20Z%27%20fill=%27%23F4C846%27/%3E%3C/g%3E%3C/svg%3E");
  --gold-w: 24px;
}





.info-box,
.comms-box,
.rep-list-box,
.rep-detail-col,
.suit-box,
.terminal,
.proj-card
{
  position: relative;
}

.terminal
{
  overflow: visible;
}

.term-output
{
  border-radius: 8px 8px 0 0;
}





.info-box::after,
.comms-box::after,
.rep-list-box::after,
.rep-detail-col::after,
.suit-box::after,
.terminal::after,
.proj-card::after
{
  content: '';
  position: absolute;
  inset: -7px;
  pointer-events: none;
  z-index: 3;
  background-image: var(--gold-tl), var(--gold-tr), var(--gold-bl), var(--gold-br);
  background-position: left top, right top, left bottom, right bottom;
  background-repeat: no-repeat;
  background-size: var(--gold-w) var(--gold-w), var(--gold-w) var(--gold-w),
    var(--gold-w) var(--gold-w), var(--gold-w) var(--gold-w);
}


.window.glitch~.hud-frame:not(.wild-die-steps)
{
  animation: page-glitch 0.1s linear infinite;
}

/* corner svg color logic*/
:root
{
  --corner-tl-red: url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%20258%20238%27%3E%3Cpath%20d=%27M0.0%20237.5%20L-0.5%2021.0%20L3.0%2017.5%20L25.0%20-0.5%20L177.0%20-0.5%20L197.0%206.5%20L257.5%207.0%20L257.0%2029.5%20L32.0%2029.5%20L31.5%20105.0%20L23.5%20141.0%20L23.5%20195.0%20L0.0%20237.5%20Z%27%20fill=%27%23E04545%27/%3E%3Cpath%20d=%27M4.0%20219.5%20L3.5%2024.0%20L5.0%2022.5%20L29.0%203.5%20L173.0%203.5%20L192.0%2010.5%20L252.5%2011.0%20L252.0%2025.5%20L30.0%2025.5%20L27.5%2028.0%20L27.5%20100.0%20L19.5%20135.0%20L19.5%20192.0%20L4.0%20219.5%20Z%27%20fill=%27%230C1222%27/%3E%3C/svg%3E");
  --corner-tr-red: url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%20258%20238%27%3E%3Cg%20transform=%27translate%28258,0%29%20scale%28-1,1%29%27%3E%3Cpath%20d=%27M0.0%20237.5%20L-0.5%2021.0%20L3.0%2017.5%20L25.0%20-0.5%20L177.0%20-0.5%20L197.0%206.5%20L257.5%207.0%20L257.0%2029.5%20L32.0%2029.5%20L31.5%20105.0%20L23.5%20141.0%20L23.5%20195.0%20L0.0%20237.5%20Z%27%20fill=%27%23E04545%27/%3E%3Cpath%20d=%27M4.0%20219.5%20L3.5%2024.0%20L5.0%2022.5%20L29.0%203.5%20L173.0%203.5%20L192.0%2010.5%20L252.5%2011.0%20L252.0%2025.5%20L30.0%2025.5%20L27.5%2028.0%20L27.5%20100.0%20L19.5%20135.0%20L19.5%20192.0%20L4.0%20219.5%20Z%27%20fill=%27%230C1222%27/%3E%3C/g%3E%3C/svg%3E");
  --corner-bl-red: url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%20326%20264%27%3E%3Cpath%20d=%27M104.0%20263.5%20L27.0%20263.5%20L-0.5%20244.0%20L0.0%2027.5%20L22.5%2066.0%20L22.5%20140.0%20L29.5%20170.0%20L30.0%20234.5%20L194.0%20234.5%20L237.0%20226.5%20L325.5%20227.0%20L325.0%20259.5%20L120.0%20259.5%20L104.0%20263.5%20Z%27%20fill=%27%23E04545%27/%3E%3Cpath%20d=%27M99.0%20259.5%20L30.0%20259.5%20L3.5%20240.0%20L4.0%2044.5%20L18.5%2070.0%20L18.5%20145.0%20L25.5%20176.0%20L25.5%20236.0%20L28.0%20238.5%20L201.0%20238.5%20L237.0%20231.5%20L321.5%20232.0%20L321.0%20255.5%20L115.0%20255.5%20L99.0%20259.5%20Z%27%20fill=%27%230C1222%27/%3E%3C/svg%3E");
  --corner-br-red: url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%20326%20264%27%3E%3Cg%20transform=%27translate%28326,0%29%20scale%28-1,1%29%27%3E%3Cpath%20d=%27M104.0%20263.5%20L27.0%20263.5%20L-0.5%20244.0%20L0.0%2027.5%20L22.5%2066.0%20L22.5%20140.0%20L29.5%20170.0%20L30.0%20234.5%20L194.0%20234.5%20L237.0%20226.5%20L325.5%20227.0%20L325.0%20259.5%20L120.0%20259.5%20L104.0%20263.5%20Z%27%20fill=%27%23E04545%27/%3E%3Cpath%20d=%27M99.0%20259.5%20L30.0%20259.5%20L3.5%20240.0%20L4.0%2044.5%20L18.5%2070.0%20L18.5%20145.0%20L25.5%20176.0%20L25.5%20236.0%20L28.0%20238.5%20L201.0%20238.5%20L237.0%20231.5%20L321.5%20232.0%20L321.0%20255.5%20L115.0%20255.5%20L99.0%20259.5%20Z%27%20fill=%27%230C1222%27/%3E%3C/g%3E%3C/svg%3E");
  --corner-tl-pink: url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%20258%20238%27%3E%3Cpath%20d=%27M0.0%20237.5%20L-0.5%2021.0%20L3.0%2017.5%20L25.0%20-0.5%20L177.0%20-0.5%20L197.0%206.5%20L257.5%207.0%20L257.0%2029.5%20L32.0%2029.5%20L31.5%20105.0%20L23.5%20141.0%20L23.5%20195.0%20L0.0%20237.5%20Z%27%20fill=%27%23E86AC8%27/%3E%3Cpath%20d=%27M4.0%20219.5%20L3.5%2024.0%20L5.0%2022.5%20L29.0%203.5%20L173.0%203.5%20L192.0%2010.5%20L252.5%2011.0%20L252.0%2025.5%20L30.0%2025.5%20L27.5%2028.0%20L27.5%20100.0%20L19.5%20135.0%20L19.5%20192.0%20L4.0%20219.5%20Z%27%20fill=%27%230C1222%27/%3E%3C/svg%3E");
  --corner-tr-pink: url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%20258%20238%27%3E%3Cg%20transform=%27translate%28258,0%29%20scale%28-1,1%29%27%3E%3Cpath%20d=%27M0.0%20237.5%20L-0.5%2021.0%20L3.0%2017.5%20L25.0%20-0.5%20L177.0%20-0.5%20L197.0%206.5%20L257.5%207.0%20L257.0%2029.5%20L32.0%2029.5%20L31.5%20105.0%20L23.5%20141.0%20L23.5%20195.0%20L0.0%20237.5%20Z%27%20fill=%27%23E86AC8%27/%3E%3Cpath%20d=%27M4.0%20219.5%20L3.5%2024.0%20L5.0%2022.5%20L29.0%203.5%20L173.0%203.5%20L192.0%2010.5%20L252.5%2011.0%20L252.0%2025.5%20L30.0%2025.5%20L27.5%2028.0%20L27.5%20100.0%20L19.5%20135.0%20L19.5%20192.0%20L4.0%20219.5%20Z%27%20fill=%27%230C1222%27/%3E%3C/g%3E%3C/svg%3E");
  --corner-bl-pink: url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%20326%20264%27%3E%3Cpath%20d=%27M104.0%20263.5%20L27.0%20263.5%20L-0.5%20244.0%20L0.0%2027.5%20L22.5%2066.0%20L22.5%20140.0%20L29.5%20170.0%20L30.0%20234.5%20L194.0%20234.5%20L237.0%20226.5%20L325.5%20227.0%20L325.0%20259.5%20L120.0%20259.5%20L104.0%20263.5%20Z%27%20fill=%27%23E86AC8%27/%3E%3Cpath%20d=%27M99.0%20259.5%20L30.0%20259.5%20L3.5%20240.0%20L4.0%2044.5%20L18.5%2070.0%20L18.5%20145.0%20L25.5%20176.0%20L25.5%20236.0%20L28.0%20238.5%20L201.0%20238.5%20L237.0%20231.5%20L321.5%20232.0%20L321.0%20255.5%20L115.0%20255.5%20L99.0%20259.5%20Z%27%20fill=%27%230C1222%27/%3E%3C/svg%3E");
  --corner-br-pink: url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%20326%20264%27%3E%3Cg%20transform=%27translate%28326,0%29%20scale%28-1,1%29%27%3E%3Cpath%20d=%27M104.0%20263.5%20L27.0%20263.5%20L-0.5%20244.0%20L0.0%2027.5%20L22.5%2066.0%20L22.5%20140.0%20L29.5%20170.0%20L30.0%20234.5%20L194.0%20234.5%20L237.0%20226.5%20L325.5%20227.0%20L325.0%20259.5%20L120.0%20259.5%20L104.0%20263.5%20Z%27%20fill=%27%23E86AC8%27/%3E%3Cpath%20d=%27M99.0%20259.5%20L30.0%20259.5%20L3.5%20240.0%20L4.0%2044.5%20L18.5%2070.0%20L18.5%20145.0%20L25.5%20176.0%20L25.5%20236.0%20L28.0%20238.5%20L201.0%20238.5%20L237.0%20231.5%20L321.5%20232.0%20L321.0%20255.5%20L115.0%20255.5%20L99.0%20259.5%20Z%27%20fill=%27%230C1222%27/%3E%3C/g%3E%3C/svg%3E");
}


.fight-box,
body.wild-red .hud-frame
{
  --corner-tl: var(--corner-tl-red);
  --corner-tr: var(--corner-tr-red);
  --corner-bl: var(--corner-bl-red);
  --corner-br: var(--corner-br-red);
}




.wildmsg-box.infected
{
  --corner-tl: var(--corner-tl-pink);
  --corner-tr: var(--corner-tr-pink);
  --corner-bl: var(--corner-bl-pink);
  --corner-br: var(--corner-br-pink);
}


.wildmsg-box.hostile
{
  --corner-tl: var(--corner-tl-red);
  --corner-tr: var(--corner-tr-red);
  --corner-bl: var(--corner-bl-red);
  --corner-br: var(--corner-br-red);
}


:root
{
  --corner-tl-blue: var(--corner-tl);
  --corner-tr-blue: var(--corner-tr);
  --corner-bl-blue: var(--corner-bl);
  --corner-br-blue: var(--corner-br);
}
.fight-box.fight-over
{
  --corner-tl: var(--corner-tl-blue);
  --corner-tr: var(--corner-tr-blue);
  --corner-bl: var(--corner-bl-blue);
  --corner-br: var(--corner-br-blue);
}


.hud-dot
{
  width: 21px;
  height: 15px;
  border-radius: 0;

  background: url("uiarties/Glyphs/Glyph5.webp") center / 25px 25px no-repeat;
  filter: brightness(0) invert(64.9%) sepia(100%) saturate(278%) hue-rotate(63deg) brightness(97%) contrast(86%);
  margin: -4px 0;
  animation: hud-glyph-pulse 1.4s ease-in-out infinite;
}
@keyframes hud-glyph-pulse
{
  0%,
  100%
  {
    opacity: 1;
  }
  50%
  {
    opacity: 0.35;
  }
}
.term-dot
{
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6FD65F;
  vertical-align: -1px;
}
.term-dot.glyph
{
  width: 19px;
  height: 14px;
  border-radius: 0;
  background: url("uiarties/Glyphs/Glyph6.webp") center / 23px 23px no-repeat;
  filter: brightness(0) invert(64.9%) sepia(100%) saturate(278%) hue-rotate(63deg) brightness(97%) contrast(86%);
  margin: -4px 0;
  vertical-align: middle;
}


.proj-caret
{
  width: 15px;
  height: 21px;
  background: url("uiarties/Glyphs/arrow.webp") center / 15px auto no-repeat;
  filter: brightness(0) invert(87.5%) sepia(100%) saturate(1158%) hue-rotate(321deg) brightness(101%) contrast(91%);
  margin-right: 2px;
  vertical-align: middle;
}

.crt.crt-resweep::before
{
  animation: none;
}

.proj-status
{
  margin: 12px 2px 0;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #6C86A8;
}
.proj-status b
{
  font-weight: 600;
  letter-spacing: 0.14em;
}
.st-stable
{
  color: #6FD65F;
}
.st-code
{
  color: #EFE45E;
}
.st-active
{
  color: #F4C846;
}
.st-dead
{
  color: #E04545;
}
.proj-status+.proj-desc
{
  margin-top: 8px;
}


.proj-media
{
  border: none;
  background: none;
  overflow: visible;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.proj-media img
{
  display: block;
  border: 2px solid #F4C846;
  border-radius: 12px;
}




.login-box.alarm
{
  --corner-tl: var(--corner-tl-red);
  --corner-tr: var(--corner-tr-red);
  --corner-bl: var(--corner-bl-red);
  --corner-br: var(--corner-br-red);
}


/* embedded crosshair*/
#fight-scope
{
  cursor: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAABhGlDQ1BJQ0MgUHJvZmlsZQAAeJx9kb9Lw0AcxV9TpSIVByuIdMhQnSyIijiWKhbBQmkrtOpgcukvaNKQpLg4Cq4FB38sVh1cnHV1cBUEwR8g/gHipOgiJX4vKbSI8eC4D+/uPe7eAUKzylSzJwaommWkE3Exl18VA68IYBjAJMISM/VkZjELz/F1Dx9f76I8y/vcn2NAKZgM8InEMaYbFvEG8eympXPeJw6xsqQQnxNPGHRB4keuyy6/cS45LPDMkJFNzxOHiMVSF8tdzMqGSjxDHFFUjfKFnMsK5y3OarXO2vfkLwwWtJUM12mGkcASkkhBhIw6KqjCQpRWjRQTadqPe/hHHX+KXDK5KmDkWEANKiTHD/4Hv7s1i9NTblIwDvS+2PbHGBDYBVoN2/4+tu3WCeB/Bq60jr/WBOY+SW90tMgRMLgNXFx3NHkPuNwBRp50yZAcyU9TKBaB9zP6pjwwdAv0r7m9tfdx+gBkqavlG+DgEBgvUfa6x7v7unv790y7vx/GqHLIj9aDuwAACpxJREFUeNq9mmmsXVUVx39rn3Pfa1/7OryWoUVkakUGAwgWBMOYGmwUISRUE5kSE4IxAQKJmGjwgyaomBCjfICYaPkgxcggiQ2RGQMqCEIYqmU2UIYOtG/oe/eevf9+OOu0u7f3DX0m7GTnvnvfPmuv9V9rr2kfo8eQZIA1X81MfMLDeQgZH8nMUvc663ooACVQZA8noAI6n5QgklpdfAiIvfgos4cKoB9oAX3+v/zBtqRxM4vToGbdwGQjTQWCPz/H+Sj9MzgPHWDCaU/sJYA/2A/MBeb7Z8sRGAdGGiRciJRr7TEeC2dzdnTmNA26wemmHAznYS4w4EIM+mfhNEeAHYBJSmbWyTXQoL6gA0sDrDQ4B9JHifRUSfkusM3XRkmdBmVnIjkTB3foHN6idSAwLxJLoCM0IrSlResNM/swW99y5pIzOwDM69BZatgSoVUFxRFCzwttTKSyj74tQJJUmZlKR6TlyC8KcDykGwLhWAhR8KcK7iz3CFvVfNs4QFvtkwuKtcDJkdhXUGxNpA+AYcMi0GfYQmBZIg1GxWHghYrqbjN7zgUZGGZ43iCDA8BBhh0cCOcJXREICxLpPeB2wx5186mc53ZzUPpcfUsK0ncgHBtJ0QihIFyUYKyC35c16qNmtkPSWYn0fcHSQHgE+AnwjJkNT2E+iyqqkwLhgoJiXVR8MxB+ZmZPShoEllVUSwPhDODKgmIwEmNBsTyRrgqEN4Gt2QEHSf2SDpR0pKQfSlJUrJKSomLy2Y7SzZJOmtDESVFaHxVfrVR9V9K8LiYLSaWkVjYbTefrBitVN0TFt6Li+glNHN9W+/RK1Y2VqrclqVIVo6IqVZXzdZekYyQdImlAkoWuQzcOyLBCKBlmgAKhBekS4Mo++jZAGguEL5VW/goYcyYLZzJlnquZ0R1A8HUtMxsurbxljLFTgbKk7+EWrfPAvlJQfDoSk2FBSO5ASLDL+dVuT+ebD0laIemsqPg7SR2XODaaSEry3+5wjQ1JWuzPB5+2H7OQNM/noqh4q6QUpfFa60mVYr2plKLiBkkXSDra95/TaCACbWrpdgTCeuD2RNoeCLvV7kh03Ft8GVjW5av3Z1hmx4cAZwbCi4m0OdT0ZEBBMGAkkdYHwjrgfedzAqi9kJkld4u7gO1OeEMgvAusNuwMw1qJFP3kfx14HXgXGHXhi0y1MxmF0xrowNIWLEikywNheSJFwwrDEvA2cE8gPOP7bQHGgLaZVXkcyKMcrpVtfibOBkYDYV6CFAiDCb4W4GUnOOJCNMhqBugXvveCFsxNpNMC4cxESoFQJFIyLAB3A084Lx8Bw85TpyEWPBgl/8eYL3p/hJHXE1yW4HHg2gR/D74+wAkJTnNmW9OkD5ONEggRVkD4Zk03BGBjINyUSP9IpBOBfwGbgY8b82nQJ7ddj6jjbhbvz2f+ucBQgGuBjQluSfBL4ANHcHVmOrsz1xnaf5NpdgxWBRjyve8Cfgw8FQjXQTgK+JwLMA6MNynEPsmcCyFJjTlcE+rg9Cqwoqylfx94GvhWqM/LzsZF7k+ymbnatpviY8ADwItukuPApgC3Jri6MHtQknLkJ0unCzOLklYDPwVWuZcZ8Gg9z4WecLuvMtOregiiKTxQv6cv/T4LF2zcTWXMbf0vwNVm9lItw97Z7GTuby1wr0tcOSrDfmi3upk1m7Sn0EKv9LrRQMefH3VNbnfaO3yvyvOtR4FLM+9FTxNy6aKkfuA44OdZ8tZ8FhlDuSmkGZjNXnWB00sOQMi8X0Ov+e0+4BaP8nFSATKmTnR0NmWpgU3B6EwPbr62ET51MZX/X14jvOjCHG1mr0oKeT0SepjTF4BXfFHRg9nuOV3ACj1MKqeVsqkuIUo34/84X/uc27LHpiupPQOzQNu6vFonK1f/n3p6I3Bo9x5NLtTN3BDw3+w3208XuZt/SedJ+vxUdfQM6W0DluyDlpl6CTDHvcJsR+HmdxnwEPCgpEP8N5ulJtruwvexgtBD/XEWaUEv1Cx3fX4ge5raDEaaTPCyB9E2sHCSjWaCYHSb/y3wFrDTzN7NPBqz0MJcjztTCtCM7dmBmeygagZaMDN7JDvEaRbabABc7nztA2qvSPwScPw0qp7OHBo/Xkoq95P5XrQ/69qc8gw0m/wNOGKyyDeJT59MiDgNjanoGVC59g4Dnp9SAK/MDHjFTesYd3/BZ5k1wPqyzt1sh2WJXdMLLbOebOPNVjkIr3i6k6Y6A4WZVZKeBS72gFZmG4UsujboTkySiU7HfOhinswLdrJKcS3wlOdpZZab9TwDjXR3Aud7Yheytt+gB5QF/nfTRy1mgX6Tns93ekvd+833vSRpIXA6sK6Lv0kLmuTJ0guSPgTWmtk6SQc40cX+zKGeYr/siOyvFsqsDjjSbbxJo7d792+rpOuBTWb276ZWmYkbNT8LvwBuk/Swo/Mp4AAv8r/q0fpiF6TYT/SbrkQLuN5pPgds8ArwQ0nzgcuBSyX1AYVXi6nn/UDXHcFc90avAbf5XAVcCBzry5935LtrhP0RZK63SxYB5wInAH8E/gzcCPwT2AQc5MWPAZ2mM92d2ZVuJv1OcBA42Avtd4Cj/CxEr8xuBJ51le9gT9tv2iTP6cx3xg4DbgJOyda+7WftKq/DP/Y9dnoF12nq45AhP8fnAcDhnlaf6g8cpz3MF8AfPGONM7R9m6Qia8rSu1JdTjb1wOG+7kLgMw7kUH7p0eRWITOlOW7ry9zeLwN+ABycIMkrs1TXqE+4YKNZaThdkmZdCWPbUR0F3nBNp1TvkZzZS4BrYm2+S9yJzHcPVveoPOL2Zy5tZYIbgDXOsGyPoMG7Bi+7Bnb592qSQt6myC6bzsZrwEuhBq7Y7UjqRQk4poDrgHOcv71dt3eXl3p3em2U3ql783VrOHp7OErtKN0vaVuUnpa0srnz8juGPs99iq4ZsrZ6c3fQt7ufL62U9NcobVZ9B/Gy79fsH/37eCV9T9Kxzf0AWZrQchRPCXBogirsQb3JxR8IdWfufEftMUk/ApaY2YSZNe2VkKUFeaQ1M4tmVplZe1RaHqWbW/BwgtdCrfH7gXsTjIZaC7K6/VgF6C9qT9Wcw5CXlHIzejbBlgClIApiqAk8GWC9C/leYXZpBy4Cjk7wkKTbO9IaYMjMOi5QPtueoiyXdLGkOwbqdskBAdYUZle4twF4IcA9gAWQIFrN8IRXeEV30Gp5CF8MLEmwJtTBZcDh3xjgVi+smybriJmNuQkd5YdtdYKFoXax23zdRIJWgIUJFgcYTPCe4PEC7jOzzc0ln5/Bhe5EPp3gG6EOmM1YB/zGm1/bGtfdRN1Bz0eGnMgXE3y7bqvza2d+Sxbux/ZkH3vd9S4HVgAHxZpmWdQH/WMPWK+b2Y6uwKms6hrwGLQMONDb+GcCj1dwdwkfept9xEGcsOy+djATZG4FQ2VNfKszPexeZ9TtvfudhjSTVxHc61n3eg+kc1yQBW4R81ygnQ7CzgzAXWYW80jc5wg0s0GnytzlmJlNzPJVA0334ogL0ZdlvwMZvYmGcWe+07M77Ye5j70vtjt+rdP5hN5SKbOiKX9no+NApn1yoR5qzj1U+qRfuel63aZ5a2YfPv4HsR83kQA1VfgAAAAASUVORK5CYII=") 23 24, crosshair;
}


.radar-grid
{
  background:
    linear-gradient(rgba(111, 214, 95, 0.14), rgba(111, 214, 95, 0.14)) center / 100% 2px no-repeat,
    linear-gradient(rgba(111, 214, 95, 0.14), rgba(111, 214, 95, 0.14)) center / 2px 100% no-repeat;
}


.info-link
{
  padding: 4px 14px;
}
.info-links
{
  gap: 5px;
  margin-top: 10px;
}
