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

body {
  background-image: url('./windows_xp_bliss.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  padding: 16px;
  font-family: Arial, 'MS Sans Serif', sans-serif;
  font-size: 11px;
}

/* ── Browser Window ─────────────────────────────── */
.browser-window {
  width: min(960px, 100%);
  height: calc(100vh - 32px);
  display: flex;
  flex-direction: column;
  background: #c0c0c0;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #000000;
  border-right: 2px solid #000000;
  box-shadow: 1px 1px 0 #808080;
}

/* ── Title Bar ──────────────────────────────────── */
.title-bar {
  background: linear-gradient(to right, #000080, #1084d0);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 4px;
  gap: 6px;
  flex-shrink: 0;
}

.title-left {
  display: flex;
  align-items: center;
  gap: 5px;
  overflow: hidden;
}

.title-icon { flex-shrink: 0; }

.title-text {
  color: #ffffff;
  font-size: 11px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.win-controls { display: flex; gap: 2px; flex-shrink: 0; }

.win-btn {
  width: 16px;
  height: 14px;
  background: #c0c0c0;
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  border-bottom: 1px solid #808080;
  border-right: 1px solid #808080;
  font-size: 9px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #000;
  font-family: Arial, sans-serif;
  line-height: 1;
}

.win-btn:active {
  border-top: 1px solid #808080;
  border-left: 1px solid #808080;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}

/* ── Menu Bar ───────────────────────────────────── */
.menu-bar {
  background: #c0c0c0;
  display: flex;
  align-items: center;
  padding: 2px 4px;
  border-bottom: 1px solid #808080;
  flex-shrink: 0;
}

.menu-item {
  padding: 2px 8px;
  font-size: 11px;
  cursor: default;
  color: #000;
  font-family: Arial, sans-serif;
}

.menu-item:hover {
  background: #000080;
  color: #fff;
}

/* ── Toolbar ────────────────────────────────────── */
.toolbar {
  background: #c0c0c0;
  display: flex;
  align-items: center;
  padding: 2px 4px;
  gap: 0;
  border-bottom: 2px solid;
  border-color: #808080 #ffffff #ffffff #808080;
  flex-shrink: 0;
}

.toolbar-group { display: flex; align-items: center; }

.tool-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 46px;
  background: #c0c0c0;
  border: 1px solid transparent;
  cursor: pointer;
  padding: 3px 2px;
  gap: 2px;
  font-family: Arial, sans-serif;
}

.tool-btn:hover {
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  border-bottom: 1px solid #808080;
  border-right: 1px solid #808080;
}

.tool-btn:active {
  border-top: 1px solid #808080;
  border-left: 1px solid #808080;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}

.tool-btn.disabled { opacity: 0.4; cursor: default; pointer-events: none; }
a.tool-btn { text-decoration: none; }

.tool-icon {
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
}

.back-icon  { color: #2244cc; }
.fwd-icon   { color: #2244cc; }
.stop-icon  { color: #cc2222; font-size: 16px; }
.refresh-icon { color: #228822; }
.home-icon  { color: #cc8800; }
.search-icon { color: #444; }
.fav-icon   { color: #ccaa00; }
.hist-icon  { color: #664400; }
.mail-icon  { color: #224488; }
.print-icon { color: #333; }

.tool-label {
  font-size: 10px;
  color: #000;
  white-space: nowrap;
  font-family: Arial, sans-serif;
}

.toolbar-sep {
  width: 1px;
  height: 38px;
  background: #808080;
  margin: 0 3px;
  box-shadow: 1px 0 0 #ffffff;
  flex-shrink: 0;
}

/* ── Address Bar ────────────────────────────────── */
.address-bar {
  display: flex;
  align-items: center;
  padding: 3px 6px;
  gap: 4px;
  background: #c0c0c0;
  border-bottom: 1px solid #808080;
  flex-shrink: 0;
}

.addr-label {
  font-size: 11px;
  color: #000;
  white-space: nowrap;
  background: #c0c0c0;
  border-top: 1px solid #808080;
  border-left: 1px solid #808080;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  padding: 2px 8px;
  font-family: Arial, sans-serif;
}

.addr-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  background: #ffffff;
  border-top: 1px solid #808080;
  border-left: 1px solid #808080;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  padding: 2px 6px;
  min-width: 0;
}

.addr-globe { font-size: 14px; flex-shrink: 0; }

.addr-url {
  font-size: 11px;
  color: #000080;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: Arial, sans-serif;
}

.go-btn {
  background: #c0c0c0;
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  border-bottom: 1px solid #808080;
  border-right: 1px solid #808080;
  font-size: 11px;
  padding: 2px 10px;
  cursor: pointer;
  color: #000;
  white-space: nowrap;
  font-family: Arial, sans-serif;
}

.go-btn:active {
  border-top: 1px solid #808080;
  border-left: 1px solid #808080;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}

/* ── Content Area ───────────────────────────────── */
.content-area {
  flex: 1;
  overflow-y: auto;
  background: #ffffff;
  border-top: 1px solid #808080;
  border-left: 1px solid #808080;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}

.content-area::-webkit-scrollbar { width: 16px; }
.content-area::-webkit-scrollbar-track { background: #c0c0c0; }
.content-area::-webkit-scrollbar-thumb {
  background: #c0c0c0;
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  border-bottom: 1px solid #808080;
  border-right: 1px solid #808080;
}

/* ── Inner Website ──────────────────────────────── */
.site-banner {
  background: #000080;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.banner-text { color: #ffffff; }

.banner-h1 {
  font-size: 24px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  letter-spacing: 0.01em;
}

.banner-sub {
  font-size: 12px;
  color: #aaccff;
  margin-top: 3px;
  font-family: Arial, sans-serif;
}

.site-nav {
  background: #c0c0c0;
  padding: 5px 20px;
  font-size: 12px;
  border-bottom: 2px solid;
  border-color: #808080 #ffffff #ffffff #808080;
  font-family: Arial, sans-serif;
}

.site-nav a            { color: #000080; text-decoration: underline; }
.site-nav a:visited    { color: #551a8b; }
.site-nav a:hover      { color: #0000ff; }

.site-body {
  padding: 20px 24px 32px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 14px;
  color: #000000;
  max-width: 700px;
}

/* FAQ */
.faq { display: flex; flex-direction: column; }

.faq-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 8px 20px;
  padding: 11px 0;
  border-bottom: 1px solid #cccccc;
}

.faq-row:first-child { border-top: 1px solid #cccccc; }

.faq-q {
  font-weight: bold;
  font-size: 13px;
  font-family: Arial, sans-serif;
  color: #000080;
}

.faq-a {
  font-size: 13px;
  line-height: 1.6;
}

.faq-a a           { color: #0000cc; text-decoration: underline; }
.faq-a a:visited   { color: #551a8b; }
.faq-a a:hover     { color: #0000ff; }

.site-hr {
  border: none;
  border-top: 1px solid #cccccc;
  margin: 20px 0;
}

/* CTA */
.cta { display: flex; flex-direction: column; gap: 12px; }

.cta p {
  font-size: 13px;
  line-height: 1.65;
  max-width: 54ch;
}

.cta a           { color: #0000cc; text-decoration: underline; }
.cta a:visited   { color: #551a8b; }

/* ── Status Bar ─────────────────────────────────── */
.status-bar {
  display: flex;
  align-items: center;
  padding: 2px 4px;
  gap: 2px;
  background: #c0c0c0;
  border-top: 1px solid #808080;
  flex-shrink: 0;
}

.status-pane {
  border-top: 1px solid #808080;
  border-left: 1px solid #808080;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  padding: 1px 8px;
  font-size: 11px;
  color: #000;
  font-family: Arial, sans-serif;
}

.status-main { flex: 1; }
.status-zone { width: 90px; text-align: center; }

/* ── Focus ──────────────────────────────────────── */
a:focus-visible { outline: 1px dotted #000080; outline-offset: 1px; }

/* ── Mobile ─────────────────────────────────────── */
@media (max-width: 600px) {
  body { padding: 0; align-items: stretch; }
  .browser-window { height: auto; min-height: 100vh; border: none; box-shadow: none; }
  .toolbar { flex-wrap: wrap; }
  .faq-row { grid-template-columns: 1fr; gap: 4px; }
}
