body {
  margin: 0;
  background: #061313;
  color: #a7fff0;
  font-family: "Courier New", monospace;
}

.wrapper {
  display: flex;
  min-height: 100vh;
}

/* SIDEBAR */
.sidebar {
  width: 200px;
  background: #081f1f;
  border-right: 1px solid #4fffe2;
  padding: 15px;
}

.sidebar h2 {
  color: #ffe066;
}

.sidebar a {
  display: block;
  color: #66ffe0;
  text-decoration: none;
  margin: 6px 0;
}

.sidebar a:hover {
  color: #ffe066;
}

.box {
  margin-top: 20px;
  padding: 10px;
  border: 1px solid #ffe066;
  background: rgba(255,224,102,0.05);
  font-size: 12px;
}

/* MAIN */
.main {
  flex: 1;
  padding: 30px;
}

/* GRID LAYOUT */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
}

/* PANELS */
.panel {
  padding: 15px;
  border: 1px solid #4fffe2;
  background: rgba(8,32,32,0.9);
  box-shadow: 0 0 10px rgba(79,255,226,0.15);
}

/* SPECIAL PANELS */
.intro-panel {
  transform: translateX(-10px);
}

.bio-panel {
  border-color: #ffe066;
}

.main-scroll {
  grid-column: span 2;
}

.expect-panel {
  border-color: #ffe066;
}

/* TEXT */
h1 {
  margin: 0;
}

h2 {
  margin-top: 5px;
  color: #66ffe0;
}

h3 {
  margin-top: 0;
  color: #ffe066;
}

/* SCROLL */
.scroll-box {
  height: 200px;
  overflow-y: auto;
  padding: 10px;
  border: 1px solid #ffe066;
  background: rgba(0,0,0,0.3);
}

/* FLOATING */
.floating {
  position: absolute;
  padding: 6px;
  font-size: 12px;
  border: 1px solid #ffe066;
  background: rgba(10,40,40,0.9);
  color: #ffe066;
  text-decoration: none;
}

.note1 { top: 100px; right: 40px; }
.note2 { bottom: 40px; left: 260px; }

/* SCANLINES */
.scanlines {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.02),
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 3px
  );
  opacity: 0.15;
}
/* 404 PAGE */
.nf-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 20px;
}

.nf-box {
  width: 520px;
  max-width: 90%;
  text-align: center;
  padding: 30px 25px;
  border: 2px solid #ffe066;
  background: rgba(8, 32, 32, 0.93);
  box-shadow:
    0 0 12px rgba(255, 224, 102, 0.25),
    0 0 30px rgba(102, 255, 224, 0.12);
}

.nf-topline {
  margin: 0 0 10px 0;
  color: #ffe066;
  font-size: 22px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(255, 224, 102, 0.8);
}

.nf-404 {
  margin: 0;
  font-size: 120px;
  line-height: 1;
  color: #66ffe0;
  text-shadow:
    0 0 10px rgba(102, 255, 224, 0.9),
    0 0 25px rgba(102, 255, 224, 0.5),
    0 0 40px rgba(102, 255, 224, 0.3);
}

.nf-title {
  margin-top: 10px;
  color: #ffe066;
  font-size: 30px;
  text-shadow: 0 0 8px rgba(255, 224, 102, 0.6);
}

.nf-text {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.8;
  color: #d9fffa;
}

.nf-links {
  margin-top: 25px;
}

.nf-links a {
  display: inline-block;
  margin: 0 12px;
  padding: 8px 12px;
  border: 1px solid #66ffe0;
  background: rgba(0, 0, 0, 0.2);
  color: #66ffe0;
  text-decoration: none;
}

.nf-links a:hover {
  color: #ffe066;
  border-color: #ffe066;
  box-shadow: 0 0 8px rgba(255, 224, 102, 0.4);
}

.nf-float {
  position: absolute;
  font-size: 14px;
  color: #ffe066;
  border: 1px solid #ffe066;
  background: rgba(10, 40, 40, 0.92);
  padding: 6px 8px;
  box-shadow: 0 0 8px rgba(255, 224, 102, 0.2);
}

.nf-float1 {
  top: 90px;
  left: 80px;
  transform: rotate(-8deg);
}

.nf-float2 {
  bottom: 100px;
  right: 90px;
  transform: rotate(7deg);
}

.nf-float3 {
  top: 180px;
  right: 120px;
  transform: rotate(-4deg);
}
.nf-float4 {
  top: 60%;
  left: 10%;
  transform: rotate(5deg);
}

.nf-float5 {
  bottom: 20%;
  left: 15%;
  transform: rotate(-6deg);
}

