:root {
  --bg: #0b0f14;
  --panel: #11161c;
  --border: #30363d;
  --blue: #7ee787;
  --green: #58a6ff;
  --orange: #ffa657;
  --text: #d6e2ff;
}

body {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  background: var(--bg);
  color: var(--text);
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 1rem;
}

.callsign {
  font-size: 3rem;
  font-weight: 600;
  color: var(--blue);
  text-shadow: 0 0 8px rgba(88,166,255,0.7);
}

.subinfo {
  color: #8b949e;
  margin-bottom: 1rem;
}

.section {
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: inset 0 0 10px rgba(88,166,255,0.1);
}

h2 {
  color: var(--blue);
  margin-top: 0;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

img {
  max-width: 100%;
  border: 1px solid var(--border);
}

.status {
  color: var(--green);
  font-weight: bold;
}

.freq {
  color: var(--orange);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  border: 1px solid var(--border);
  padding: 0.5rem;
  text-align: left;
}

th {
  background: #161b22;
}

.project {
  border-left: 4px solid var(--blue);
  padding: 1rem;
  margin-bottom: 1.5rem;
  background: #0f141a;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 20px 20px;
}

.log {
  background: #010409;
  padding: 1rem;
  color: var(--green);
  font-size: 0.9rem;
  overflow-x: auto;
}

.footer {
  text-align: center;
  font-size: 0.8rem;
  color: #6e7681;
  margin-top: 2rem;
}


a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px dashed rgba(126,231,135,0.5);
  transition: all 0.2s ease;
}

a:hover {
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
  text-shadow: 0 0 5px rgba(88,166,255,0.6);
}

a:visited {
  color: #a5d6a7;
  border-bottom-color: rgba(165,214,167,0.4);
}

a:active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

@media (max-width: 800px) {
  .grid {
    grid-template-columns: 1fr;
  }
}