html, body {
    margin: 0; padding: 0;
    width: 100vw; height: 100vh;
    overflow: hidden;
    font-family: 'MS Sans Serif', Arial, sans-serif;
    background: var(--theme-color, #c0c0c0);
    color: var(--text-color, #111);
}
.bio-background {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none; /* So you can click "through" it */
    filter: none;
}

.bio-background video,
video.bio-background {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    object-fit: cover;
    pointer-events: none;
    background: #000;
    filter: none;
}
.desktop-icons {
    position: absolute;
    left: 26px; top: 36px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.desktop-shortcut {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    user-select: none;
    width: 68px;
    margin-bottom: 6px;
}
.desktop-shortcut .icon-img {
    width: 52px !important;
    height: 52px !important;
    margin-bottom: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.desktop-shortcut .icon-img svg {
    width: 52px !important;
    height: 52px !important;
    color: var(--accent-color, #fff);
    display: block;
    filter: drop-shadow(0 0 8px var(--accent-color, #fff8));
}
.shortcut-label {
    font-size: 12px;
    color: var(--text-color, #fff);
    text-align: center;
    text-shadow: 1px 1px 0 #111, 0 0 2px #000;
    word-break: break-word;
    white-space: pre-line;
    margin-top: 2px;
}

.window95 {
    background: var(--window-color, #fff) !important;
    border: 2px solid #222;
    border-radius: 4px;
    box-shadow: 4px 5px 0 #333;
    min-width: 260px;
    max-width: 300px;
    padding: 0;
    font-family: 'MS Sans Serif', Arial, sans-serif;
    z-index: 20;
    position: absolute;
}
.window95-titlebar {
    background: var(--accent-color, #FF8181) !important;
    color: #fff !important;
    font-weight: bold;
    font-size: 15px;
    padding: 6px 8px 4px 8px;
    border-bottom: 2px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    letter-spacing: 0;
}
.window95-titlebar .window95-close {
    color: #a00;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}
.window95-content {
    padding: 18px 16px 14px 16px;
}
.profile-card {
    width: 230px;
    margin: 0 auto;
    text-align: center;
}
.profile-card .pfp {
    border-radius: 100%;
    border: 5px solid var(--accent-color, #fff);
    width: 90px;
    height: 90px;
    object-fit: cover;
    margin: 12px auto 13px auto;
    display: block;
}
.profile-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 7px;
    color: var(--text-color, #fff);
}
.profile-bio {
    font-size: 13px;
    color: var(--text-color, #fff);
    background: #181b20;
    border-radius: 3px;
    padding: 7px 10px;
    margin: 8px 0;
    font-weight: 500;
}
.win95-link-btn {
    display: block;
    background: var(--button-color, #dedede);
    border: 2px outset #888;
    color: var(--text-color, #fff);
    font-family: 'MS Sans Serif', Arial, sans-serif;
    font-size: 13px;
    padding: 5px 0;
    margin: 5px 0 0 0;
    width: 100%;
    text-align: center;
    border-radius: 2px;
    text-decoration: none;
    box-shadow: 1px 1.5px 0 #b4b4b4;
    transition: background 0.13s;
}
.win95-link-btn:hover {
    background: var(--accent-color, #c0c0c0);
    color: #fff;
    border: 2px inset #444;
}

.windows95-footer {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--theme-color, #c0c0c0);
  border-top: 2px solid #222;
  z-index: 1000;
  height: 36px;
  display: flex;
  align-items: flex-end;
}

.win95-start-bar {
  display: flex;
  align-items: flex-end;
  height: 100%;
  position: relative;
  background: transparent !important;
  z-index: 2;
}

.win95-start-btn {
  background:var(--theme-color, #FF8181) !important;
  border: 2px outset #aaa;
  padding: 4px 28px 4px 18px;
  font-weight: bold;
  font-family: 'MS Sans Serif', Arial, sans-serif;
  font-size: 17px;
  margin-left: 3px;
  margin-bottom: 2px;
  cursor: pointer;
  position: relative;
  z-index: 3;
  color: var(--accent-color, #FF8181) !important;
}
.win95-start-btn:focus {
  outline: 2px solid #666;
}

.win95-task-list {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: 12px;
  color: var(--text-color, #fff);
  font-size: 16px;
  font-family: inherit;
}

.win95-start-menu {
  display: none;
  position: absolute;
  left: 0;
  bottom: 36px;
  min-width: 175px;
  background: #c0c0c0;
  border: 2px solid #222;
  box-shadow: 4px 4px 0 #333;
  font-family: 'MS Sans Serif', Arial, sans-serif;
  z-index: 99;
  padding: 3px 0;
}
.win95-start-menu.active { display: block; }
.win95-start-menu ul { list-style: none; margin: 0; padding: 0; }
.win95-start-menu li {
  padding: 8px 20px;
  font-size: 16px;
  color: #222;
  cursor: pointer;
  border-bottom: 1px solid #b3b3b3;
  background: transparent;
  user-select: none;
  transition: background 0.12s;
}
.win95-start-menu li:last-child { border-bottom: none; }
.win95-start-menu li:hover {
  background: #999;
  color: #fff;
}

.typewriter {
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid var(--text-color, #fff);
  animation: typing 2.3s steps(40, end), blink-caret 0.75s step-end infinite;
}
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}
@keyframes blink-caret {
  0%,100% { border-color: transparent }
  50% { border-color: var(--text-color, #fff); }
}

