/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: url('assets/longhorn-wallpaper.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
  overflow: hidden;
}

/* TASKBAR */
.taskbar {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 42px;
  background: linear-gradient(to top, rgba(0, 30, 60, 0.95), rgba(0, 60, 120, 0.75));
  backdrop-filter: blur(10px);
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  padding: 0 15px;
  justify-content: space-between;
}

.start-button {
  background: linear-gradient(to top, #003399, #3399ff);
  color: white;
  padding: 6px 18px;
  border-radius: 6px;
  font-weight: bold;
  border: 1px solid #0a4fc4;
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.2);
  cursor: pointer;
  text-shadow: 0 1px 2px #000;
}

.taskbar-apps {
  display: flex;
  gap: 10px;
}

.app {
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 12px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.05);
  color: white;
}

.tray .time {
  font-size: 13px;
  color: #e0e0e0;
  text-shadow: 0 0 2px #000;
}

/* SIDEBAR */
.sidebar {
  position: fixed;
  right: 0;
  top: 0;
  width: 260px;
  height: 100vh;
  background: rgba(0, 50, 90, 0.25);
  backdrop-filter: blur(12px);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: -2px 0 6px rgba(0, 0, 0, 0.4);
  padding: 15px;
  color: white;
}

/* SIDEBAR CONTENT */
.user-panel {
  text-align: center;
  margin-bottom: 25px;
}

.avatar {
  width: 70px;
  height: 70px;
  background: url('assets/avatar.png') center/cover;
  border-radius: 50%;
  margin: 0 auto;
  border: 2px solid #ccc;
}

.search-box input {
  width: 100%;
  padding: 8px 10px;
  border: none;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  margin-bottom: 20px;
}

.media-controls {
  display: flex;
  justify-content: space-around;
}

.media-controls button {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.media-controls button:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* MAIN WINDOW */
.main-window {
  position: absolute;
  top: 60px;
  left: 60px;
  width: 620px;
  height: 440px;
  background: rgba(240, 248, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.title-bar {
  background: linear-gradient(to right, #3b6aa0, #2f4c73);
  padding: 12px 16px;
  font-weight: bold;
  color: white;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  text-shadow: 0 1px 2px #000;
}

.window-body {
  padding: 20px;
  overflow-y: auto;
  height: calc(100% - 45px);
}
