@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

:root {
  --blue: 110, 140, 184;
  --navy: 15, 15, 45;
  --purple: 166, 76, 170;
}

body {
  margin: 0;
  overflow-x: hidden;
  background-image: url('space-bg.png');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  font-family: Tahoma, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  padding: 30px 10px;
}

.ie-window {
  width: 100%;
  max-width: 1000px;
  background: rgba(255, 255, 255, 0.35);
  border: 2px solid rgba(var(--navy), 0.8);
  box-shadow: 3px 3px 8px rgba(0,0,0,0.4);
}

.title-bar {
  background: linear-gradient(to right, rgb(var(--navy)), rgb(var(--blue)));
  color: white;
  font-weight: bold;
  font-size: 13px;
  padding: 3px 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title-bar .win-buttons span {
  display: inline-block;
  width: 16px;
  height: 14px;
  background: rgba(var(--purple), 0.5);
  color: #000;
  text-align: center;
  font-size: 10px;
  line-height: 14px;
  margin-left: 2px;
  border: 1px solid #555;
}

.menu-bar {
  background: rgba(var(--blue), 0.3);
  font-size: 12px;
  padding: 3px 8px;
  border-bottom: 1px solid #aca899;
}

.menu-bar span {
  margin-right: 14px;
}

.toolbar {
  background: rgba(var(--blue), 0.3);
  border-bottom: 1px solid #aca899;
  padding: 4px 6px;
  display: flex;
  gap: 14px;
  font-size: 11px;
}

.toolbar div {
  text-align: center;
  color: #333;
}

.address-bar {
  background: rgba(var(--blue), 0.3);
  border-bottom: 1px solid #aca899;
  padding: 4px 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}

.address-bar span.label {
  font-weight: bold;
}

.address-bar input {
  flex: 1;
  border: 1px solid #888;
  padding: 2px 4px;
  font-size: 12px;
}

.address-bar button {
  border: 1px solid #888;
  background: rgba(var(--blue), 0.3);
  font-size: 12px;
  padding: 2px 8px;
}

.page-content {
  background: rgba(255, 255, 255, 0.5);
  min-height: 400px;
  padding: 20px;
  border-top: 1px solid #fff;
}

.image-scroll-gallery {
  column-count: 3;
  column-gap: 4px;
  margin-top: 10px;
  width: 100%;
  box-sizing: border-box;
}

.image-scroll-gallery img {
  width: 100%;
  max-width: 100%;
  display: block;
  margin-bottom: 4px;
  break-inside: avoid;
  border-radius: 0;
}

.status-bar {
  background: rgba(var(--blue), 0.3);
  border-top: 1px solid #aca899;
  padding: 3px 8px;
  font-size: 11px;
  color: #333;
  display: flex;
  justify-content: space-between;
}

.home-link {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
}