.nf-float6 {
  top: 25%;
  right: 15%;
  transform: rotate(3deg);
}

.nf-float7 {
  bottom: 10%;
  right: 25%;
  transform: rotate(-4deg);
}

.nf-float8 {
  top: 75%;
  right: 5%;
  transform: rotate(2deg);
}
/* LOGS PAGE */
.logs-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 20px;
}

.logs-box {
  width: 700px;
  max-width: 92%;
  padding: 24px;
  border: 1px solid #4fffe2;
  background: rgba(8, 32, 32, 0.93);
  box-shadow: 0 0 12px rgba(79, 255, 226, 0.18);
}

.logs-topline {
  margin: 0 0 8px 0;
  color: #ffe066;
  font-size: 13px;
}

.logs-title {
  margin: 0;
  color: #d9fffa;
  font-size: 42px;
}

.logs-subtitle {
  margin-top: 8px;
  color: #66ffe0;
  font-size: 22px;
}

.logs-scroll {
  margin-top: 20px;
  height: 420px;
  overflow-y: auto;
  padding: 14px;
  border: 1px solid #ffe066;
  background: rgba(0, 0, 0, 0.28);
}

.log-entry {
  margin-bottom: 14px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid #66ffe0;
}

.log-entry p {
  margin: 6px 0 0 0;
}

.timestamp {
  font-size: 12px;
  color: #7ccfc4;
}

.corrupted {
  border-left-color: #ff6f91;
  color: #ffd8e1;
  text-shadow: 1px 0 #ff4d7a, -1px 0 #44d9ff;
}

.emphasis {
  background: rgba(79, 255, 226, 0.08);
}

.logs-links {
  margin-top: 20px;
  text-align: center;
}

.logs-links a {
  display: inline-block;
  margin: 0 10px;
  padding: 8px 12px;
  border: 1px solid #66ffe0;
  background: rgba(0, 0, 0, 0.18);
  color: #66ffe0;
  text-decoration: none;
}

.logs-links a:hover {
  color: #ffe066;
  border-color: #ffe066;
}

.logs-float {
  position: absolute;
  font-size: 12px;
  color: #ffe066;
  border: 1px solid #ffe066;
  background: rgba(10, 40, 40, 0.92);
  padding: 6px 8px;
  box-shadow: 0 0 8px rgba(255, 224, 102, 0.2);
}

.logs-float1 {
  top: 80px;
  left: 70px;
  transform: rotate(-6deg);
}

.logs-float2 {
  bottom: 90px;
  right: 80px;
  transform: rotate(6deg);
}

.logs-float3 {
  top: 180px;
  right: 100px;
  transform: rotate(-4deg);
}
/* LOGS PAGE WITH SIDE NAV */
.logs-page {
  min-height: 100vh;
  display: flex;
  gap: 20px;
  padding: 30px 20px;
  position: relative;
  box-sizing: border-box;
}

.logs-sidebar {
  width: 210px;
  background: #081f1f;
  border: 1px solid #4fffe2;
  padding: 15px;
  height: fit-content;
  box-shadow: 0 0 10px rgba(79, 255, 226, 0.15);
}

.logs-sidebar h3 {
  margin-top: 0;
  color: #ffe066;
}

.logs-sidebar a {
  display: block;
  color: #66ffe0;
  text-decoration: none;
  margin: 7px 0;
}

.logs-sidebar a:hover {
  color: #ffe066;
}

.logs-side-box {
  margin-top: 18px;
  padding: 10px;
  border: 1px solid #ffe066;
  background: rgba(255, 224, 102, 0.05);
  font-size: 12px;
  line-height: 1.5;
}

.logs-main {
  flex: 1;
  display: flex;
  justify-content: center;
}

.logs-box {
  width: 720px;
  max-width: 100%;
  padding: 24px;
  border: 1px solid #4fffe2;
  background: rgba(8, 32, 32, 0.93);
  box-shadow: 0 0 12px rgba(79, 255, 226, 0.18);
}

.logs-topline {
  margin: 0 0 8px 0;
  color: #ffe066;
  font-size: 13px;
}

.logs-title {
  margin: 0;
  color: #d9fffa;
  font-size: 42px;
}

.logs-subtitle {
  margin-top: 8px;
  color: #66ffe0;
  font-size: 22px;
}

.logs-scroll {
  margin-top: 20px;
  height: 420px;
  overflow-y: auto;
  padding: 14px;
  border: 1px solid #ffe066;
  background: rgba(0, 0, 0, 0.28);
}

