/* ==========================================================
   IE6.CSS — fake Microsoft Internet Explorer 6.0 window chrome
   Everything inside .ie-window pretends to be an IE6 browser.
   ========================================================== */

.ie-window {
  max-width: none;
  width: 100%;
  margin: 0;
  min-height: 100vh;
  background: #c0c0c0;
  border: none;
  border-bottom: 2px solid #000;
  box-shadow: inset 1px 1px 0 #dfdfdf;
  font-family: "Tahoma", "MS Sans Serif", Verdana, sans-serif;
  font-size: 12px;
}

/* ---------- title bar ---------- */
.ie-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 4px;
  color: #fff;
  font-weight: bold;
  background: linear-gradient(
    to right,
    #0a246a 0%,
    #3a6ea5 40%,
    #a6caf0 100%
  );
}
.ie-titlebar .ie-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  text-shadow: 1px 1px 0 #000;
}
.ie-titlebar .ie-title::before {
  content: "e";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #fff;
  color: #00f;
  text-align: center;
  font-weight: 900;
  font-style: italic;
  line-height: 14px;
  border: 1px solid #000;
  border-radius: 50%;
}
.ie-controls {
  display: flex;
  gap: 2px;
}
.ie-controls button {
  width: 22px;
  height: 18px;
  background: #c0c0c0;
  border: 1px solid #fff;
  border-right-color: #000;
  border-bottom-color: #000;
  font-weight: bold;
  font-family: "MS Sans Serif", sans-serif;
  cursor: pointer;
}
.ie-controls button:active { border-style: inset; }

/* ---------- menu bar ---------- */
.ie-menubar {
  display: flex;
  gap: 10px;
  padding: 2px 6px;
  background: #c0c0c0;
  border-bottom: 1px solid #808080;
}
.ie-menubar span {
  padding: 1px 4px;
  cursor: default;
}
.ie-menubar span:first-letter { text-decoration: underline; }
.ie-menubar span:hover { background: #000080; color: #fff; }

/* ---------- toolbar + address bar ---------- */
.ie-toolbar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px 6px;
  background: #d4d0c8;
  border-bottom: 1px solid #808080;
}
.ie-toolbar .ie-navbtn {
  width: 24px;
  height: 22px;
  background: #c0c0c0;
  border: 1px solid #fff;
  border-right-color: #404040;
  border-bottom-color: #404040;
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}
.ie-toolbar .ie-navbtn:active { border-style: inset; }
.ie-toolbar .ie-addresslabel {
  margin-left: 8px;
  font-size: 11px;
}
.ie-toolbar .ie-address {
  flex: 1;
  min-width: 0;
  height: 20px;
  padding: 2px 6px;
  background: #fff;
  border: 1px solid #404040;
  border-right-color: #fff;
  border-bottom-color: #fff;
  box-shadow: inset 1px 1px 0 #808080;
  font-family: "Tahoma", sans-serif;
  font-size: 11px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ie-toolbar .ie-go {
  padding: 2px 8px;
  background: #c0c0c0;
  border: 1px solid #fff;
  border-right-color: #404040;
  border-bottom-color: #404040;
  font-weight: bold;
  cursor: pointer;
}

/* ---------- content area ---------- */
.ie-content {
  background: #fff;
  padding: 0;
  min-height: 600px;
  overflow-x: hidden;
}

/* ---------- status bar ---------- */
.ie-statusbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 6px;
  background: #c0c0c0;
  border-top: 1px solid #808080;
  font-size: 11px;
}
.ie-statusbar .ie-status-cell {
  padding: 1px 6px;
  border: 1px inset #808080;
  background: #c0c0c0;
}
.ie-statusbar .ie-status-cell.grow { flex: 1; }
.ie-statusbar .ie-internet {
  display: flex;
  align-items: center;
  gap: 3px;
}
.ie-statusbar .ie-internet::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle at 30% 30%, #6cf, #039);
  border-radius: 50%;
}

/* ---------- small IE-style helper "windows" (tier list, DMs) ---------- */
.mini-window {
  border: 2px solid #000;
  background: #c0c0c0;
  box-shadow: 2px 2px 0 #000;
  margin: 22px 8px;
  font-family: "Tahoma", "MS Sans Serif", sans-serif;
  font-size: 12px;
}
.mini-window .mini-title {
  display: flex;
  justify-content: space-between;
  padding: 2px 6px;
  color: #fff;
  font-weight: bold;
  background: linear-gradient(to right, #0a246a, #3a6ea5);
}
.mini-window .mini-title .mini-ctrls { letter-spacing: 2px; }
.mini-window .mini-menu {
  padding: 2px 6px;
  background: #c0c0c0;
  border-bottom: 1px solid #808080;
  font-size: 11px;
}
.mini-window .mini-body {
  padding: 10px;
  background: #fff;
}
