/* Retro 1995-style stylesheet for eumel.eu.org */
html,body{
  height:100%;
  margin:0;
  font-family: "Courier New", Courier, monospace;
  background-color:#006400; /* dark green base like old Geocities tiles */
  background-image: linear-gradient(45deg, rgba(255,255,255,0.02) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.02) 75%, transparent 75%, transparent);
  background-size:16px 16px;
  color:#000;
  font-size:14px;
}

/* Keep everything centered in a single-screen friendly layout */
.layout{
  width:92%;
  max-width:760px;
  border:4px solid #000;
  background: #ffffff;
  margin-top:8px;
  box-shadow: 6px 6px 0 rgba(0,0,0,0.2);
}

/* Banner */
.banner{
  background: linear-gradient(#ffff99,#ffcc66);
  text-align:center;
  border-bottom:2px solid #000;
}
.logo{
  width:48px;
  height:48px;
  vertical-align:middle;
  border:2px solid #000;
  margin-right:8px;
}

/* Navigation column */
.nav{
  width:150px;
  background:#c0c0ff;
  border-right:2px solid #000;
  text-align:left;
  padding:8px;
}

/* Main content */
.content{
  padding:12px;
  background: #fffbe6;
  min-height:220px;
}

/* Footer */
.footer{
  text-align:center;
  background:#eee8d5;
  font-size:12px;
}

/* Retro table look for info */
.info{
  border:2px inset #000;
  margin-top:8px;
}

/* Counter look */
.counter{
  background:#000;
  color:#0f0;
  padding:4px;
  width:120px;
  font-weight:bold;
  text-align:center;
  border:2px solid #666;
}

/* Blink effect (simulate <blink>) */
@keyframes blink {
  50% { visibility: hidden; }
}
blink {
  animation: blink 1s steps(1, start) infinite;
  color:#c00;
}

/* Small touches */
.marquee{
  font-weight:bold;
  color:#003366;
}
.retro-sign{
  font-style:italic;
  margin-top:12px;
}
a{
  color:#00008b;
  text-decoration:underline;
}
hr{
  border:1px dashed #000;
  margin:6px 0;
}

/* Mobile-friendly touch sizes for links */
a, .counter, .nav a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0,0,0,0.1);
}

/* Ensure page fits vertically on mobile (no scroll on most phones) */
@media (max-height:700px) {
  .content{ min-height:120px; }
}
