/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* PAGE */
body {
  background: black;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Segoe UI", "MS Sans Serif", sans-serif;
}

/* MONITOR */
.monitor {
  width: 1100px;
  height: 650px;
  background: #d6d6d6;
  padding: 28px;
  border-radius: 30px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.45);
}

/* DESKTOP */
.desktop {
  width: 100%;
  height: 100%;
  background: url("assets/images/bliss.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}

/* EXPLORER WINDOW */
.explorer-window {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 980px;
  height: 560px;

  background: rgba(245, 248, 255, 0.92);


  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.7);

  box-shadow:
    0 0 0 1px rgba(0,0,0,0.15),
    0 20px 35px rgba(0,0,0,0.45);

  display: flex;
  flex-direction: column;
}


/* TOP BAR */
.window-topbar {
  height: 28px;
  background: linear-gradient(#eef3fa, #d9e1ef);
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 10px;
}

/* WINDOW BUTTONS */
.window-controls {
  display: flex;
  gap: 6px;
}

.btn {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
}

.btn.minimize { background: #f7d046; }
.btn.maximize { background: #6acb6a; }
.btn.close { background: #f36a6a; }

/* BROWSER BAR */
.browser-bar {
  height: 36px;
  background: #e8eef7;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  border-bottom: 1px solid #c9d3e1;
}

.nav-btn,
.tab-btn {
  background: #ffffff;
  border: 1px solid #bfcbe0;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 12px;
  cursor: default;
}

.address-bar {
  flex: 1;
  background: white;
  border: 1px solid #bfcbe0;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 13px;
  color: #444;
}

/* BODY */
.explorer-body {
  flex: 1;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  background: #ffffff;
}

.sidebar-left,
.sidebar-right {
  background: linear-gradient(#f8fbff, #e6edf8);
  border-right: 1px solid rgba(0,0,0,0.15);
  padding: 12px;
  font-size: 13px;
}


/* CENTER CONTENT */
.main-content {
  background: white;
  padding: 16px;
  font-size: 14px;
}

.nav-btn,
.tab-btn {
  background: linear-gradient(#ffffff, #e6eef9);
  border: 1px solid #9fb3d9;
  border-radius: 4px;
  padding: 4px 6px;
  font-size: 12px;
}