.log-entry {
  margin-bottom: 14px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid #66ffe0;
}

.log-entry p {
  margin: 6px 0 0 0;
}

.timestamp {
  font-size: 12px;
  color: #7ccfc4;
}

.corrupted {
  border-left-color: #ff6f91;
  color: #ffd8e1;
  text-shadow: 1px 0 #ff4d7a, -1px 0 #44d9ff;
}

.emphasis {
  background: rgba(79, 255, 226, 0.08);
}

.logs-float {
  position: absolute;
  font-size: 12px;
  color: #ffe066;
  border: 1px solid #ffe066;
  background: rgba(10, 40, 40, 0.92);
  padding: 6px 8px;
  box-shadow: 0 0 8px rgba(255, 224, 102, 0.2);
}

.logs-float1 {
  top: 70px;
  right: 60px;
  transform: rotate(-6deg);
}

.logs-float2 {
  bottom: 80px;
  right: 90px;
  transform: rotate(7deg);
}

.logs-float3 {
  top: 170px;
  right: 140px;
  transform: rotate(-4deg);
}

@media (max-width: 900px) {
  .logs-page {
    flex-direction: column;
  }

  .logs-sidebar {
    width: auto;
  }

  .logs-float {
    display: none;
  }
}
/* LOG 3 VISUAL EFFECTS */

.glitch {
  color: #d9fffa;
  text-shadow: 1px 0 red, -1px 0 blue;
  opacity: 0.9;
}

.peak {
  border-left-color: #ffe066;
}

.big {
  font-size: 32px;
  font-weight: bold;
  color: #ffe066;
}

.bigger {
  font-size: 52px;
  font-weight: bold;
  color: #ffe066;
  text-shadow: 0 0 10px rgba(255,224,102,0.8);
}

.huge {
  font-size: 80px;
  font-weight: bold;
  color: #ffe066;
  text-shadow:
    0 0 10px rgba(255,224,102,1),
    0 0 30px rgba(255,224,102,0.6);
}

.corrupted {
  border-left-color: #ff6f91;
  color: #ffd8e1;
  text-shadow: 1px 0 #ff4d7a, -1px 0 #44d9ff;
}
/* EYE PANEL */
.eye-panel {
  grid-column: span 2;
  text-align: center;
  border-color: #ffe066;
  background: rgba(8, 32, 32, 0.95);
  box-shadow:
    0 0 12px rgba(255, 224, 102, 0.2),
    0 0 25px rgba(79, 255, 226, 0.1);
  padding: 15px;
}

.eye-img {
  max-width: 100%;
  height: auto;
  border: 1px solid #66ffe0;
  box-shadow:
    0 0 10px rgba(79,255,226,0.4),
    0 0 20px rgba(255,224,102,0.15);
}
/* COLECTION PAGE */

.colection-page {
  display: flex;
  min-height: 100vh;
}

.colection-main {
  flex: 1;
  padding: 30px;
  position: relative;
}

.colection-header h1 {
  margin: 0;
  color: #ffe066;
}

.colection-header p {
  margin-top: 5px;
  font-size: 13px;
  color: #66ffe0;
}

/* SPACE */
.colection-space {
  position: relative;
  height: 600px;
  margin-top: 30px;
}

/* IMAGE BOXES (UPDATED) */
.img-box {
  position: absolute;
  background: rgba(8,32,32,0.95);
  padding: 14px;
  border: 2px solid #66ffe0;
  box-shadow:
    0 0 12px rgba(79,255,226,0.35),
    0 0 25px rgba(255,224,102,0.15);
  max-width: 320px;
}

.img-box img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 8px;
  border: 2px solid #ffe066;
  box-shadow:
    0 0 10px rgba(255,224,102,0.3),
    0 0 18px rgba(79,255,226,0.15);
}
}

/* POSITIONS */
.img1 {
  top: 40px;
  left: 60px;
  transform: rotate(-4deg);
}

.img2 {
  top: 200px;
  left: 300px;
  transform: rotate(6deg);
}

.img-box:hover {
  transform: scale(1.50) rotate(0deg);
  z-index: 5;
}

/* NOTES */
.colection-note {
  position: absolute;
  font-size: 12px;
  color: #ffe066;
  border: 1px solid #ffe066;
  padding: 5px;
  background: rgba(10,40,40,0.9);
}

.note1 {
  top: 100px;
  right: 120px;
  transform: rotate(-5deg);
}

.note2 {
  bottom: 80px;
  left: 200px;
  transform: rotate(3deg);
}

.note3 {
  top: 350px;
  right: 200px;
  transform: rotate(-2deg);
}