/* ===== Variables ===== */
:root {
  --win-bg: #008080;
  --win-face: #16161d;
  --win-light: #3F3F52;
  --win-shadow: #808080;
  --win-dark: #404040;
  --win-blue: #c49ea0;
}

/* ===== Body ===== */
body {
  margin: 0;
  font-family: "Tahoma", "MS Sans Serif", sans-serif;
  /*background-color: var(--win-bg);*/
  background-image: url(../images/site/theme/bg.gif);
  background-repeat: repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* ===== Corner Clickable Image ===== */
.corner-badge {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 999;
}

.corner-badge img {
  width: 100px;
  height: auto;
  display: block;
 /* border-top: 2px solid var(--win-light);
  border-left: 2px solid var(--win-light);
  border-right: 2px solid var(--win-dark);
  border-bottom: 2px solid var(--win-dark);
  background: var(--win-face); */
}

/* ===== Desktop Layout ===== */
.desktop {
  display: flex;
  gap: 12px;
  width: 1000px;
  height: 700px;
  color: #dcd7ba;
}

.panel {
  background: var(--win-face);
  display: flex;
  flex-direction: column;
  box-shadow:
    inset -2px -2px var(--win-dark),
    inset 2px 2px var(--win-light);
  overflow: hidden;
}

.main-content { flex: 1; }
.nav { width: 200px; }
.profile { width: 260px; }

.title-bar {
  background: var(--win-blue);
  color: white;
  padding: 6px 8px;
  font-weight: bold;
  font-size: 14px;
}

.content {
  padding: 12px;
  font-size: 14px;
  overflow-y: auto;
  flex: 1;
}

/* ===== Profile Styling ===== */
.avatar-box {
  background: white;
  padding: 6px;
  box-shadow:
    inset -2px -2px var(--win-light),
    inset 2px 2px var(--win-shadow);
  margin-bottom: 10px;
}

.avatar-box img {
  width: 100%;
  display: block;
}

.username {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 4px;
}

.status {
  display: inline-block;
  background: #aa0000; /* offline red */
  color: white;
  padding: 2px 6px;
  font-size: 12px;
  margin-bottom: 10px;
}

.info-section { margin-bottom: 15px; }
.info-section p { margin: 4px 0; }

/* ===== Win98 Blocks ===== */
.win-block {
  background: var(--win-face);
  border-top: 2px solid var(--win-light);
  border-left: 2px solid var(--win-light);
  border-right: 2px solid var(--win-dark);
  border-bottom: 2px solid var(--win-dark);
  padding: 6px;
  margin-bottom: 6px;
  font-weight: bold;
  text-align: center;
}

/* ===== Donation Address Boxes (Single Line + Scroll) ===== */
.address-box {
  background: #3F3F52;
  padding: 6px;
  font-size: 12px;
  white-space: nowrap;       /* Keep content in one line */
  overflow-x: auto;          /* Horizontal scroll if needed */
  overflow-y: hidden;        /* Hide vertical scroll */
  box-shadow: inset -2px -2px var(--win-light),
              inset 2px 2px var(--win-shadow);
  margin-bottom: 10px;

  /* Hide scrollbar for all browsers */
  scrollbar-width: none;     /* Firefox */
  -ms-overflow-style: none;  /* IE 10+ */
}

.address-box::-webkit-scrollbar {
  display: none;             /* Chrome, Safari, Opera */
}

/* ===== Nav Buttons ===== */
button {
  background: var(--win-face);
  border-top: 2px solid var(--win-light);
  border-left: 2px solid var(--win-light);
  border-right: 2px solid var(--win-dark);
  border-bottom: 2px solid var(--win-dark);
  padding: 6px;
  margin-bottom: 6px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: inherit;
  color: #dcd7ba;
}


button:active {
  border-top: 2px solid var(--win-dark);
  border-left: 2px solid var(--win-dark);
  border-right: 2px solid var(--win-light);
  border-bottom: 2px solid var(--win-light);
}

/* ===== Image Links Below Nav Buttons ===== */
.nav-image {
  display: block;
  border-top: 2px solid var(--win-light);
  border-left: 2px solid var(--win-light);
  border-right: 2px solid var(--win-dark);
  border-bottom: 2px solid var(--win-dark);
  background: var(--win-face);
  margin-bottom: 6px;
  text-align: center;
  overflow: hidden;
  text-decoration: none;
}

.nav-image img {
  width: 100%;
  height: auto;
  display: block;
}

.nav-image:active {
  border-top: 2px solid var(--win-dark);
  border-left: 2px solid var(--win-dark);
  border-right: 2px solid var(--win-light);
  border-bottom: 2px solid var(--win-light);
}


