* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: sans-serif;
  background: url('bg-kekeos.png') no-repeat center center fixed;
  background-size: cover;
  color: white;
}

#desktop {
  height: 100vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
}

/* Barre du menu */
#top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 32px;
  background-color: rgba(25, 25, 25, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
  z-index: 999;
  font-size: 14px;
  backdrop-filter: blur(5px);
}

.top-left, .top-center, .top-right {
  flex: 1;
  text-align: center;
}

.top-left {
  text-align: left;
}
.top-right {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.status-icons span {
  font-size: 16px;
  margin-left: 6px;
  cursor: default;
}

#windows-container {
  position: absolute;
  top: 32px;
  bottom: 60px;
  left: 0;
  right: 0;
}

/* Dock */
#bottom-dock {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(40, 40, 40, 0.85);
  padding: 8px 12px;
  border-radius: 16px;
  display: flex;
  gap: 20px;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.dock-icon {
  font-size: 30px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.dock-icon:hover {
  transform: scale(1.3);
}

/* Fenêtres */
.window {
  position: absolute;
  top: 100px;
  left: 150px;
  width: 300px;
  background: #1e1e1e;
  color: #fff;
  border: 1px solid #555;
  border-radius: 6px;
  overflow: hidden;
  z-index: 100;
}

.title-bar {
  background: #333;
  padding: 5px 10px;
  cursor: move;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

.window-content {
  padding: 15px;
}
