body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.pageContainer {
    width: 1200px;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 200px;
}

.headerWrapper {
    width: 100%;
    height: fit-content;
    /* border: 2px solid red; */
}

.headerWrapper h1 {
    font-family: "JSL Blackletter", "IBM Plex Mono", monospace;
    font-size: 100px;
    font-weight: 200;
    -webkit-text-stroke: 1.5px #000; /* border color and thickness */
    text-align: center;

    color: transparent;

}

.banner {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  padding: 0.5rem 0;
  background: transparent; /* dark overlay for readability */
  font-family: "Press Start 2P", monospace; /* pixelated font */
  font-size: 16px;
  letter-spacing: 2px;
  color: #000000; /* flat green */
}

.scrollingText {
  display: inline-block;
  padding-left: 100%;
  animation: scroll 18s linear infinite;
}

.scrollingText span {
  margin-right: 300px; /* Adjust spacing */
  display: inline-block; /* Needed for margin to apply horizontally */
}

.mainContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 30px;
}

.columnZero {
    width: 500px;             
    display: flex;
    flex-direction: column;

    gap: 30px;
}

.columnOne {
    height: 832px;
    
    display: flex;
    flex-direction: column;
    gap: 0;

    border: 1px solid rgb(0, 0, 0);
    padding: 0 15px;
    /* padding-bottom: 120px; */
}

.searchingWrapper {
    visibility: hidden;
    width: 100%;
    height: fit-content;
    margin: 0;
}

.searchingWrapper h2 {
    /* border: 2px solid red; */

    color: #000;
    text-align: left;
    font-family: "NSimSun", monospace;
    font-size: 5px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;

    padding-bottom: 40px;
    padding-top: 0;
}

.radarContainer {
    /* border: 2px solid red; */
    margin: 0 auto;

    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;

    width: 80%;
    height: auto;
    padding-bottom: 90px;
}

.radarContainer img {
    width: 100%;
    height: auto;
    display: block;
}

.radarName {
    width: 100%;
    /* border: 1px solid red; */
    display: flex;
    align-items: center;
    justify-content: right;
}

.radarName p {
    text-align: right;
    color: #000;
    font-family: "IBM Plex Mono", monospace;
    font-size: 24px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
}

.additional {
    visibility: hidden;
    
    width: fit-content;
    height: fit-content;
    padding: 10px 20px;
    border: 1px solid #8a8a8a;
}

.additional a {
    text-decoration: none;
    color: #8a8a8a;
    font-family: "IBM Plex Mono", monospace;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
}

.columnTwo  {
    /* border: 2px solid red; */
    
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    gap: 20px;
}

.transmissionElement {
    width: 605px;
    height: fit-content;

    display: flex;
    flex-direction: column;
    align-items: center; 

    padding: 2px 20px;
    border: 1px solid rgb(0, 0, 0);
}

.topPart {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    width: 100%;
    height: fit-content;
    /* border: 1px solid red; */
}

.topPart h3 {
    color: #000;
    text-align: center;
    font-family: "IBM Plex Mono", monospace;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 0;
}

.topPart h4 {
    color: #000;
    text-align: right;
    font-family: "IBM Plex Mono", monospace;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 0;
}

.divider {
    border: 1px solid black;
    width: 100%;
    
}

.middlePart {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    /* border: 1px solid red; */
}

.middlePart p:first-child {
    color: #000;
    font-family: "IBM Plex Mono", monospace;
    font-size: 14px;
    font-style: italic;
    font-weight: 300;
    line-height: normal;
}

.middlePart p:last-child {
    color: #000;
    font-family: "IBM Plex Mono", monospace;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.bottomPart {
    height: 40px;
    width: 100%;
    display: flex;
    justify-content: right;

    /* border: 1px solid red; */
}

.bottomPart a {
    color: #000;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-align: right;
    text-decoration: none;
}

/* --- CRT / scanline overlay --- */
body {
    position: relative; /* required for pseudo-elements */
    background-color: #ffffff; /* dark screen base */
    color: #c7f0d8; /* optional glow text color for CRT feel */
    font-family: "IBM Plex Mono", monospace; /* keep your font */
    overflow-x: hidden; /* prevents horizontal scroll from pseudo-elements */
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        to bottom,
        rgba(0,0,0,0.15),
        rgba(0,0,0,0.15) 1px,
        transparent 1px,
        transparent 3px
    ); /* scanlines */
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 120px rgba(35, 36, 53, 0.7); /* vignette */
}

@keyframes crtFlicker {
    0% { opacity: 1; }
    50% { opacity: 0.97; }
    100% { opacity: 1; }
}

body {
    animation: crtFlicker 5s infinite alternate;
}

/*--------------------------------------------------------------------------------*/

/* Scrollling banner animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Floating motion keyframes */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px); /* move slightly upward */
  }
  100% {
    transform: translateY(0); /* return to start */
  }
}

/* --- Intro & Hover Animations --- */

.transmissionElement {
    opacity: 0;
    transform: translateY(4px);
    animation: appear 0.6s forwards;
}

@keyframes appear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.transmissionElement:hover {
    background-color: #ebebeb;
}

/* Suggested layouts*/

/* body {
    background-color: #f4ecd8;
    color: #3a2c2c;
    font-family: "IBM Plex Mono", monospace;
}

header h1 {
    color: #c94f2a;
    font-weight: 500;
}

.transmissionElement {
    border: 1px solid #a67b5b;
    background-color: #fff6e5;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

.tuneInButton a {
    color: #c94f2a;
    text-decoration: none;
    border-bottom: 1px dotted #c94f2a;
}
.tuneInButton a:hover {
    color: #a67b5b;
} */