/* GENERAL RESET */
body {
  margin: 0;
  padding: 0;
  background: #ffb7d5;
  font-family: "Tahoma", "Verdana", sans-serif;
}

/* DESKTOP */
#desktop {
  width: 100vw;
  height: 100vh;
  background: linear-gradient(
    135deg,
    #ffc0e1,
    #ff9ecb
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BROWSER WINDOW */
#browser-window {
  width: 800px;
  height: 520px;
  background: #ffe6f2;
  border: 3px solid #ff69b4;
  box-shadow: 6px 6px 0px #cc4f8b;
  display: flex;
  flex-direction: column;
}

/* TITLE BAR */
#title-bar {
  background: linear-gradient(to right, #ff69b4, #ffb6d9);
  color: white;
  padding: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.window-title {
  font-weight: bold;
}

.window-buttons button {
  background: #ffd1e8;
  border: 1px solid #ff69b4;
  margin-left: 4px;
  cursor: pointer;
}

/* TOOLBAR */
#toolbar {
  background: #ffd1e8;
  padding: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

#toolbar button {
  background: #ffe6f2;
  border: 1px solid #ff69b4;
  cursor: pointer;
}

#address-bar {
  flex-grow: 1;
  border: 1px inset #ff69b4;
  padding: 4px;
  background: #fff0f7;
}

/* CONTENT */
#content {
  flex-grow: 1;
  padding: 12px;
  background: #fff0f7;
  overflow-y: auto;
  border-top: 2px solid #ff69b4;
}

/* PAGES */
.page {
  display: block;
}

.hidden {
  display: none;
}

.subtitle {
  font-style: italic;
  color: #cc4f8b;
}

/* LINKS */
.link-list {
  list-style: none;
  padding: 0;
}

.link-list li {
  margin: 6px 0;
}

a {
  color: #ff1493;
  text-decoration: underline;
  cursor: pointer;
}

/* SPECIAL STYLES */
.pink {
  color: #ff1493;
  font-weight: bold;
}

.pink-box {
  background: #ffd1e8;
  border: 2px dashed #ff69b4;
  padding: 8px;
  margin: 10px 0;
}

.log-box {
  background: #fff;
  border: 2px inset #ff69b4;
  padding: 10px;
  font-family: "Courier New", monospace;
}

.glitch {
  color: #ff1493;
  letter-spacing: 2px;
  animation: flicker 1.2s infinite;
}

@keyframes flicker {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}

input[type="password"] {
  padding: 6px;
  border: 2px inset #ff69b4;
  background: #fff0f7;
  margin-top: 6px;
  width: 220px;
}

#password-feedback {
  margin-top: 8px;
  font-style: italic;
  color: #cc4f8b;
}

