body {
  margin: 0;
  font-family: "Verdana", sans-serif;
  color: #4b3f36;
  overflow-x: hidden;

  /* Pinterest background */
  background-image: url("https://i.pinimg.com/736x/f9/9a/72/f99a722715539e5bfce41d3d8c7495d7.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* Soft overlay so background is not overwhelming */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255, 248, 240, 0.78);
  pointer-events: none;
  z-index: -1;
}

header {
  text-align: center;
  padding: 20px;
}

h1 {
  font-family: "Courier New", monospace;
  letter-spacing: 3px;
}

.desktop {
  position: relative;
  width: 100%;
  height: 80vh;
}

.window {
  width: 320px;
  background: #fffaf4;
  border: 2px solid #d8c3a5;
  box-shadow: 4px 4px 0 #d8c3a5;
  position: absolute;
  cursor: grab;
  transition: transform 0.2s;
}

.window:hover {
  transform: scale(1.02);
}

.titlebar {
  background: #e9d8c3;
  padding: 6px;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  cursor: move;
}

.buttons span {
  margin-left: 8px;
  cursor: pointer;
}

.content {
  padding: 15px;
  font-size: 14px;
}

button {
  margin-top: 10px;
  padding: 5px 10px;
  border: 1px solid #aaa;
  background: white;
  cursor: pointer;
}

button:hover {
  background: #eee;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 12px;
}

/* Floating butterfly */
.floating-butterfly {
  position: fixed;
  top: 20%;
  left: 10%;
  font-size: 24px;
  animation: float 6s infinite ease-in-out;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* Dark mode */
.dark {
  color: #eee;
}

.dark::before {
  background: rgba(20,20,20,0.85);
}

.dark .window {
  background: #2a2a2a;
  border-color: #444;
  box-shadow: 4px 4px 0 #444;
}

.dark .titlebar {
  background: #333;
}