* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
  cursor: default;
}

body, html {
  height: 100%;
  background: linear-gradient(135deg, #4b0082, #1e1e2f);
  color: white;
  overflow: hidden;
}

#desktop {
  height: 100%;
  width: 100%;
  position: relative;
}

#taskbar {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

#dock {
  display: flex;
  gap: 15px;
}

.dock-icon {
  padding: 6px 12px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.dock-icon:hover {
  transform: scale(1.1);
  background: rgba(255,255,255,0.3);
}

#taskbar-clock {
  font-weight: bold;
  font-size: 14px;
}

#window-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50px;
  overflow: visible;
}

.app-window {
  position: absolute;
  top: 100px;
  left: 100px;
  width: 500px;
  height: 400px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
}

.window-titlebar {
  height: 32px;
  background: #1e1e2f;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  cursor: move;
  font-size: 14px;
}

.window-controls button {
  background: transparent;
  color: white;
  border: none;
  font-size: 18px;
  margin-left: 5px;
  cursor: pointer;
}

.window-frame {
  flex: 1;
  border: none;
  width: 100%;
}

