@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300;400;500&display=swap');

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

html {
  height: 100%;
  width: 100%;
}

body {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 300;
  line-height: 1.4;
  background: #0a0a0a;
  color: #777;
  min-height: 100vh;
  font-size: 13px;
}

.container {
  max-width: 600px;
  margin: 0;
  padding: 60px 40px;
  position: relative;
}


.container::after {
  content: "[2025.09.06 23:47:12 UTC]";
  position: absolute;
  bottom: 20px;
  left: -100px;
  font-size: 8px;
  color: #222;
  writing-mode: vertical-rl;
}

header {
  margin-bottom: 60px;
}

header h1 {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 8px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
}

header h1:hover {
  animation: constant-scramble 0.1s infinite;
}

@keyframes constant-scramble {
  0% { transform: translateX(0); }
  25% { transform: translateX(1px); }
  50% { transform: translateX(-1px); }
  75% { transform: translateX(0.5px); }
  100% { transform: translateX(0); }
}

.cursor {
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.subtitle {
  font-size: 11px;
  color: #555;
  letter-spacing: 1px;
  text-transform: uppercase;
}

main {
  margin-bottom: 60px;
}

section {
  margin-bottom: 40px;
  border-left: 1px solid #222;
  padding-left: 20px;
}

h2 {
  color: #999;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

p {
  margin-bottom: 12px;
  color: #666;
  font-size: 12px;
  line-height: 1.6;
}

ul {
  list-style: none;
  color: #666;
}

li {
  margin-bottom: 6px;
  font-size: 11px;
  position: relative;
}

li:before {
  content: "▸";
  color: #444;
  margin-right: 8px;
}

.discord-link {
  display: inline-flex;
  align-items: center;
  background: #111;
  color: #777;
  padding: 8px 16px;
  border: 1px solid #333;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.2s ease;
  margin: 16px 0 8px 0;
}

.discord-link:hover {
  background: #1a1a1a;
  color: #999;
  border-color: #444;
}

.discord-icon {
  margin-right: 8px;
  width: 12px;
  height: 12px;
}

.note {
  font-size: 10px;
  color: #444;
}

.status-grid,
.intel-grid {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.status-item,
.intel-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid #1a1a1a;
}

.status-label,
.intel-label {
  font-size: 10px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.status-value,
.intel-value {
  font-size: 10px;
  color: #999;
  font-weight: 400;
}

.status-value.operational {
  color: #4a9;
}

.status-value.secure {
  color: #49a;
}

.status-value.online {
  color: #4a9;
}

.redacted {
  background: #333;
  color: #333;
  padding: 2px 4px;
  border-radius: 2px;
  font-size: 10px;
  transition: all 0.3s ease;
}

.redacted:hover {
  background: #444;
  color: #777;
  cursor: default;
}

.hash {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  color: #444;
  letter-spacing: 0.5px;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(113, 113, 122, 0.02) 2px,
      rgba(113, 113, 122, 0.02) 4px
    );
  pointer-events: none;
  z-index: 1000;
}



.loading-bar {
  position: relative;
  height: 2px;
  background: #111;
  margin: 20px 0;
  overflow: hidden;
}

.loading-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #555, transparent);
  animation: loading 3s infinite;
}

@keyframes loading {
  0% { left: -100%; }
  100% { left: 100%; }
}

.left-panel {
  position: fixed;
  top: 60px;
  left: calc(600px + 40px + 48px);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  color: #444;
  z-index: 500;
  pointer-events: none;
}

.coordinates {
  margin-bottom: 30px;
}

.coord-label,
.timer-label {
  font-size: 7px;
  color: #333;
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.coord-value,
.timer-value {
  font-size: 8px;
  color: #555;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}

.session-timer {
  margin-bottom: 30px;
}

.connection-status {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ping-dot {
  width: 4px;
  height: 4px;
  background: #4a9;
  border-radius: 50%;
  animation: ping 2s ease-in-out infinite;
}

.status-text {
  font-size: 7px;
  color: #4a9;
  letter-spacing: 0.5px;
}

@keyframes ping {
  0%, 20% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0.3;
    transform: scale(1.2);
  }
}


.fade-in {
  opacity: 0;
  animation: fadeInText 2s ease-out forwards;
}

.fade-in.delay-1 { animation-delay: 0.5s; }
.fade-in.delay-2 { animation-delay: 1s; }
.fade-in.delay-3 { animation-delay: 1.5s; }
.fade-in.delay-4 { animation-delay: 2s; }
.fade-in.delay-5 { animation-delay: 2.5s; }

@keyframes fadeInText {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 40px 20px;
  }
  
  .left-panel {
    display: none;
  }
}