body {
  font-family: "Comic Sans MS", Comic Sans, Tahoma, sans-serif;
  background-color: #f3f0ff;
  margin: 0;
  padding: 0;
}

img {
  border: none;
  outline: none;
}

.window-content {
  padding: 8px 10px;
}

.window-content p {
  font-size: 13px;
}

.window-content strong {
  font-size: 13px;
}

.window-content a {
  color: #6a7cff;
  background-color: #ffff99;
  font-weight: bold;
  text-decoration: none;
}

.window-content a:hover {
  color: #ff86c8;
}

.window-content {
  text-align: center;
}

/* Desktop container */
.desktop {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

/* Window styling */
.window {
  width: 300px;
  min-height: 350px;
  background-color: #f8f8f8;
  border: 2px solid #d6d6d6;
  border-radius: 6px;
  box-shadow: 3px 3px 0 #cfcfcf;
}

/* Title bar */
.title-bar {
  background: linear-gradient(to right, #ffb7d5, #ffd6a5, #fdffb6, #caffbf, #9bf6ff, #a0c4ff);
  padding: 6px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px 4px 0 0;
  text-align: center;
}

/* Window content */
.window-content {
  padding: 10px;
}

/* Images inside windows */
.window-content img {
  max-width: 100%;
  height: auto;
  margin-top: 10px;
  border: 0px solid #d6d6d6;
  border-radius: 4px;
}

/* Optional: make Welcome window wider */
#welcome-window {
  width: 620px;
  min-height: 150px;
  margin-bottom: 20px; /* space between welcome and petz windows */
  text-align: center;
}

/* Optional: make text a little bigger for welcome */
#welcome-window .window-content p {
  font-size: 13px;
  line-height: 1.4;
}

/* Center the welcome window on its own row */
.welcome-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

/* Title bar layout */
.title-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Fake window controls */
.fake-controls {
  display: flex;
  gap: 4px;
}

.fake-btn {
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  font-size: 12px;
  background-color: #ffffff;
  border: 1px solid #999;
  border-radius: 3px;
  color: #333;
  cursor: default;
}


.fake-btn:hover {
  background-color: #ffb7d5;
    box-shadow: inset 1px 1px 0 #aaa;
}

.crew-footer {
  width: 100%;
  margin-top: 30px;
  text-align: center;
}

.crew-footer img {
  max-width: 80%;
  height: auto;
}
