* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  user-select: none;
}

body {
  background: url('https://images.unsplash.com/photo-1506703719100-a0f3a48c0f86?q=80&w=2070&auto=format&fit=crop') no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  overflow: hidden;
}

/* Top Status Bar */
#top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 16px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  color: #ffffff;
  font-size: 13px;
  height: 28px;
}

.left-menu span {
  margin-right: 15px;
  cursor: pointer;
}

.app-title {
  font-weight: bold;
}

/* Wallpaper Title */
#desktop {
  height: calc(100vh - 100px);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wallpaper-title {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.wallpaper-title h1 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 2px;
}

.wallpaper-title p {
  font-size: 16px;
  margin-top: 8px;
  opacity: 0.8;
}

/* Windows Styling */
.window {
  position: absolute;
  width: 380px;
  background: rgba(20, 20, 25, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  z-index: 20;
  overflow: hidden;
}

.window.hidden {
  display: none;
}

.window-header {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: move;
  position: relative;
}

.mac-controls {
  display: flex;
  gap: 8px;
}

.mac-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
}

.mac-btn.close { background-color: #ff5f56; }
.mac-btn.minimize { background-color: #ffbd2e; }
.mac-btn.maximize { background-color: #27c93f; }

.window-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 500;
}

.window-body {
  padding: 16px;
  height: 200px;
  color: #e0e0e0;
  font-size: 14px;
  overflow-y: auto;
}

/* Terminal & Notes Inputs */
.input-line {
  display: flex;
  margin-top: 10px;
}

.prompt {
  color: #27c93f;
  margin-right: 8px;
  font-family: monospace;
}

#terminal-input, #log-notes {
  background: transparent;
  border: none;
  color: #ffffff;
  outline: none;
  width: 100%;
  font-family: monospace;
}

#log-notes {
  height: 100%;
  resize: none;
  font-family: inherit;
}

.highlight { color: #ffbd2e; }
.accent { color: #27c93f; font-weight: bold; }

/* Bottom Dock */
#dock-container {
  position: fixed;
  bottom: 15px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 100;
}

#dock {
  display: flex;
  gap: 12px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.dock-item {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.2s;
}

.dock-item:hover {
  transform: translateY(-8px) scale(1.15);
  background: rgba(255, 255, 255, 0.25);
}




