body {
margin: 0;
background: #05080d;
color: #dcecff;
font-family: Arial, Helvetica, sans-serif;
}

.topbar {
background: #07111f;
color: #6bbcff;
font-family: "Courier New", monospace;
padding: 8px;
border-bottom: 1px solid #1d4f7a;
}

.wrapper {
width: 900px;
margin: auto;
padding: 30px;
}

header {
background: #0a1320;
border: 1px solid #2f6fa3;
padding: 25px;
}

h1 {
margin: 0;
font-size: 70px;
color: #f2f8ff;
letter-spacing: -3px;
}

.subtitle {
color: #87c9ff;
font-family: "Courier New", monospace;
}

nav {
margin-top: 20px;
border-top: 1px solid #2f6fa3;
padding-top: 14px;
}

nav a {
color: #7fc8ff;
text-decoration: none;
margin-right: 20px;
font-weight: bold;
}

nav a:hover {
color: white;
}

.marquee {
margin-top: 18px;
background: #07111f;
color: #7fc8ff;
border: 1px solid #2f6fa3;
padding: 10px;
font-family: "Courier New", monospace;
}

.intro {
margin-top: 20px;
background: #0a1320;
border: 1px solid #2f6fa3;
padding: 22px;
line-height: 1.7;
}

.grid {
margin-top: 18px;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 15px;
}

.card {
background: #0a1320;
border: 1px solid #2f6fa3;
padding: 18px;
min-height: 170px;
}

.card h2 {
margin-top: 0;
color: #ffffff;
}

.card p {
color: #bad7ee;
line-height: 1.5;
}

.quote {
margin-top: 25px;
background: #07111f;
border-left: 6px solid #58bfff;
padding: 22px;
font-size: 32px;
font-weight: bold;
}

.fieldnote {
margin-top: 25px;
background: #0a1320;
border: 1px solid #2f6fa3;
padding: 22px;
font-family: "Courier New", monospace;
color: #9bd7ff;
line-height: 1.7;
}

footer {
margin-top: 35px;
color: #7192aa;
font-family: "Courier New", monospace;
font-size: 13px;
}

@media (max-width: 950px) {

.wrapper {
width: auto;
}

.grid {
grid-template-columns: 1fr;
}

h1 {
font-size: 48px;
}

}

.divider {
  color: #4fa3ff;
  font-family: "Courier New", monospace;
  letter-spacing: 2px;
  margin: 30px 0;
  opacity: 0.7;
}

.card:hover {
  transform: translateY(-3px);
  border-color: #5ab0ff;
  transition: 0.2s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.015),
    rgba(255,255,255,0.015) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
}
.card {
  box-shadow: 0 0 18px rgba(88, 191, 255, 0.08);
}

.card:hover {
  transform: translateY(-4px);
  border-color: #7ed0ff;
  box-shadow: 0 0 25px rgba(88, 191, 255, 0.25);
  background: #0b1724;
}
.banner {
  overflow-x: auto;
  white-space: nowrap;
}
.fieldnote {
  color: #b8dcff;
  line-height: 1.9;
}
.musicbox {
  margin-top: 20px;
  font-family: "Courier New", monospace;
  font-size: 14px;
  color: #7fc7ff;
}

.musicbox audio {
  width: 220px;
  height: 25px;
  margin-top: 8px;
  opacity: 0.7;
}

.photo-log {
  display: grid;
  gap: 24px;
  margin-top: 30px;
}

.photo-entry {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  border: 1px solid #2f6fa3;
  background: #07111f;
  padding: 18px;
}

.photo-entry img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border: 1px solid #2f6fa3;
  filter: grayscale(25%) contrast(105%);
}

.photo-entry h2 {
  margin-top: 0;
  font-family: "Courier New", monospace;
  font-size: 16px;
  color: #8fd0ff;
}

.photo-entry .meta {
  font-family: "Courier New", monospace;
  color: #6faee0;
  font-size: 13px;
}

@media (max-width: 700px) {
  .photo-entry {
    grid-template-columns: 1fr;
  }

  .photo-entry img {
    height: auto;
  }
}