.xp-window{
  height:auto;

  border-radius:10px 10px 8px 8px;
  overflow:hidden;

  background:#ece9d8;

  border:1px solid #0831d9;

  box-shadow:
    0 0 0 1px #7aa7ff,
    0 12px 30px rgba(0,0,0,0.35);
}

.xp-titlebar{
  height:34px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:0 6px 0 10px;

  color:white;
  font-family:Tahoma,sans-serif;
  font-size:14px;
  font-weight:bold;

  background:
    linear-gradient(
      to bottom,
      #6aa9ff 0%,
      #3c7df0 45%,
      #0b57d0 50%,
      #245edb 100%
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    inset 0 -1px 0 rgba(0,0,0,0.2);
}

.xp-buttons{
  display:flex;
  gap:4px;
}

.xp-btn{
  width:22px;
  height:20px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:12px;
  font-weight:bold;

  color:#003;

  border-radius:4px;

  background:
    linear-gradient(
      to bottom,
      #ffffff 0%,
      #d7e7ff 45%,
      #9ec2ff 100%
    );

  border:1px solid #245edb;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85);
}

.xp-btn.close{
  background:
    linear-gradient(
      to bottom,
      #ffb3a7 0%,
      #ff6b4d 45%,
      #d92d11 100%
    );

  color:white;
  border-color:#9e1a00;
}

.xp-content{
  padding:0;

  background:
    linear-gradient(
      to bottom,
      #ffffff 0%,
      #f4f1e6 100%
    );
}

#Game{
  display:block;
  border:none;
  background:black;
}